@charset "UTF-8";
/* =====================
	LP - 冬の寒さ 夏の暑さ その最大の原因は「窓」でした。
 ======================= */

/** -------------------- 変数定義 -------------------- **/
:root {
  /* カラー定義 */
  --c_black: #000000;
  --c_white: #fff;
  --c_navy: #183772;
  --c_yellow: #fcee22;
  --c_btn-red: #ea4545;
  --c_btn-lime-green: #06c755;
  /* フォント定義 */
  --font_Noto-Sans-JP:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo,
    sans-serif;
  --font_Outfit:
    "Outfit", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --font_M-PLUS-Rounded-1c:
    "M PLUS Rounded 1c", "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  /* transition定義 */
  --anim: all 0.4s ease-out;
}

/** ------------------------ COMMON STYLE ------------------------ **/
html {
  font-size: 62.5%;
}

body.lp-page {
  font-family: var(--font_Noto-Sans-JP);
  font-optical-sizing: auto;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0;
  color: var(--c_navy);
}

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

a {
  color: var(--c_navy);
  text-decoration: none;
  transition: var(--anim);
}

a:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

.sp-only {
  display: none;
}

.wrapper {
  max-width: 1248px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2.4rem;
}

/** ------------------------ ヘッダー ------------------------ **/
.header {
  width: 100%;
  height: 110px;
  background-color: rgba(255, 255, 255, 0.85);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header .wrapper.header-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .site-logo-img {
  width: 100%;
  max-width: 104px;
}

.header .contact-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 2rem;
  margin-bottom: 1rem;
}

.header .company-address {
  font-style: normal;
}

.header .phone-number {
  font-size: 3.2rem;
  line-height: 1.3;
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.11em;
}

.header .phone-number::before {
  content: "";
  width: 0.64em;
  height: 0.83em;
  background-image: url(../img/lp-subsidy/common/icon-phone.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.header .contact-info-details {
  font-size: 0.9rem;
  text-align: right;
  color: #363636;
}

.header .cta-btn-container {
  column-gap: 1.8rem;
}

.header .btn-contact,
.header .btn-line {
  font-size: 1.3rem;
  width: 13.54em;
  aspect-ratio: 176 / 37;
  column-gap: 0.44em;
}

.header .btn-contact {
  box-shadow: 2px 3px 0 #ffc7c7;
}

.btn-contact::before {
  width: 1.38em;
  height: 1.27em;
}

.header .btn-line {
  box-shadow: 2px 3px 0 #8bffba;
}

.header .btn-line::before {
  width: 1.64em;
  height: 1.47em;
}

.header .site-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 4.3rem;
}

.header .site-nav-item a {
  display: block;
  font-size: 1.4rem;
  color: #363636;
}

.header .menu-btn {
  display: none;
  width: 22.01px;
  height: 12.3px;
  position: relative;
  cursor: pointer;
  z-index: 1000;
}

.header .menu-btn::before {
  content: "";
  display: block;
  width: 41px;
  aspect-ratio: 1;
  background-color: var(--c_navy);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header .menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--c_white);
  transition: var(--anim);
}

.header .menu-btn span:first-child {
  top: 0;
}

.header .menu-btn span:nth-child(2),
.header .menu-btn span:nth-child(3) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.header .menu-btn span:last-child {
  bottom: 0;
}

.header .menu-btn.is-open span:first-child,
.header .menu-btn.is-open span:last-child {
  opacity: 0;
}

.header .menu-btn.is-open span:nth-child(2) {
  transform: rotate(45deg);
}

.header .menu-btn.is-open span:nth-child(3) {
  transform: rotate(-45deg);
}

/** ------------------------ フッター ------------------------ **/
.footer {
  padding: 3.04rem 0 4.81rem;
}

.footer .wrapper.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  row-gap: 4rem;
}

.footer .company-info {
  display: flex;
  align-items: center;
  column-gap: 3rem;
}

.footer .site-logo-img {
  width: 100%;
  max-width: 122px;
}

.footer .company-address {
  font-style: normal;
  font-weight: normal;
}

.footer .company-address rt {
  font-size: 1.2rem;
}

.footer .btn-top-page-img {
  width: 100%;
  max-width: 410px;
}

/** ------------------------ CTA ------------------------ **/
.cta {
  background-color: rgba(24, 55, 114, 0.8);
  padding: 4.98rem 0 5.46rem;
}

.cta .cta-text {
  width: fit-content;
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
  color: var(--c_yellow);
  margin: 0 auto 3.72rem;
  position: relative;
}

.cta .cta-text::before,
.cta .cta-text::after {
  content: "";
  width: calc(1.52em * 2);
  height: calc(2.57em * 2);
  background-image: url(../img/lp-subsidy/common/cta-text-decoration.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -70%;
}

.cta .cta-text::before {
  left: -20%;
}

.cta .cta-text::after {
  transform: scaleX(-1);
  right: -20%;
}

.cta-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 3.5rem;
}

.btn {
  display: inline-block;
  position: relative;
  transition: var(--anim);
}

.btn-contact,
.btn-line {
  font-size: 2.5rem;
  color: var(--c_white);
  width: 15.8em;
  aspect-ratio: 395 / 91.43;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.8em;
}

.btn-contact {
  background-color: var(--c_btn-red);
  box-shadow: 5px 5px 0 #ffc7c7;
}

.btn-contact::before {
  content: "";
  width: 1.35em;
  height: 1.24em;
  background-image: url(../img/lp-subsidy/common/icon-mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.btn-line {
  background-color: var(--c_btn-lime-green);
  box-shadow: 5px 5px 0 #8bffba;
}

.btn-line::before {
  content: "";
  width: 1.6em;
  height: 1.43em;
  background-image: url(../img/lp-subsidy/common/icon-chat.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.btn-contact:hover,
.btn-line:hover {
  opacity: 1;
}

.btn-contact:active,
.btn-line:active {
  transform: translate(5px, 5px);
  box-shadow: none;
}

/** ------------------------ hero ------------------------ **/
.hero {
  width: 100%;
  height: 1166px;
  background-image: url(../img/lp-subsidy/hero/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
  display: flex;
  flex-direction: column;
}

.hero .hero-top {
  padding: 20.1rem 0 5.1rem;
  position: relative;
}

.hero .hero-top .wrapper {
  position: relative;
}

.hero .title-img {
  width: 100%;
  max-width: 581px;
  margin-left: 18.6rem;
  margin-bottom: 2.8rem;
}

.hero .hero-top-text {
  width: fit-content;
  font-size: 2rem;
  line-height: 1.45;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 1.5rem 3rem;
  border-radius: 10px;
  margin-left: 18.6rem;
}

.hero .hero-bottom {
  flex: 1;
  padding-top: 6.06rem;
  background-color: rgba(24, 55, 114, 0.8);
}

.hero .hero-bottom-text-wrapper {
  font-weight: bold;
  color: var(--c_yellow);
  margin-bottom: 2.97rem;
}

.hero .hero-bottom-text01 {
  width: fit-content;
  margin: 0 auto;
  font-size: 2.8rem;
  text-align: center;
  position: relative;
}

.hero .hero-bottom-text01::before,
.hero .hero-bottom-text01::after {
  content: "";
  width: calc(0.83em * 2);
  height: calc(1.45em * 2);
  background-image: url(../img/lp-subsidy/common/cta-text-decoration-v2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 27%;
}

.hero .hero-bottom-text01::before {
  left: -4%;
}

.hero .hero-bottom-text01::after {
  transform: scaleX(-1);
  right: -4%;
}

.hero .hero-bottom-text01 .fs32 {
  font-size: 3.2rem;
}

.hero .hero-bottom-text01 .fs34 {
  font-size: 3.4rem;
}

.hero .hero-bottom-text01 .fs42 {
  font-size: 4.2rem;
}

.hero .hero-bottom-text02 {
  width: fit-content;
  margin: 0 auto;
  font-size: 2.2rem;
}

.hero .woman-img {
  width: 100%;
  max-width: 222px;
  position: absolute;
  bottom: -5.1rem;
  left: 2.4rem;
  z-index: 10;
}

.hero .speech-bubble-img {
  width: 100%;
  max-width: 269px;
  position: absolute;
  right: 2.4rem;
  bottom: -10.1rem;
}

/** ------------------------ trouble ------------------------ **/
.trouble {
  margin-bottom: 6.7rem;
  border-radius: 100% 100% 0 0 / 130px 130px 0 0;
  margin-top: -100px;
  background-color: var(--c_white);
  padding-top: 4.66rem;
  position: relative;
}

.trouble .question-mark-img {
  width: 100%;
  max-width: 60px;
  position: absolute;
  top: -5.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.trouble .sec-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5rem;
}

.trouble .trouble-list {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 3.96rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 3.33rem;
}

.trouble .trouble-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  row-gap: 1.2rem;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
  border-top: 1px solid var(--c_navy);
  background-image: url(../img/lp-subsidy/trouble/bg-question-mark.svg);
  background-repeat: no-repeat;
  background-size: 30.01%;
  background-position: 15.93% 5rem;
  position: relative;
}

.trouble .trouble-item:first-child,
.trouble .trouble-item:nth-child(2) {
  border-top: none;
}

.trouble .trouble-item:nth-child(odd)::after {
  content: "";
  width: 1px;
  height: 90%;
  background-color: var(--c_navy);
  position: absolute;
  top: 50%;
  right: -1.67rem;
  transform: translateY(-50%);
}

.trouble .trouble-item-text {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.39em;
}

.trouble .trouble-item-text::before {
  content: "";
  width: 1.58em;
  height: 1.38em;
  background-image: url(../img/lp-subsidy/trouble/checkbox.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.trouble .trouble-img {
  width: 100%;
  margin: 0 auto;
}

.trouble .trouble01-img {
  max-width: 210px;
}

.trouble .trouble02-img {
  max-width: 228px;
}

.trouble .trouble03-img {
  max-width: 236.62px;
}

.trouble .trouble04-img {
  max-width: 221.45px;
}

.trouble .trouble05-img {
  max-width: 245.39px;
}

.trouble .trouble06-img {
  max-width: 239.93px;
}

.trouble .trouble07-img {
  max-width: 168.38px;
}

.trouble .trouble08-img {
  max-width: 210.5px;
}

.trouble .trouble-text-wrapper {
  width: 100%;
  max-width: 889.12px;
  aspect-ratio: 889.12 / 190;
  margin: 0 auto;
  background-image: url(../img/lp-subsidy/common/bg-speech-bubble.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.trouble .trouble-text {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  padding: 4.1rem 0 5.7rem;
}

.trouble .trouble-text span {
  font-size: 4.5rem;
}

.trouble .man-img {
  width: 100%;
  max-width: 160.08px;
  position: absolute;
  bottom: 0;
  right: -7.29rem;
}

/** ------------------------ then-now ------------------------ **/
.then-now .sec-title {
  font-size: 3.3rem;
  font-weight: normal;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2.49rem;
}

.then-now .sec-title span {
  padding: 0.05em 1.36em 0.15em 1.75em;
  border: 2px solid var(--c_navy);
  box-shadow: 5.2px 8.6px 0 var(--c_navy);
  background-color: var(--c_white);
  position: relative;
}

.then-now .sec-title span:first-child {
  transform: rotate(-4deg);
  z-index: 2;
}

.then-now .sec-title span:nth-child(2) {
  margin-left: 10.9rem;
  z-index: 1;
}

.then-now .then-now-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.then-now .then {
  flex: 0 0 44.75%;
  position: relative;
}

.then-now .then-title,
.then-now .now-title {
  width: fit-content;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  color: var(--c_white);
  background-color: var(--c_navy);
  padding: 0.11em 0.71em;
  border-radius: 70px;
  margin: 0 auto;
}

.then-now .thirty-year-old-img {
  width: 100%;
  margin-bottom: 2.7rem;
  position: relative;
}

.then-now .thirty-year-old-catchphrase-img {
  width: 100%;
  max-width: 394px;
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.then-now .now {
  flex: 0 0 45.47%;
  margin-top: -12%;
  position: relative;
}

.then-now .newly-built-img {
  width: 100%;
  margin-bottom: 2.7rem;
  position: relative;
}

.then-now .newly-built-catchphrase-img {
  width: 100%;
  max-width: 516px;
  position: absolute;
  bottom: -7%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.then-now .arrow-img {
  width: 100%;
  max-width: 150px;
  position: absolute;
}

.then-now .then .arrow-img {
  top: 70%;
  left: -15%;
}

.then-now .now .arrow-img {
  top: 78%;
  right: -15%;
  transform: scaleX(-1);
}

.then-now .temperature-img {
  width: 100%;
  max-width: 1065px;
  margin: 0 auto 5.5rem;
}

.then-now .then-now-text-wrapper {
  width: 100%;
  max-width: 889.12px;
  aspect-ratio: 889.12 / 190;
  margin: 0 auto;
  background-image: url(../img/lp-subsidy/common/bg-speech-bubble.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.then-now .then-now-text {
  width: fit-content;
  margin: 0 auto;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  padding: 4.1rem 0 5.7rem;
}

.then-now .then-now-text span {
  font-size: 4.5rem;
}

.then-now .woman-img {
  width: 100%;
  max-width: 200px;
  position: absolute;
  bottom: 0;
  right: -10.69rem;
}

/** ------------------------ window-renovation ------------------------ **/
.window-renovation {
  position: relative;
  padding: 47.53rem 0 4.7rem;
  overflow: hidden;
}

.window-renovation::before,
.window-renovation::after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.window-renovation::before {
  left: 0;
  background-color: rgba(245, 129, 53, 0.1);
}

.window-renovation::after {
  right: 0;
  background-color: rgba(58, 205, 155, 0.1);
}

.window-renovation .window-renovation-text-wrapper {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--c_white);
  padding-bottom: 9.57rem;
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.window-renovation .window-renovation-text01 {
  font-size: 2.6rem;
  padding: 0 0.5em 1.45em;
  margin-bottom: 0.21em;
  background-image: url(../img/lp-subsidy/window-renovation/text-decoration.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}

.window-renovation .window-renovation-text01 .fs21 {
  font-size: 2.1rem;
}

.window-renovation .window-renovation-text01 .orange {
  color: #f58134;
}

.window-renovation .window-renovation-text01 .blue {
  color: #598bd9;
}

.window-renovation .window-renovation-text02 {
  margin-bottom: 0.31em;
}

.window-renovation .window-renovation-text02 span {
  font-size: 3rem;
  background-color: var(--c_yellow);
  padding: 0 0.3em;
}

.window-renovation .window-renovation-text03 .kanji-uchimado-img {
  display: inline-block;
  width: 4.21em;
  vertical-align: bottom;
  position: relative;
}

.window-renovation .window-renovation-text03 .kanji-uchimado-img::before,
.window-renovation .window-renovation-text04 .kanji-sotomadokokan-img::before {
  content: "";
  width: 110%;
  height: 0.82em;
  background-color: #fcee22;
  position: absolute;
  bottom: -10%;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

.window-renovation .window-renovation-text04 {
  margin-bottom: 0.64em;
}

.window-renovation .window-renovation-text04 .kanji-sotomadokokan-img {
  display: inline-block;
  width: 7.3em;
  vertical-align: bottom;
  position: relative;
}

.window-renovation .window-renovation-container {
  display: flex;
  justify-content: space-between;
}

.window-renovation .inner-window,
.window-renovation .outer-window {
  flex: 0 0 43.08%;
  position: relative;
}

.window-renovation .inner-window-speech-bubble-img,
.window-renovation .outer-window-speech-bubble-img {
  width: 100%;
  position: absolute;
  bottom: 101%;
}

.window-renovation .inner-window-speech-bubble-img {
  max-width: 248px;
  left: 0;
}

.window-renovation .outer-window-speech-bubble-img {
  max-width: 238px;
  right: 0;
}

.window-renovation .window-renovation-container .kanji-uchimado-shadow-img {
  width: 100%;
  max-width: 184.87px;
  margin: 0 auto 2rem;
}

.window-renovation .window-renovation-container .kanji-uchimado-shadow-img img {
  width: 100%;
}

.window-renovation .window-renovation-container .kanji-sotomado-shadow-img {
  width: 100%;
  max-width: 189.63px;
  margin: 0 auto 2rem;
}

.window-renovation .window-renovation-container .kanji-sotomado-shadow-img img {
  width: 100%;
}

/** ------------------------ compare ------------------------ **/
.compare {
  padding: 6.24rem 0 4.98rem;
}

.compare .sec-title {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 3.12rem;
}

.compare .sec-title span:first-of-type {
  position: relative;
}

.compare .sec-title span:first-of-type::before {
  content: "";
  width: 110%;
  height: 0.84em;
  background-color: rgba(255, 255, 181, 0.68);
  position: absolute;
  bottom: -10%;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

.compare .sec-title span:nth-of-type(2) {
  color: var(--c_white);
  background-color: #f58134;
  padding: 0 0.3em;
  border-radius: 12px;
}

.compare .sec-title span:nth-of-type(3) {
  color: var(--c_white);
  background-color: #20bb92;
  padding: 0 0.3em;
  border-radius: 12px;
}

.compare .inner-window,
.compare .outer-window {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 5rem;
  border-radius: 10px;
}

.compare .inner-window {
  border: 2px solid #f58134;
  position: relative;
}

.compare .outer-window {
  border: 2px solid #11ce9b;
}

.compare .man-img,
.compare .woman-img {
  width: 100%;
  position: absolute;
  bottom: 99%;
  z-index: -1;
}

.compare .man-img {
  max-width: 173.63px;
  left: -2.38rem;
}

.compare .woman-img {
  max-width: 171.55px;
  right: -3.51rem;
}

.compare .inner-window-title,
.compare .outer-window-title {
  color: var(--c_white);
  display: flex;
  align-items: center;
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.compare .inner-window-title {
  background-color: #f58134;
  padding: 1.1rem 1.6rem 1.1rem 18.2rem;
}

.compare .outer-window-title {
  background-color: #11ce9b;
  padding: 1.1rem 1.6rem 1.1rem 18.6rem;
}

.compare .inner-window-title > span:first-of-type,
.compare .outer-window-title > span:first-of-type {
  font-size: 4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.compare .inner-window-title > span:first-of-type .kanji-uchimado-img {
  width: 100%;
  max-width: 177px;
  position: absolute;
  top: -2.5rem;
  left: 1.2rem;
}

.compare .inner-window-title > span:first-of-type .kanji-uchimado-img img {
  width: 100%;
}

.compare .inner-window-title > span:first-of-type span:nth-of-type(2) {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.compare .inner-window-title > span:nth-of-type(2),
.compare .outer-window-title > span:nth-of-type(2) {
  flex: 1;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}

.compare .outer-window-title > span:first-of-type .kanji-sotomado-img {
  width: 100%;
  max-width: 177px;
  position: absolute;
  top: -2.7rem;
  left: 1.5rem;
}

.compare .outer-window-title > span:first-of-type .kanji-sotomado-img img {
  width: 100%;
}

.compare .outer-window-title > span:first-of-type span:nth-of-type(2),
.compare .outer-window-title > span:first-of-type span:nth-of-type(3) {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.compare .inner-window-recommend,
.compare .outer-window-recommend {
  padding: 2.96rem 5rem 5.24rem;
}

.compare .inner-window-subtitle,
.compare .outer-window-subtitle {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

.compare .inner-window-list,
.compare .outer-window-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.compare .inner-window-item,
.compare .outer-window-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  row-gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
  position: relative;
}

.compare .inner-window-item:nth-child(n + 4) {
  border-top: 2px solid #fef3eb;
}

.compare .outer-window-item:nth-child(n + 4) {
  border-top: 2px solid #ebfaf5;
}

.compare .inner-window-item + .inner-window-item::before,
.compare .outer-window-item + .outer-window-item::before {
  content: "";
  width: 2px;
  height: 90%;
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
}

.compare .inner-window-item + .inner-window-item::before {
  background-color: #fef3eb;
}

.compare .outer-window-item + .outer-window-item::before {
  background-color: #ebfaf5;
}

.compare .inner-window-point-img,
.compare .outer-window-point-img {
  width: 100%;
  margin: 0 auto;
}

.compare .inner-window-point-img img,
.compare .outer-window-point-img img {
  width: 100%;
}

.compare .inner-window-point01-img {
  max-width: 115.88px;
}

.compare .inner-window-point02-img {
  max-width: 138.11px;
}

.compare .inner-window-point03-img {
  max-width: 103.91px;
}

.compare .inner-window-point04-img {
  max-width: 108.93px;
}

.compare .inner-window-point05-img {
  max-width: 57.69px;
}

.compare .inner-window-point06-img {
  max-width: 87.25px;
}

.compare .outer-window-point01-img {
  max-width: 136.96px;
}

.compare .outer-window-point02-img {
  max-width: 182.68px;
}

.compare .outer-window-point03-img {
  max-width: 106.59px;
}

.compare .outer-window-point04-img {
  max-width: 153.19px;
}

.compare .outer-window-point05-img {
  max-width: 102.43px;
}

.compare .outer-window-point06-img {
  max-width: 158.08px;
}

.compare .inner-window-catchphrase-img,
.compare .outer-window-catchphrase-img {
  width: 100%;
  max-width: 900px;
}

.compare .compare-text-wrapper {
  width: 100%;
  max-width: 627.34px;
  aspect-ratio: 627.34 / 165.66;
  margin: 0 auto;
  background-image: url(../img/lp-subsidy/compare/bg-speech-bubble.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 4.09rem;
  position: relative;
}

.compare .compare-text {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  padding: 4.18rem 0;
}

.compare .man02-img {
  width: 100%;
  max-width: 143.34px;
  position: absolute;
  bottom: -2.14rem;
  right: -6.28rem;
}

.compare .compare-text02 {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
}

.compare .compare-text02 .fs28 {
  font-size: 2.8rem;
}

.compare .compare-text02 .fs32 {
  font-size: 3.2rem;
}

.compare .compare-text02 .fs34 {
  font-size: 3.4rem;
}

.compare .compare-text02 .fs38 {
  font-size: 3.8rem;
}

.compare .compare-text02 .red {
  color: #d02b2b;
  position: relative;
}

.compare .compare-text02 .red::before {
  content: "";
  width: 110%;
  height: 0.51em;
  background-color: rgba(255, 255, 181, 0.68);
  position: absolute;
  bottom: -10%;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

/** ------------------------ difference ------------------------ **/
.difference {
  padding-top: 5.92rem;
}

.difference .sec-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2.5rem;
}

.difference .sec-title span {
  font-size: 1.8rem;
}

.difference .difference-table-wrapper {
  width: 100%;
  max-width: 1065px;
  margin: 0 auto 4rem;
}

.difference .difference-table {
  border-left: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
}

.difference .difference-table .tr {
  display: grid;
  grid-template-columns: 220px 1fr 1fr;
  text-align: center;
}

.difference .difference-table .thead {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--c_white);
}

.difference .difference-table .thead .tr .th {
  padding: 0.4em 0 0.54em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.difference .difference-table .thead .tr .th:first-child {
  background-color: #ada584;
  border-right: 1px solid #dbdbdb;
}

.difference .difference-table .thead .tr .th:nth-child(2) {
  background-color: #f58134;
}

.difference .difference-table .thead .tr .th:nth-child(3) {
  background-color: #11ce9b;
}

.difference .difference-table .tbody {
  font-size: 2rem;
  font-weight: bold;
}

.difference .difference-table .tbody .tr .td {
  padding: 0.5em 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.difference .difference-table .tbody .tr .td:first-child,
.difference .difference-table .tbody .tr .td:nth-child(2) {
  border-right: 1px solid #dbdbdb;
}

.difference .difference-table .tbody .tr:nth-child(odd) .td:first-child {
  background-color: #f0efe9;
}

.difference .difference-table .tbody .tr:nth-child(odd) .td:nth-child(2) {
  background-color: #fef3eb;
}

.difference .difference-table .tbody .tr:nth-child(odd) .td:nth-child(3) {
  background-color: rgba(17, 206, 155, 0.15);
}

.difference .difference-table .tbody .tr .td .red {
  color: #fc7474;
}

.difference .difference-table .tbody .tr .td .blue {
  color: #51a0fc;
}

.difference .arrow-img {
  width: 100%;
  max-width: 126px;
  margin: 0 auto;
}

.difference .arrow-img img {
  width: 100%;
}

/** ------------------------ subsidy-amount ------------------------ **/
.subsidy-amount {
  padding: 3rem 0 4.84rem;
}

.subsidy-amount .sec-title {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.2rem;
}

.subsidy-amount .subsidy-amount-inner {
  width: 100%;
  max-width: 1065px;
  margin: 0 auto;
}

.subsidy-amount .subsidy-amount-text {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.subsidy-amount .subsidy-amount-table {
  border-top: 1px solid #dbdbdb;
  border-left: 1px solid #dbdbdb;
}

.subsidy-amount
  .subsidy-amount-table-wrapper.subsidy-amount-table-inner-window-wrapper {
  margin-bottom: 3.41rem;
}

.subsidy-amount
  .subsidy-amount-table-wrapper.subsidy-amount-table-outer-window-wrapper {
  margin-bottom: 1.39rem;
}

.subsidy-amount .subsidy-amount-table .thead {
  font-size: 2.4rem;
  color: var(--c_white);
}

.subsidy-amount .subsidy-amount-table.subsidy-amount-table-inner-window .thead {
  background-color: #f58134;
}

.subsidy-amount .subsidy-amount-table.subsidy-amount-table-outer-window .thead {
  background-color: #11ce9b;
}

.subsidy-amount .subsidy-amount-table .tbody {
  font-size: 2.1rem;
}

.subsidy-amount .subsidy-amount-table .tr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.subsidy-amount .subsidy-amount-table .tr .th,
.subsidy-amount .subsidy-amount-table .tr .td {
  border-bottom: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
}

.subsidy-amount .subsidy-amount-table .tr .th {
  padding: 0.5em 0 0.75em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.subsidy-amount .subsidy-amount-table .tr .td {
  padding: 0.75em 0 0.73em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.subsidy-amount .subsidy-amount-note-list {
  font-size: 1.4rem;
  font-weight: normal;
}

.subsidy-amount .subsidy-amount-note-item {
  text-indent: -1em;
  padding-left: 1em;
}

/** ------------------------ subsidy-target ------------------------ **/
.subsidy-target {
  padding: 6rem 0 13.25rem;
  background-image: url(../img/lp-subsidy/subsidy-target/bg.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  margin-bottom: 5rem;
}

.subsidy-target .title-img {
  width: 100%;
  max-width: 827px;
  margin-bottom: 4.95rem;
}

.subsidy-target .main-text-img {
  width: 100%;
  max-width: 600px;
  position: relative;
}

.subsidy-target .people-img {
  width: 100%;
  max-width: 263.71px;
  position: absolute;
  bottom: -9.95rem;
  right: -14.29rem;
}

/** ------------------------ cta02 ------------------------ **/
.cta02 {
  padding: 4rem 0 5.6rem;
}

.cta02 .cta-text span {
  font-size: 2.6rem;
}

.cta02 .cta-text::before,
.cta02 .cta-text::after {
  content: "";
  width: calc(1.52em * 2);
  height: calc(3.06em * 2);
  background-image: url(../img/lp-subsidy/common/cta-text-decoration-v3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
}

.cta02 .cta-text::before {
  left: -9%;
}

.cta02 .cta-text::after {
  right: -9%;
}

/** ------------------------ reasons ------------------------ **/
.reasons {
  padding: 10.68rem 0 5.95rem;
}

.reasons .sec-title-wrapper {
  width: fit-content;
  margin: 0 auto 4.72rem;
  position: relative;
}

.reasons .sec-title {
  font-size: 3.2rem;
  font-weight: 600;
}

.reasons .sec-title::before {
  content: "";
  width: 110%;
  height: 0.71em;
  background-color: rgba(255, 255, 181, 0.68);
  position: absolute;
  bottom: -10%;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
}

.reasons .sec-title ruby rt {
  font-size: 1.1em;
}

.reasons .man-img {
  width: 100%;
  max-width: 199.8px;
  position: absolute;
  bottom: 0;
  right: -17.4rem;
}

.reasons .reasons-list {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 10.7rem;
}

.reasons .reasons-item {
  border: 1px solid var(--c_navy);
  border-radius: 10px;
  box-shadow: 10px 10px 0 var(--c_navy);
  padding: 7rem 5rem 5rem;
  position: relative;
}

.reasons .number {
  font-family: var(--font_M-PLUS-Rounded-1c);
  font-size: 6.4rem;
  font-weight: bold;
  color: var(--c_white);
  width: 2.06em;
  height: 1.8em;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-image: url(../img/lp-subsidy/reasons/bg-number.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -7.7rem;
  left: -5rem;
}

.reasons .reasons-item-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4rem;
}

.reasons .reasons-item-text-area {
  flex: 1;
}

.reasons .reasons-item-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.reasons .reasons-item-text span {
  color: #f58134;
}

.reasons .reasons-item-img {
  flex: 0 0 47.87%;
  aspect-ratio: 430 / 252;
}

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

/** ------------------------ works ------------------------ **/
.works {
  padding: 5.95rem 0 5rem;
}

.works .sec-title {
  font-size: 3.2rem;
  font-weight: 500;
  width: fit-content;
  margin: 0 auto 3rem;
  position: relative;
}

.works .sec-title::before {
  content: "";
  width: 1.13em;
  height: 1.28em;
  background-image: url(../img/lp-subsidy/common/title-decoration.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -0.81em;
  right: 100%;
}

.works .works-list {
  display: flex;
  flex-direction: column;
  row-gap: 10rem;
}

.works .works-item-header {
  background-color: var(--c_yellow);
  padding: 1.5rem 0;
  margin-bottom: 5rem;
}

.works .works-item-header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 2.4rem;
}

.works .works-item-title-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  column-gap: 2rem;
}

.works .case-icon {
  width: 100%;
  max-width: 90px;
}

.works .case-icon img {
  width: 100%;
}

.works .works-item-title > span:first-child {
  font-size: 2.2rem;
  line-height: 1.3;
  background-image: linear-gradient(
    to right,
    currentColor 2px,
    transparent 2px
  );
  background-size: 9px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

.works .works-item-title > span:first-child span {
  font-size: 3.2rem;
}

.works .works-item-title > span:nth-child(2) {
  display: block;
  font-size: 3rem;
  font-weight: bold;
}

.works .works-item-info-list {
  flex-shrink: 1;
  font-weight: normal;
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 0.5rem 4rem;
  align-items: center;
}

.works .works-item-info-list dt {
  position: relative;
}

.works .works-item-info-list dt::after {
  content: "";
  width: 1px;
  height: 1.17em;
  background-color: var(--c_navy);
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-50%);
}

.works .works-item-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 4.9rem;
}

.works .customer-voice {
  flex: 1;
  background-color: #f4f8ff;
  padding: 4rem 3rem;
  border-radius: 10px;
}

.works .customer-voice-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.works .customer-voice-text {
  color: #363636;
  margin-bottom: 2rem;
}

.works .case-people-img {
  position: relative;
  margin: 0 auto;
}

.works .case1-people-img {
  width: 100%;
  max-width: 271px;
}

.works .case2-people-img {
  width: 100%;
  max-width: 245px;
}

.works .case3-people-img {
  width: 100%;
  max-width: 231.02px;
}

.works .case-people-img figcaption {
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.works .case1-people-img figcaption {
  left: -5.7rem;
}

.works .case2-people-img figcaption {
  left: -6.45rem;
}

.works .case3-people-img figcaption {
  left: -7.85rem;
}

.works .before-after {
  flex: 0 0 50%;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.works .before-after-list {
  flex: 0 0 50%;
}

.works .before-after-item {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.works .before-img,
.works .after-img {
  flex: 0 0 46.67%;
  aspect-ratio: 280 / 333;
  position: relative;
}

.works .before-after-item .before-img,
.works .before-after-item .after-img {
  aspect-ratio: 280 / 270;
}

.works .before-img img,
.works .after-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works .before-after figcaption,
.works .before-after-item figcaption {
  font-size: 2rem;
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%);
}

.works .arrow-img {
  width: 100%;
  max-width: 66.33px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.works .arrow-img img {
  width: 100%;
}

.works .before-after-list {
  display: flex;
  flex-direction: column;
  row-gap: 6.7rem;
}

/** ------------------------ service-area ------------------------ **/
.service-area {
  padding: 5.6rem 0 4rem;
  background-color: #f4f8ff;
  border-radius: 10px;
}

.service-area .sec-title {
  font-size: 3.2rem;
  font-weight: 500;
  width: fit-content;
  margin: 0 auto 3rem;
  position: relative;
}

.service-area .sec-title::before {
  content: "";
  width: 1.13em;
  height: 1.28em;
  background-image: url(../img/lp-subsidy/common/title-decoration.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -0.81em;
  right: 100%;
}

.service-area .service-area-map-img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/** ------------------------ cta03 ------------------------ **/
.cta03 {
  padding: 4rem 0 5.6rem;
}

.cta03 .cta-text {
  font-size: 2.6rem;
}

.cta03 .cta-text::before,
.cta03 .cta-text::after {
  content: "";
  width: calc(1.35em * 2);
  height: calc(2.71em * 2);
  background-image: url(../img/lp-subsidy/common/cta-text-decoration-v3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
}

.cta03 .cta-text::before {
  left: -7%;
}

.cta03 .cta-text::after {
  right: -7%;
}

/** ------------------------ subsidy-process ------------------------ **/
.subsidy-process {
  padding: 5rem 0 7.01rem;
}

.subsidy-process .sec-title {
  font-size: 3.2rem;
  font-weight: 500;
  width: fit-content;
  margin: 0 auto 3rem;
  position: relative;
}

.subsidy-process .sec-title::before {
  content: "";
  width: 1.13em;
  height: 1.28em;
  background-image: url(../img/lp-subsidy/common/title-decoration.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -0.81em;
  right: 100%;
}

.subsidy-process .subsidy-process-list {
  width: 100%;
  max-width: 958.5px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 8.35rem;
}

.subsidy-process .subsidy-process-item {
  border: 1px solid var(--c_navy);
  border-radius: 10px;
  box-shadow: 10px 10px 0 var(--c_navy);
  padding: 2rem;
  display: flex;
  align-items: center;
  column-gap: 2.52rem;
  position: relative;
}

.subsidy-process .subsidy-process-item + .subsidy-process-item::before {
  content: "";
  width: 3.76rem;
  height: 1.67rem;
  background-image: url(../img/lp-subsidy/subsidy-process/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -4.67rem;
  left: 50%;
  transform: translateX(-50%);
}

.subsidy-process .step-number {
  flex: 0 0 6.73em;
  font-family: var(--font_M-PLUS-Rounded-1c);
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--c_white);
  width: 6.73em;
  height: 6.78em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../img/lp-subsidy/subsidy-process/bg-number.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.subsidy-process .step-number span:nth-child(2) {
  font-size: 3rem;
  line-height: 1.3;
}

.subsidy-process .subsidy-process-item-text-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.subsidy-process .subsidy-process-item-title {
  font-size: 2.8rem;
  line-height: 1.3;
}

/** ------------------------ cta04 ------------------------ **/
.cta04 {
  padding: 4rem 0 22rem;
}

.cta04 .cta-text {
  font-size: 2.6rem;
}

.cta04 .cta-text::before,
.cta04 .cta-text::after {
  content: "";
  width: calc(1.35em * 2);
  height: calc(2.71em * 2);
  background-image: url(../img/lp-subsidy/common/cta-text-decoration-v3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
}

.cta04 .cta-text::before {
  left: -18%;
}

.cta04 .cta-text::after {
  right: -18%;
}

/** ------------------------ qa ------------------------ **/
.qa {
  border-radius: 100% 100% 0 0 / 130px 130px 0 0;
  margin-top: -100px;
  background-color: var(--c_white);
  padding: 6.66rem 0 3rem;
  position: relative;
}

.qa .qa-img {
  width: 100%;
  max-width: 190px;
  position: absolute;
  top: -3.54rem;
  left: 50%;
  transform: translateX(-50%);
}

.qa .sec-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5rem;
}

.qa .qa-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.qa .qa-item {
  padding: 3rem;
  border: 1px solid #f58134;
  border-radius: 10px;
}

.qa .qa-question,
.qa .qa-answer {
  display: flex;
  align-items: flex-start;
  column-gap: 3.1rem;
}

.qa .qa-question .q,
.qa .qa-answer .a {
  flex: 0 0 1.91em;
  font-family: var(--font_Outfit);
  font-size: 2.3rem;
  font-weight: bold;
  color: var(--c_white);
  width: 1.91em;
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qa .qa-question .q {
  background-color: var(--c_navy);
  margin-bottom: 1.5rem;
}

.qa .qa-answer .a {
  background-color: #f58134;
}

.qa .qa-question > span:nth-child(2) {
  font-size: 2.2rem;
  font-weight: 600;
  padding-top: 0.1em;
}

.qa .qa-question > span:nth-child(2),
.qa .qa-answer > span:nth-child(2) {
  flex: 1;
}

.qa .qa-answer > span:nth-child(2) {
  padding-top: 0.3em;
}

/** ------------------------ cta05 ------------------------ **/
.cta05 {
  padding: 5.5rem 0 4.5rem;
}

.cta05 .cta-btn-container {
  margin-bottom: 3rem;
}

.cta05 .contact-info {
  line-height: 1.3;
  text-align: center;
  color: var(--c_white);
}

.cta05 .contact-info-title {
  font-size: 2rem;
}

.cta05 .phone-number {
  font-size: 6.1rem;
  color: var(--c_white);
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
  column-gap: 0.12em;
}

.cta05 .phone-number::before {
  content: "";
  width: 0.65em;
  height: 0.85em;
  background-image: url(../img/lp-subsidy/common/icon-phone.svg);
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(0) invert(1);
}

.cta05 .contact-info-details {
  font-size: 1.7rem;
}

/** -------------------- タブレット -------------------- **/
@media (max-width: 1200px) {
  /** ------------------------ COMMON STYLE ------------------------ **/
  body.lp-page {
    font-size: 1.6rem;
  }

  /** ------------------------ ヘッダー ------------------------ **/
  .header {
    height: 60px;
  }

  .header .site-logo-img {
    max-width: 57px;
    position: relative;
    z-index: 10;
  }

  .header .site-navigation {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: center;
    row-gap: 4rem;
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background-color: var(--c_white);
    padding: 12rem 2.4rem 2.4rem;
    transform: translateX(100%);
    transition: var(--anim);
    overflow-y: auto;
  }

  .header .site-navigation.is-open {
    transform: translateX(0);
  }

  .header .contact-info {
    flex-direction: column;
    row-gap: 4rem;
  }

  .header .company-address {
    text-align: center;
  }

  .header .phone-number {
    font-size: 2.4rem;
  }

  .header .contact-info-details {
    font-size: 1.2rem;
  }

  .header .cta-btn-container {
    flex-direction: column;
    row-gap: 1.6rem;
  }

  .header .site-nav-list {
    flex-direction: column;
    row-gap: 1.6rem;
  }

  .header .menu-btn {
    display: block;
  }

  /** ------------------------ フッター ------------------------ **/

  /** ------------------------ CTA ------------------------ **/
  .cta .cta-text {
    font-size: 1.6rem;
  }

  .btn-contact,
  .btn-line {
    font-size: 1.6rem;
  }

  /** ------------------------ hero ------------------------ **/
  .hero {
    height: 1000px;
    background-position: 60% top;
  }

  .hero .title-img {
    max-width: 300px;
    margin-left: 0;
  }

  .hero .hero-top-text {
    font-size: 1.4rem;
    margin-left: 0;
  }

  .hero .woman-img {
    display: none;
  }

  .hero .speech-bubble-img {
    max-width: 150px;
  }

  .hero .hero-bottom-text01,
  .hero .hero-bottom-text02 {
    font-size: 1.6rem;
  }

  .hero .hero-bottom-text01 .fs32,
  .hero .hero-bottom-text01 .fs34 {
    font-size: 2.4rem;
  }

  .hero .hero-bottom-text01 .fs42 {
    font-size: 3.2rem;
  }

  /** ------------------------ trouble ------------------------ **/
  .trouble .sec-title {
    font-size: 2.4rem;
  }

  .trouble .trouble-item-text {
    font-size: 1.4rem;
  }

  .trouble .trouble-text-wrapper {
    max-width: 700px;
  }

  .trouble .trouble-text {
    font-size: 1.6rem;
  }

  .trouble .trouble-text span {
    font-size: 2.4rem;
  }

  .trouble .man-img {
    max-width: 100px;
    right: 0;
  }

  /** ------------------------ then-now ------------------------ **/
  .then-now .sec-title {
    font-size: 2.4rem;
  }

  .then-now .then-title,
  .then-now .now-title {
    font-size: 2.4rem;
  }

  .then-now .arrow-img {
    max-width: 100px;
  }

  .then-now .then-now-text-wrapper {
    max-width: 700px;
  }

  .then-now .then-now-text {
    font-size: 1.6rem;
  }

  .then-now .then-now-text span {
    font-size: 2.4rem;
  }

  .then-now .woman-img {
    max-width: 100px;
    right: 0;
  }

  /** ------------------------ window-renovation ------------------------ **/
  .window-renovation .window-renovation-text-wrapper {
    font-size: 1.6rem;
    max-width: 800px;
  }

  .window-renovation .window-renovation-text01 {
    font-size: 1.6rem;
  }

  .window-renovation .window-renovation-text01 .fs21 {
    font-size: 1.4rem;
  }

  .window-renovation .window-renovation-text02 span {
    font-size: 2.4rem;
  }

  .window-renovation .inner-window-speech-bubble-img,
  .window-renovation .outer-window-speech-bubble-img {
    max-width: 150px;
  }

  .window-renovation .window-renovation-container .kanji-uchimado-shadow-img,
  .window-renovation .window-renovation-container .kanji-sotomado-shadow-img {
    max-width: 100px;
  }

  /** ------------------------ compare ------------------------ **/
  .compare .sec-title {
    font-size: 2.4rem;
  }

  .compare .man-img {
    max-width: 100px;
    left: 0;
  }

  .compare .woman-img {
    max-width: 100px;
    right: 0;
  }

  .compare .inner-window-title,
  .compare .outer-window-title {
    padding: 3.2rem 1.6rem 1.1rem 1.6rem;
  }

  .compare .inner-window-title > span:first-of-type,
  .compare .outer-window-title > span:first-of-type {
    font-size: 2.4rem;
  }

  .compare .inner-window-title > span:first-of-type .kanji-uchimado-img,
  .compare .outer-window-title > span:first-of-type .kanji-sotomado-img {
    max-width: 100px;
  }

  .compare .inner-window-title > span:first-of-type span:nth-of-type(2) {
    font-size: 2.4rem;
  }

  .compare .inner-window-title > span:nth-of-type(2),
  .compare .outer-window-title > span:nth-of-type(2) {
    font-size: 1.6rem;
  }

  .compare .outer-window-title > span:first-of-type span:nth-of-type(2),
  .compare .outer-window-title > span:first-of-type span:nth-of-type(3) {
    font-size: 2.4rem;
  }

  .compare .inner-window-subtitle,
  .compare .outer-window-subtitle {
    font-size: 2.4rem;
  }

  .compare .inner-window-item-text,
  .compare .outer-window-item-text {
    font-size: 1.6rem;
  }

  .compare .compare-text-wrapper {
    max-width: 475px;
  }

  .compare .compare-text {
    font-size: 1.6rem;
  }

  .compare .man02-img {
    max-width: 100px;
    bottom: 0;
    right: 0;
  }

  .compare .compare-text02 {
    font-size: 1.6rem;
  }

  .compare .compare-text02 .fs28 {
    font-size: 1.8rem;
  }

  .compare .compare-text02 .fs32,
  .compare .compare-text02 .fs34 {
    font-size: 2.4rem;
  }

  .compare .compare-text02 .fs38 {
    font-size: 3.2rem;
  }

  /** ------------------------ difference ------------------------ **/
  .difference .sec-title {
    font-size: 2.4rem;
  }

  .difference .sec-title span {
    font-size: 1.6rem;
  }

  .difference .difference-table .thead {
    font-size: 1.8rem;
  }

  .difference .difference-table .tbody {
    font-size: 1.6rem;
  }

  /** ------------------------ subsidy-amount ------------------------ **/
  .subsidy-amount .sec-title {
    font-size: 2.4rem;
  }

  .subsidy-amount .subsidy-amount-text {
    font-size: 1.6rem;
  }

  .subsidy-amount .subsidy-amount-table .thead {
    font-size: 1.8rem;
  }

  .subsidy-amount .subsidy-amount-table .tbody {
    font-size: 1.6rem;
  }

  /** ------------------------ subsidy-target ------------------------ **/
  .subsidy-target .title-img {
    max-width: 500px;
  }

  .subsidy-target .main-text-img {
    max-width: 400px;
  }

  .subsidy-target .people-img {
    max-width: 200px;
    right: 0;
  }

  /** ------------------------ cta02 ------------------------ **/
  .cta02 .cta-text span {
    font-size: 2.4rem;
  }

  /** ------------------------ reasons ------------------------ **/
  .reasons .sec-title {
    font-size: 2.4rem;
  }

  .reasons .man-img {
    max-width: 100px;
    right: -10rem;
  }

  .reasons .reasons-list {
    width: 90%;
  }

  .reasons .number {
    font-size: 4rem;
    top: -4.5rem;
    left: -3rem;
  }

  .reasons .reasons-item-title {
    font-size: 2.4rem;
  }

  /** ------------------------ works ------------------------ **/
  .works .sec-title {
    font-size: 2.4rem;
  }

  .works .case-icon {
    max-width: 70px;
  }

  .works .works-item-title > span:first-child {
    font-size: 1.8rem;
  }

  .works .works-item-title > span:first-child span {
    font-size: 2.4rem;
  }

  .works .works-item-title > span:nth-child(2) {
    font-size: 2.4rem;
  }

  .works .works-item-container {
    column-gap: 2.4rem;
  }

  .works .customer-voice-title {
    font-size: 1.8rem;
  }

  .works .case-people-img figcaption {
    width: fit-content;
    margin: 1.6rem auto 0;
    font-size: 1.4rem;
    position: static;
    transform: none;
  }

  .works .before-after figcaption,
  .works .before-after-item figcaption {
    font-size: 1.6rem;
  }

  /** ------------------------ service-area ------------------------ **/
  .service-area .sec-title {
    font-size: 2.4rem;
  }

  /** ------------------------ subsidy-process ------------------------ **/
  .subsidy-process .sec-title {
    font-size: 2.4rem;
  }

  .subsidy-process .step-number span:nth-child(2) {
    font-size: 2.4rem;
  }

  .subsidy-process .subsidy-process-item-title {
    font-size: 2.4rem;
  }

  /** ------------------------ qa ------------------------ **/
  .qa .sec-title {
    font-size: 2.4rem;
  }

  .qa .qa-question .q,
  .qa .qa-answer .a {
    font-size: 1.8rem;
  }

  .qa .qa-question > span:nth-child(2) {
    font-size: 1.8rem;
    padding-top: 0;
  }

  .qa .qa-answer > span:nth-child(2) {
    padding-top: 0.2em;
  }

  /** ------------------------ cta05 ------------------------ **/
  .cta05 .contact-info-title {
    font-size: 1.6rem;
  }

  .cta05 .phone-number {
    font-size: 4rem;
  }

  .cta05 .contact-info-details {
    font-size: 1.6rem;
  }
}

/** -------------------- スマホ -------------------- **/
@media (max-width: 699px) {
  /** ------------------------ COMMON STYLE ------------------------ **/
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  /** ------------------------ ヘッダー ------------------------ **/

  /** ------------------------ フッター ------------------------ **/
  .footer .company-info {
    flex-direction: column;
    row-gap: 2.4rem;
  }

  .footer .site-logo-img {
    max-width: 100px;
  }

  /** ------------------------ CTA ------------------------ **/
  .cta-btn-container {
    flex-direction: column;
    row-gap: 2.4rem;
  }

  /** ------------------------ hero ------------------------ **/
  .hero {
    background-image: none;
    height: 1000px;
  }

  .hero .hero-top {
    background-image: url(../img/lp-subsidy/hero/bg-sp.jpg);
    background-position: 75% -3rem;
    background-size: 115%;
    padding: 12rem 0 4rem;
  }

  .hero .hero-top-text-sp-only {
    width: fit-content;
    font-size: 1.6rem;
    font-weight: bold;
    background-color: rgba(252, 238, 34, 0.8);
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 10px;
  }

  .hero .title-img {
    max-width: 238px;
    margin-bottom: 1rem;
  }

  .hero .hero-top-text {
    text-align: left;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
  }

  .hero .speech-bubble-sp-img {
    width: 100%;
    max-width: 400px;
  }

  .hero .hero-bottom {
    padding-top: 2.4rem;
  }

  .hero .hero-bottom-text01 .fs32,
  .hero .hero-bottom-text01 .fs34 {
    font-size: 1.8rem;
  }

  .hero .hero-bottom-text01 .fs42 {
    font-size: 2.4rem;
  }

  /** ------------------------ trouble ------------------------ **/
  .trouble .question-mark-img {
    max-width: 40px;
    top: -3.5rem;
  }

  .trouble .sec-title {
    font-size: 1.8rem;
  }

  .trouble .trouble-item {
    padding: 2.4rem 0;
    background-size: 50%;
    background-position: 0 5rem;
  }

  .trouble .trouble-text-wrapper {
    background-image: url(../img/lp-subsidy/common/bg-speech-bubble-sp.svg);
    background-position: center;
    aspect-ratio: 889.12 / 380;
    max-width: 383px;
  }

  .trouble .trouble-text span {
    font-size: 1.8rem;
  }

  .trouble .man-img {
    max-width: 50px;
  }

  /** ------------------------ then-now ------------------------ **/
  .then-now .sec-title {
    font-size: 1.8rem;
  }

  .then-now .sec-title span {
    box-shadow: 3px 3px 0 var(--c_navy);
  }

  .then-now .sec-title span:nth-child(2) {
    margin-left: 6rem;
  }

  .then-now .then-title,
  .then-now .now-title {
    font-size: 1.4rem;
  }

  .then-now .arrow-img {
    max-width: 70px;
  }

  .then-now .then .arrow-img {
    top: 70%;
  }

  .then-now .now .arrow-img {
    top: 77%;
  }

  .then-now .then-now-text-wrapper {
    background-image: url(../img/lp-subsidy/common/bg-speech-bubble-sp.svg);
    background-position: center;
    aspect-ratio: 889.12 / 380;
    max-width: 383px;
  }

  .then-now .then-now-text span {
    font-size: 1.8rem;
  }

  .then-now .woman-img {
    max-width: 50px;
  }

  /** ------------------------ window-renovation ------------------------ **/
  .window-renovation .window-renovation-text-wrapper {
    top: 0;
    transform: translate(-50%, 0);
    padding-bottom: 0;
    justify-content: center;
    max-width: 400px;
  }

  .window-renovation .window-renovation-text02 span {
    font-size: 1.8rem;
  }

  .window-renovation .window-renovation-container {
    flex-direction: column;
    row-gap: 12rem;
  }

  .window-renovation .inner-window,
  .window-renovation .outer-window {
    flex: 0 0 48%;
  }

  /** ------------------------ compare ------------------------ **/
  .compare .sec-title {
    font-size: 1.8rem;
    margin-bottom: 8rem;
  }

  .compare .inner-window-title,
  .compare .outer-window-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .compare .inner-window-title > span:first-of-type,
  .compare .outer-window-title > span:first-of-type {
    font-size: 1.8rem;
  }

  .compare .inner-window-title > span:first-of-type span:nth-of-type(2) {
    font-size: 1.8rem;
  }

  .compare .inner-window-recommend,
  .compare .outer-window-recommend {
    padding: 1.6rem;
  }

  .compare .inner-window-subtitle,
  .compare .outer-window-subtitle {
    font-size: 1.8rem;
  }

  .compare .inner-window-list,
  .compare .outer-window-list {
    margin-bottom: 4rem;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.4rem;
  }

  .compare .inner-window-item,
  .compare .outer-window-item {
    padding: 2.4rem 0;
  }

  .compare .inner-window-item + .inner-window-item::before,
  .compare .outer-window-item + .outer-window-item::before {
    left: -1.2rem;
  }

  .compare .inner-window-item:nth-child(n + 3) {
    border-top: 2px solid #fef3eb;
  }

  .compare .outer-window-item:nth-child(n + 3) {
    border-top: 2px solid #ebfaf5;
  }

  .compare .outer-window-title > span:first-of-type span:nth-of-type(2),
  .compare .outer-window-title > span:first-of-type span:nth-of-type(3) {
    font-size: 1.8rem;
  }

  .compare .compare-text-wrapper {
    background-image: url(../img/lp-subsidy/compare/bg-speech-bubble-sp.svg);
    background-position: center;
    aspect-ratio: 627.34 / 300;
    max-width: 260px;
  }

  .compare .man02-img {
    max-width: 50px;
  }

  .compare .compare-text02 .fs32,
  .compare .compare-text02 .fs34 {
    font-size: 1.8rem;
  }

  .compare .compare-text02 .fs38 {
    font-size: 2.4rem;
  }

  /** ------------------------ difference ------------------------ **/
  .difference .sec-title {
    font-size: 1.8rem;
  }

  .difference .sec-title span {
    font-size: 1.4rem;
  }

  .difference .difference-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .difference .difference-table {
    min-width: 1065px;
  }

  /** ------------------------ subsidy-amount ------------------------ **/
  .subsidy-amount .sec-title {
    font-size: 1.8rem;
  }

  .subsidy-amount .subsidy-amount-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .subsidy-amount .subsidy-amount-table {
    min-width: 1065px;
  }

  /** ------------------------ subsidy-target ------------------------ **/
  .subsidy-target {
    padding: 8rem 0;
  }

  .subsidy-target .title-img {
    max-width: 200px;
    margin-bottom: 1.6rem;
  }

  .subsidy-target .people-img {
    max-width: 100px;
    bottom: -5rem;
  }

  /** ------------------------ cta02 ------------------------ **/
  .cta02 .cta-text span {
    font-size: 1.8rem;
  }

  .cta02 .cta-text::before {
    left: -7%;
  }

  .cta02 .cta-text::after {
    right: -7%;
  }

  /** ------------------------ reasons ------------------------ **/
  .reasons .sec-title {
    font-size: 1.8rem;
  }

  .reasons .man-img {
    max-width: 50px;
    bottom: -100%;
    right: -3rem;
  }

  .reasons .reasons-item {
    padding: 1.6rem;
  }

  .reasons .number {
    font-size: 2.4rem;
    top: -2.5rem;
  }

  .reasons .reasons-item-inner {
    flex-direction: column;
    row-gap: 2.4rem;
  }

  .reasons .reasons-item-title {
    font-size: 1.8rem;
  }

  /** ------------------------ works ------------------------ **/
  .works .sec-title {
    font-size: 1.8rem;
  }

  .works .works-item-header .wrapper {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.6rem;
  }

  .works .works-item-title > span:first-child span {
    font-size: 1.8rem;
  }

  .works .works-item-title > span:nth-child(2) {
    font-size: 1.8rem;
  }

  .works .works-item-info-list {
    font-size: 1.4rem;
  }

  .works .works-item-container {
    flex-direction: column;
    row-gap: 2.4rem;
  }

  /** ------------------------ service-area ------------------------ **/
  .service-area .sec-title {
    font-size: 1.8rem;
  }

  /** ------------------------ subsidy-process ------------------------ **/
  .subsidy-process .sec-title {
    font-size: 1.8rem;
  }

  .subsidy-process .subsidy-process-item {
    flex-direction: column;
    row-gap: 1.6rem;
  }

  .subsidy-process .subsidy-process-item-title {
    font-size: 1.8rem;
  }

  .subsidy-process .step-number span:nth-child(2) {
    font-size: 1.8rem;
  }

  /** ------------------------ qa ------------------------ **/
  .qa .qa-img {
    max-width: 120px;
  }

  .qa .sec-title {
    font-size: 1.8rem;
  }

  .qa .qa-item {
    padding: 1.6rem;
  }

  /** ------------------------ cta05 ------------------------ **/
  .cta05 .phone-number {
    font-size: 2.4rem;
  }

  .cta05 .contact-info-details {
    font-size: 1.4rem;
  }
}
