/* ============================================================
  AQUA JSシリーズ LP
  HTMLのセクション順に整理
============================================================ */


/* ============================================================
  基本設定・共通パーツ
============================================================ */

:root {
  --aq-blue: #1254aa;
  --aq-blue-dark: #0b3d84;
  --aq-cyan: #42d6e6;
  --aq-yellow: #fff000;
  --aq-orange: #ff8a2a;
  --aq-gray: #e6ebf2;
  --aq-text: #333333;
  --aq-white: #fff;
  --aq-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--aq-text);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  background: var(--aq-white);
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}
  #issue,
  #about,
  #strength,
  #compare,
  #service,
  #lineup,
  #contact {
    scroll-margin-top: 116px;
  }
.aq-container {
  width: min(100% - 40px, var(--aq-width));
  margin-inline: auto;
}

.aq-only-sp {
  display: none;
}

.aq-heading,
.aq-section-title {
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.3;
  text-align: center;
}

.aq-heading em {
  padding: 0 0.08em;
  color: var(--aq-blue);
  font-style: normal;
  background: linear-gradient(
  transparent 65%,
  var(--aq-yellow) 65%
  );
}

.aq-heading--light
 {
  color: var(--aq-white);
}

.aq-heading--light em
 {
  background: none;

  color: var(--aq-yellow);
}

.aq-menu__contact,
.aq-button,
.aq-contact__button,
.aq-flow__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 28px;
  color: var(--aq-white);
  font-weight: 700;
  background: var(--aq-orange);
  border-radius: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.aq-intro,
.aq-issue,
.aq-strength,
.aq-comfort,
.aq-compare,
.aq-lineup,
.aq-flow {
  padding: 30px 0;
}

.aq-intro__label,
.aq-about__eyebrow,
.aq-strength__label,
.aq-comfort__label,
.aq-compare__label,
.aq-service__label,
.aq-lineup__label {
  width: fit-content;
  margin: 0 auto 20px;
  padding: 8px 18px;
  color: var(--aq-blue);
  font-weight: 800;
  text-align: center;
  background: var(--aq-yellow);
}

.aq-intro__text,
.aq-reason__lead,
.aq-campaign__text {
  max-width: 1200px;
  margin-inline: auto;
}

.aq-section-title {
  padding: 16px 24px;
  color: var(--aq-white);
  background: var(--aq-blue);
}

.aq-issue__grid,
.aq-reason__grid,
.aq-service__grid,
.aq-flow__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.aq-card {
  padding: 28px;
  background: var(--aq-white);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgb(18 84 170 / 8%);
}

.aq-card__title {
  margin-bottom: 18px;
  color: var(--aq-text);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.35;
}

.aq-card__title em {
  color: var(--aq-blue);
  font-style: normal;
}

.aq-card__image {
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  object-fit: cover;
}

.aq-issue__catch,
.aq-reason__message,
.aq-compare__message {
  margin: 36px 0 0;
  color: var(--aq-blue);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  text-align: center;
}

.aq-about,
.aq-reason,
.aq-service,
.aq-campaign {
  padding: 88px 0;
  color: var(--aq-white);
  background: var(--aq-blue);
}

.aq-card--number {
  position: relative;
  color: var(--aq-text);
}

.aq-strength__title,
.aq-lineup__title {
  margin-bottom: 44px;
  color: var(--aq-blue);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.2;
  text-align: center;
}

.aq-strength__title span,
.aq-lineup__title span {
  font-size: 1.25em;
}

.aq-service__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.aq-compare .aq-comfort__label {
  position: relative;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 8px 24px;
  color: var(--aq-blue);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  background: var(--aq-yellow);
  border: 2px solid var(--aq-blue);
  border-radius: 4px;
}

.aq-compare .aq-comfort__label::before,
.aq-compare .aq-comfort__label::after {
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  transform: translateX(-50%);
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}

.aq-compare .aq-comfort__label::before {
  bottom: -14px;
  border-top: 14px solid var(--aq-blue);
}

.aq-compare .aq-comfort__label::after {
  bottom: -11px;
  border-top: 12px solid var(--aq-yellow);
}

.aq-compare .aq-comfort__text {
  max-width: 760px;
  margin: 0 auto 26px;
  color: var(--aq-text);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}


/* ============================================================
  HEADER
============================================================ */

.aq-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--aq-white);
  border-bottom: 1px solid #d6dce3;
}

.aq-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1600px);
  min-height: 84px;
  margin-inline: auto;
  padding-left: 24px;
}

.aq-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.aq-header__logo-mark {
  display: grid;
  place-items: center;
  width: 100px;
  aspect-ratio: 1;
  color: var(--aq-blue);
  font-size: 12px;
  border-radius: 50%;
}

.aq-menu__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.aq-menu__button {
  display: none;
}

.aq-menu__inner {
  display: flex;
  align-items: center;
  gap: 26px;
}

.aq-menu__link {
  font-weight: 700;
  font-size: 14px;
}


/* ============================================================
  FV
============================================================ */

.aq-hero {
  overflow: hidden;
  background: linear-gradient(180deg, #e7fbff 0%, #55e6ee 100%);
}

.aq-hero__inner {
  position: relative;
  width: min(100% - 40px, var(--aq-width));
  margin-inline: auto;
}

.aq-hero__image {
  width: min(86%, 960px);
  /* max-height: 420px; */
  margin: 0 auto;
  object-fit: cover;
}

.aq-hero__copy {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: end;
  gap: 10px 22px;
  margin-top: -10px;
  color: var(--aq-white);
  text-align: center;
}

.aq-hero__sub {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 900;
  line-height: 1.2;
}

.aq-hero__title {
  margin-bottom: 0;
  padding: 0 18px;
  font-size: clamp(68px, 9vw, 132px);
  line-height: 1;
  background: var(--aq-blue);
}

.aq-hero__brand {
  grid-column: 1 / -1;
  margin: 0;
  padding: 8px 26px;
  color: var(--aq-blue);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 800;
  line-height: 1;
  background: var(--aq-white);
}

.aq-hero__brand span {
  font-size: 0.34em;
}


/* ============================================================
  2027年 エアコンが値上げされるって本当？
============================================================ */

.aq-intro {
  text-align: center;
  background-color: var(--aq-gray);
  padding-top: 0;


}
.aq-intro__text{
  font-size: clamp(12px 2vw 18px);
  line-height: 1.7;
}

.aq-intro__text em {
  color: #1254aa;
  font-style: normal;
  font-weight: 700;
}

.aq-intro__label {
  font-size: 28px;
  position: relative;
  top: -1rem;
  width: fit-content;
  margin:  0 auto 16px;
  padding: 12px 24px;
  color: var(--aq-blue);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  background: var(--aq-yellow);
  border: 3px solid var(--aq-blue);
  border-radius: 4px;
}
.aq-service .aq-intro__label{
    border-radius: 8px;
}

.aq-intro__label::before,
.aq-intro__label::after {
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  transform: translateX(-50%);
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
}

.aq-intro__label::before {
  bottom: -15px;
  border-top: 15px solid var(--aq-blue);
}

.aq-intro__label::after {
  bottom: -12px;
  border-top: 13px solid var(--aq-yellow);
}


/* ============================================================
  エアコン2027年問題とは？
============================================================ */

.aq-issue {
  padding: 0 0 100px;
  background: var(--aq-gray);
}

.aq-issue .aq-container {
  overflow: hidden;
  background: var(--aq-white);
  border-radius: 12px;
}

.aq-issue .aq-section-title {
  margin: 0;
  padding: 18px 24px;
  color: var(--aq-white);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.4;
  text-align: center;
  background: var(--aq-blue);
}

.aq-issue__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 40px;
  padding: 44px 40px 24px;
}

.aq-issue .aq-card {
  display: contents;
}

.aq-issue .aq-card:nth-child(1) .aq-card__block {
  grid-column: 1;
  grid-row: 1;
}

.aq-issue .aq-card:nth-child(1) .aq-card__image {
  grid-column: 2;
  grid-row: 1;
}

.aq-issue .aq-card:nth-child(2) .aq-card__image {
  grid-column: 1;
  grid-row: 2;
}

.aq-issue .aq-card:nth-child(2) .aq-card__block {
  grid-column: 2;
  grid-row: 2;
}

.aq-issue .aq-card__image {
  align-self: start;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  aspect-ratio: auto;
}

.aq-issue .aq-card__title {
  margin-bottom: 14px;
  color: var(--aq-text);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.55;
}

.aq-issue .aq-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.aq-issue__catch {
  margin: 0;
  padding: 0 40px 42px;
  color: var(--aq-text);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.aq-issue__catch em {
  display: inline;
  padding: 0 0.08em;
  color: var(--aq-blue);
  font-size: 1.55em;
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(
  transparent 72%,
  var(--aq-yellow) 72%
  );
}


/* ============================================================
  AQUAの紹介
============================================================ */
.aq-lineup{
  padding-top: 68px;
  background-color: #e6ebf2;
}
.aq-about__title {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.2;
  text-align: center;
}

.aq-about__title span {
  font-size: 1.35em;
}

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

.aq-about__qa {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.aq-about__item {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: rgb(255 255 255 / 10%);
  border-radius: 12px;
}

.aq-about__icon {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.aq-about__heading {
  margin: 0;
  font-size: 22px;
}

.aq-reason {
  padding-top: 0;
}

.aq-reason {
  position: relative;
  padding: 88px 0 70px;
  color: var(--aq-white);
  background: var(--aq-blue);
}

.aq-reason__inner {
  position: relative;
  text-align: center;
}

.aq-reason__badge {
  position: absolute;
  top: -150px;
  left: 50%;
  z-index: 2;
  width: fit-content;
  margin: 0;
  transform: translateX(-50%);
  max-width: 360px;
}



.aq-reason__label {
  width: fit-content;
  margin: 0 auto 20px;
  padding: 7px 20px;
  color: var(--aq-blue);
  font-size: clamp(28px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.35;
  background: var(--aq-white);
  border-radius: 4px;
}

.aq-reason__brand {
  width: min(100%, 430px);
  margin: 0 auto;
}

.aq-reason__brand-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 24px;
}

.aq-reason__sub {
  margin: 6px 0 34px;
  color: var(--aq-yellow);
  font-size: clamp(30px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 1px;
}

.aq-reason__questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.aq-reason-card {
  margin: 0;
}

.aq-reason-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.aq-reason-card__text {
  margin: 0;
  color: var(--aq-white);
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 800;
  line-height: 1.65;
}

.aq-reason__lead {
  max-width: none;
  margin: 0 0 4px;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
}

.aq-reason__catch {
  margin: 0;
  color: var(--aq-yellow);
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.35;
}

.aq-reason__text {
  margin: 8px auto 0;
  font-size: clamp(14px, 1.5vw, 19px);
  line-height: 1.8;
}

.aq-reason__text span {
  color: var(--aq-yellow);
  font-weight: 800;
}

.aq-reason-detail {
  overflow: hidden;
  margin-top: 30px;
  color: var(--aq-text);
  background: var(--aq-white);
  border-radius: 10px;
}

.aq-reason-detail__grid {
  overflow: hidden;
  background: var(--aq-white);
  border-radius: 10px;
  padding-bottom: 50px;
}

.aq-reason-detail__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 50px 40px 0;
  color: var(--aq-text);
}



.aq-reason-detail__content {
  min-width: 0;
}

.aq-reason-detail__heading {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: start;
  gap: 16px;
  margin-bottom: 14px;
}

.aq-reason-detail__number,
.aq-feature__number {
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  color: var(--aq-white);
  font-size: 22px;
  font-weight: 900;
  background: var(--aq-blue);
  border-radius: 50%;
}

.aq-reason-detail__title {
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.45;
  text-align: left;
}

.aq-reason-detail__title em {
  color: var(--aq-blue);
  font-style: normal;
}

.aq-reason-detail__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  text-align: left;
}

.aq-reason-detail__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.aq-reason-detail__conclusion {
  padding: 22px 20px 26px;
  text-align: center;
  background: var(--aq-gray);
}

.aq-reason-detail__conclusion-lead {
  margin-bottom: 4px;
  font-weight: 700;
  font-size:clamp( 12px 1vw 24px);
  font-weight: 700;
}

.aq-reason-detail__conclusion-text {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 900;
  line-height: 1.45;
}

.aq-reason-detail__conclusion-text em {
  padding: 0 0.08em;
  color: var(--aq-blue);
  font-style: normal;
  background: linear-gradient(
  transparent 72%,
  var(--aq-yellow) 72%
  );
}


/* ============================================================
  3つの強み
============================================================ */

.aq-card__number{
  display: inline-grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  margin-bottom: 12px;
  color: var(--aq-white);
  font-weight: 900;
  background: var(--aq-blue);
  border-radius: 50%;
}

.aq-strength__list {
  display: grid;
  gap: 28px;
}

.aq-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 30px;
  background: var(--aq-white);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgb(18 84 170 / 10%);
}

.aq-feature__title {
  color: var(--aq-blue);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.35;
}

.aq-feature__image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.aq-strength {
  padding: 72px 0 0;
  background: #e9eef4;
}

.aq-strength__label {
  position: relative;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 8px 24px;
  color: var(--aq-blue);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  background: var(--aq-yellow);
  border: 2px solid var(--aq-blue);
  border-radius: 4px;
}

.aq-strength__label::before,
.aq-strength__label::after {
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  transform: translateX(-50%);
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}

.aq-strength__label::before {
  bottom: -14px;
  border-top: 14px solid var(--aq-blue);
}

.aq-strength__label::after {
  bottom: -11px;
  border-top: 12px solid var(--aq-yellow);
}

.aq-strength__title {
  margin-bottom: 34px;
  color: var(--aq-text);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
}

.aq-strength__title span {
  display: block;
  color: var(--aq-blue);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.15;
}

.aq-strength__list {
  display: grid;
  gap: 0;
  padding: 38px 40px 42px;
  background: var(--aq-white);
  border-radius: 10px ;
}

.aq-strength .aq-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: start;
  gap: 38px;
  padding: 0 0 34px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.aq-strength .aq-feature + .aq-feature {
  padding-top: 34px;
  border-top: 1px solid #d7dde5;
}

.aq-strength .aq-feature__content {
  position: relative;
  min-width: 0;
  padding-left: 72px;
}

.aq-strength .aq-feature__number {
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  margin: 0;
  font-size: 22px;
}

.aq-strength .aq-feature__title {
  margin: 0 0 12px;
  color: var(--aq-text);
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.45;
}

.aq-strength .aq-feature__title br + * {
  color: var(--aq-blue);
}

.aq-strength .aq-feature__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.aq-strength .aq-feature__image {
  align-self: start;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  aspect-ratio: auto;
}


/* ============================================================
  長く使えて、毎日心地いい。
============================================================ */
.aq-comfort{
  padding-top:60px ;
}
.aq-comfort__label {
  position: relative;
  width: fit-content;
  margin: 0 auto 28px;
  padding: 8px 24px;
  color: var(--aq-blue);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  background: var(--aq-yellow);
  border: 2px solid var(--aq-blue);
  border-radius: 4px;
}

.aq-comfort__label::before,
.aq-comfort__label::after {
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  transform: translateX(-50%);
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}

.aq-comfort__label::before {
  bottom: -14px;
  border-top: 14px solid var(--aq-blue);
}

.aq-comfort__label::after {
  bottom: -11px;
  border-top: 12px solid var(--aq-yellow);
}

.aq-comfort .aq-heading {
  margin-bottom: 14px;
  color: var(--aq-text);
  font-size: clamp(24px, 3.4vw, 50px);
  line-height: 1.35;
  text-align: center;
}

.aq-comfort .aq-heading em {
  padding: 0 0.08em;
  color: var(--aq-blue);
  font-style: normal;
  background: linear-gradient(
  transparent 72%,
  var(--aq-yellow) 72%
  );
}

.aq-comfort__text {
  max-width: 760px;
  margin: 0 auto 34px;
  color: var(--aq-text);
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

.aq-comfort__text span {
  color: var(--aq-blue);
  font-weight: 800;
}

.aq-comfort {
  background: var(--aq-gray);
}

/* 3つのカード：画像を切らず、文字サイズと高さをそろえる */
.aq-comfort__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
}

.aq-comfort__grid .aq-card {
  display: flex;
  flex: 1 1 calc((100% - 64px) / 3);
  flex-direction: column;
  min-width: 280px;
  padding: 24px;
}

.aq-comfort__grid .aq-card__image {
  width: 100%;
  height: 190px;
  margin: 0 0 18px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.aq-comfort__grid .aq-card__title {
  min-height: 3em;
  margin: 0 0 14px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  text-align: center;
}

.aq-comfort__grid .aq-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 600;
}


/* ============================================================
  有名メーカー VS AQUA
============================================================ */

.aq-compare {
  padding: 72px 0 0;
  background: var(--aq-white);
}

.aq-compare .aq-container {
  width: min(100% - 40px, var(--aq-width));
  text-align: center;
}

.aq-compare .aq-heading {
  margin-bottom: 10px;
  color: var(--aq-text);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.3;
  text-align: center;
}

.aq-compare__table-wrap {
  width: 100%;
  margin: 0 auto 1rem;
}

.aq-compare__info {
  margin: .5rem  0;
  font-size: 13px;
  text-align: right;
}

.aq-compare__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.aq__c--sp {
  display: none;
}

.aq-compare__message {
  margin: 0;
  padding: 30px 24px 26px;
  color: var(--aq-text);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  background: #e9eef4;
}
.aq-compare__message em {
  display: inline;
  padding: 0 0.08em;
  color: var(--aq-blue);
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(
    transparent 72%,
    var(--aq-yellow) 72%
  );
}

.aq-compare__message br + * {
  color: var(--aq-blue);
}

.aq-compare__message {
  background-color: #e9eef4;
}

.aq-compare__message {
  text-decoration: none;
}
.aq-compare__message em {
  font-style: none;
}
.aq-compare__message::first-line {
  color: var(--aq-text);
}

.aq-compare__message2 {
  margin: 0;
  padding: 12px 20px 18px;
  color: var(--aq-text);
  font-size: clamp(15px, 1.6vw, 20px);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  background: var(--aq-white);
}
.aq-compare__message2 em{
  font-style: normal;
  color:var(--aq-blue);
}
.aq-compare__message2 {
  color: var(--aq-text);
}


/* ============================================================
  安心のアフターサービス
============================================================ */

.aq-service__item {
  padding: 24px;
  color: var(--aq-text);
  text-align: center;
  background: var(--aq-white);
  border-radius: 12px;
}

.aq-service__image {
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  object-fit: cover;
}

.aq-service__title {
  margin-bottom: 0;
  color: var(--aq-blue);
}


/* ============================================================
  181人に増強
============================================================ */

.aq-campaign {
  padding-top: 0;
}

.aq-campaign__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 36px;
}

.aq-campaign__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.aq-campaign_181 {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 24px 32px;
  background: #276bc4;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.aq-campaign__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.aq-campaign_181 .aq-campaign__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.aq-campaign_181 .aq-campaign__label {
  margin: 0;
  color: var(--aq-white);
  font-size: clamp(24px, 2.7vw, 40px);
  font-weight: 900;
  line-height: 1.5;
}

.aq-campaign_181 .aq-campaign__label em {
  color: var(--aq-yellow);
  font-size: clamp(27px, 3.3vw, 48px);
  font-style: normal;
  font-weight: 900;
  line-height: 1.45;
}

.aq-campaign_181 .aq-campaign__label span {
  display: inline-block;
  margin: 0 0.04em;
  font-size: 145%;
  line-height: 0.8;
  vertical-align: -0.08em;
}


/* ============================================================
  LINE UP
============================================================ */

.aq-lineup__text{
  text-align: center;
}
.aq-lineup__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.aq-product {
  padding: 18px;
  text-align: center;
  background: var(--aq-white);
  border: 1px solid #d7dde5;
  border-radius: 10px;
}

.aq-product__size {
  display: block;
  margin: -18px -18px 16px;
  font-size: clamp(16px, 2vw, 24px);
  padding: 10px;
  color: var(--aq-white);
  font-weight: 800;
  background: var(--aq-blue);
  border-radius: 10px 10px 0 0;
}

.aq-product__image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.aq-product__name {
  font-weight: 700;
  background: var(--aq-gray);
  line-height: 2.5;
  margin-top: .5rem;
}


.aq-product .aq-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 12px 48px 12px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  background: #ee2c2c;
  border: 2px solid #222;
  border-radius: 12px;
  box-shadow: 0 6px 0 #222;
}

.aq-product .aq-button::after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "›";
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-54%);
}

.aq-product .aq-button:hover,
.aq-menu__contact:hover,
.aq-flow__button:hover,
.aq-contact__button:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #222;
}

.aq-product .aq-button:active,
.aq-menu__contact:active,
.aq-flow__button:active,
.aq-contact__button:active  {
  transform: translateY(6px);
  box-shadow: none;
}

/* ============================================================
  購入ポイント
============================================================ */

.aq-flow {
  padding: 56px 0;
  background: #e9eef4;
}

.aq-flow .aq-container {
  width: min(100% - 40px, var(--aq-width));
}

.aq-flow__panel {
  overflow: hidden;
  background: var(--aq-white);
  border-radius: 10px;
}

.aq-flow__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: 40px;
  padding: 42px 40px;
}

.aq-flow__row + .aq-flow__row {
  border-top: 28px solid #e9eef4;
}

.aq-flow__content {
  min-width: 0;
}

.aq-flow__label {
  margin: 0 0 18px;
  padding: 10px 20px;
  color: var(--aq-white);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 800;
  line-height: 1.4;
  background: var(--aq-blue);
  border-radius: 4px;
}

.aq-flow__title {
  margin: 0 0 16px;
  color: var(--aq-text);
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 900;
  line-height: 1.45;
}

.aq-flow__title em {
  color: var(--aq-blue);
  font-style: normal;
}

.aq-flow__text {
  margin: 0;
  color: var(--aq-text);
  font-size: 16px;
  line-height: 1.95;
}

.aq-flow__note {
  margin: 12px 0 0;
  color: var(--aq-text);
  font-size: 12px;
  line-height: 1.7;
}

.aq-flow__visual {
  min-width: 0;
}

.aq-flow__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.aq-flow__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(72%, 700px);
  min-height: 72px;
  margin: -4px auto 38px;
  padding: 14px 64px;
  color: var(--aq-white);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1.3;
  background: var(--aq-orange);
  border: 2px solid var(--aq-text);
  border-radius: 20px;
  box-shadow: 0 6px 0 #222;
}

.aq-flow__button-arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-54%);
}


/* ============================================================
  CTA・お問い合わせ
============================================================ */

.aq-contact {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #9df6fa;
}

.aq-contact__inner {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}

.aq-contact__picture {
  display: block;
  width: 100%;
}

.aq-contact__image {
  display: block;
  width: 100%;
  height: auto;
}

.aq-contact__content {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: min(54%, 660px);
  transform: translateX(-50%);
  border-bottom-width: 6px;
  border-radius: 15px;
}

.aq-contact__button {
  width: 100%;
  min-height: 58px;
  padding: 12px 48px 12px 18px;
  border: 2px solid #000;  
  font-size: clamp(22px, 2.5vw, 28px);
  border-width: 2px;
  border-radius: 14px;
  background: #ef2c2c;
  box-shadow: 0 6px 0 #222;

}

.aq-contact__button::after {
  right: 18px;
  font-size: 34px;
}


/* ============================================================
  FOOTER
============================================================ */

.aq-footer {
  padding: 32px 0 0;
  background: #ffffff;
}

.aq-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.aq-footer__logo {
  margin: 0 auto 30px;
  font-weight: 700;
  max-width: 400px;
}
.aq-footer__copy{
  font-weight: 400;
  text-align: center;
}


/* ============================================================
  PC表示の調整：@media (min-width: 769px)
============================================================ */

@media (min-width: 769px) {

  /* ------------------------------
    HEADER
  ------------------------------ */

  .aq-header__inner {
    min-height: 116px;
  }

  .aq-menu {
    align-self: stretch;
    display: flex;
    margin-right: 24px;
  }

  .aq-menu__inner {
    display: grid;
    grid-template-columns: repeat(6, auto);
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 26px;
    row-gap: 10px;
  }

  .aq-menu__contact {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: end;
    min-height: 42px;
    padding: 8px 28px;
  }

  .aq-menu__link {
    grid-row: 2;
  }

  /* ボタンの装飾 */
  .aq-menu__contact {
  position: relative;
  min-height: 52px;
  padding: 12px 56px 12px 28px;
  color: var(--aq-white);
  font-weight: 700;
  background: var(--aq-orange);
  border: 2px solid #000;
  border-radius: 15px;
  box-shadow: 0 6px 0 #222;
}

.aq-menu__contact::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 12px;
  height: 20px;
  content: "";
  background: url("../images/icon_arrow.svg") center / contain no-repeat;
  transform: translateY(-50%);
}

}


/* ============================================================
  スマートフォン表示の調整：@media (max-width: 768px)
============================================================ */

@media (max-width: 768px) {

  /* ------------------------------
    基本設定・共通パーツ
  ------------------------------ */

  #issue,
  #about,
  #strength,
  #compare,
  #service,
  #lineup,
  #contact {
    scroll-margin-top: 72px;
  }

  .aq-container {
    width: min(100% - 28px, var(--aq-width));
  }

  .aq-only-sp {
    display: block;
  }

  .aq-intro,
  .aq-issue,
  .aq-about,
  .aq-reason,
  .aq-strength,
  .aq-comfort,
  .aq-compare,
  .aq-service,
  .aq-campaign,
  .aq-lineup,
  .aq-flow {
    padding: 30px 0;
  }

  .aq-reason__grid,
  .aq-about__qa,
  .aq-service__grid,
  .aq-flow__grid,
  .aq-campaign__inner,
  .aq-contact__inner {
    grid-template-columns: 1fr;
  }

  .aq-compare .aq-comfort__label {
    margin-bottom: 24px;
    padding: 7px 18px;
    font-size: 14px;
  }

  .aq-compare .aq-comfort__text {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
  }

  /* ------------------------------
    HEADER
  ------------------------------ */

  .aq-header__inner {
    min-height: 72px;
    padding-left: 14px;
  }

  .aq-header__logo-text {
    font-size: 12px;
  }

  .aq-header__logo-mark {
    width: 46px;
  }

  .aq-menu__button {
    position: relative;
    z-index: 102;
    display: grid;
    place-content: center;
    gap: 8px;
    width: 88px;
    min-height: 72px;
    background: var(--aq-blue);
    cursor: pointer;
  }

  .aq-menu__line {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--aq-white);
    transition: transform 0.25s, opacity 0.25s;
  }

  .aq-menu {
    position: fixed;
    inset: 72px 0 0;
    z-index: 101;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    background: var(--aq-white);
    transition: opacity 0.25s, visibility 0.25s;
  }

  .aq-menu__inner {
    display: block;
  }

  .aq-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    padding: 10px 40px 10px 24px;
    font-size: 20px;
    border-bottom: 1px solid #d6dce3;
  }

  .aq-menu__link::after {
    content: "›";
    color: var(--aq-blue);
    font-size: 34px;
  }

  .aq-menu__contact {
    display: flex;
    margin: 30px 20px;
    border: 2px solid var(--aq-text);
    box-shadow: 0 6px 0 #222;
  }

  .aq-menu__toggle:checked ~ .aq-menu {
    visibility: visible;
    opacity: 1;
  }

  .aq-menu__toggle:checked + .aq-menu__button .aq-menu__line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .aq-menu__toggle:checked + .aq-menu__button .aq-menu__line:nth-child(2) {
    opacity: 0;
  }

  .aq-menu__toggle:checked + .aq-menu__button .aq-menu__line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* ------------------------------
    FV
  ------------------------------ */

  .aq-hero__inner {
    width: 100%;
    height: 100%;
    padding: 0;
    
  }

  .aq-hero__image {
    width: 100%;
  }

  .aq-hero__copy {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .aq-hero__title,
  .aq-hero__brand {
    grid-column: auto;
  }

  .aq-hero__title {
    font-size: 72px;
  }

  .aq-hero__brand {
    font-size: 58px;
  }
  .aq-intro__label{
    font-size: 18px;
    padding: 10px;
  }
  .aq-intro__text{
    text-align: left;
  }
  /* ------------------------------
    エアコン2027年問題とは？
  ------------------------------ */

  .aq-issue {
    padding:  0 0 60px;
  }

  .aq-issue .aq-container {
    width: calc(100% - 28px);
  }

  .aq-issue .aq-section-title {
    padding: 14px 12px;
    font-size: 22px;
  }

  .aq-issue__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 16px;
  }

  .aq-issue .aq-card:nth-child(1) .aq-card__image {
    grid-column: 1;
    grid-row: 1;
  }

  .aq-issue .aq-card:nth-child(1) .aq-card__block {
    grid-column: 1;
    grid-row: 2;
  }

  .aq-issue .aq-card:nth-child(2) .aq-card__image {
    grid-column: 1;
    grid-row: 3;
  }

  .aq-issue .aq-card:nth-child(2) .aq-card__block {
    grid-column: 1;
    grid-row: 4;
  }

  .aq-issue .aq-card__title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.55;
  }

  .aq-issue .aq-card__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .aq-issue__catch {
    padding: 10px 22px 32px;
    font-size: 14px;
  }

  .aq-issue__catch em {
    font-size: 1.35em;
  }

  /* ------------------------------
    AQUAの紹介
  ------------------------------ */

  .aq-about__item {
    grid-template-columns: 72px 1fr;
  }

  .aq-reason-detail {
    margin-top: 26px;
  }

  .aq-reason-detail__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 24px 18px;
  }

  .aq-reason-detail__item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 8px;
  }

  .aq-reason-detail__heading {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    margin-bottom: 14px;
  }

  .aq-reason-detail__number {
    width: 46px;
    font-size: 18px;
  }

  .aq-reason-detail__title {
    font-size: 19px;
  }

  .aq-reason-detail__text {
    font-size: 14px;
    line-height: 1.8;
  }

  .aq-reason-detail__image {
    order: 1;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .aq-reason-detail__content {
    order: 2;
    width: 100%;
  }
  .aq-reason-detail__visual {
    order: -1;
  }

  .aq-reason-detail__conclusion {
    padding: 20px 16px 24px;
  }

  .aq-reason-detail__conclusion-text {
    font-size: 24px;
  }

  .aq-reason {
    padding: 72px 0 48px;
  }

  .aq-reason__badge {
    top: -98px;
  }

  .aq-reason__label {
    margin-bottom: 10px;
    padding: 6px 16px;
    font-size: 20px;  
  }

  .aq-reason__brand {
    width: min(76%, 320px);
  }

  .aq-reason__sub {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .aq-reason__questions {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .aq-reason-card {
    grid-template-columns: 68px 1fr;
    gap: 14px;
    min-height: 0;
  }

  .aq-reason-card__icon {
    width: 68px;
  }

  .aq-reason-card__text {
    font-size: 15px;
    line-height: 1.55;
  }

  .aq-reason__lead {
    font-size: 15px;
  }

  .aq-reason__catch {
    font-size: 24px;
  }

  .aq-reason__text {
    font-size: 13px;
    text-align: left;
  }

  .aq-reason__text br {
    display: none;
  }

  .aq-reason-detail {
    margin-top: 26px;
  }

  .aq-reason-detail__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .aq-reason-detail__item {
    grid-template-columns: 40px 1fr;
    gap: 8px;
  }

  .aq-reason-detail__number {
    width: 40px;
    font-size: 18px;
  }

  .aq-reason-detail__title {
    font-size: 19px;
  }

  .aq-reason-detail__text {
    font-size: 14px;
    line-height: 1.8;
  }

  .aq-reason-detail__visual {
    order: -1;
  }

  .aq-reason-detail__conclusion {
    padding: 20px 16px 24px;
  }

  .aq-reason-detail__conclusion-text {
    font-size: 20px;
    text-align: left;
  }

  /* ------------------------------
    3つの強み
  ------------------------------ */

  .aq-feature {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .aq-feature__image {
    order: -1;
  }

  .aq-strength {
    padding: 48px 0 0;
  }

  .aq-strength__label {
    position: relative;
    width: fit-content;
    margin: 0 auto 28px;
    padding: 8px 24px;
    color: var(--aq-blue);
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    background: var(--aq-yellow);
    border: 2px solid var(--aq-blue);
    border-radius: 4px;
  }

  .aq-strength__title {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .aq-strength__title span {
    font-size: 40px;
  }

  .aq-strength__list {
    padding: 24px 18px 30px;
  }

  .aq-strength .aq-feature {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 28px;
  }

  .aq-strength .aq-feature + .aq-feature {
    padding-top: 28px;
  }

  .aq-strength .aq-feature__content {
    padding-left: 58px;
  }

  .aq-strength .aq-feature__number {
    width: 44px;
    font-size: 12px;
  }

  .aq-strength .aq-feature__title {
    font-size: 19px;
  }

  .aq-strength .aq-feature__text {
    font-size: 14px;
    line-height: 1.8;
  }

  /* ------------------------------
    長く使えて、毎日心地いい。
  ------------------------------ */

  .aq-comfort__grid {
    flex-direction: column;
    gap: 20px;
  }

  .aq-comfort__grid .aq-card {
    flex-basis: auto;
    min-width: 0;
    padding: 22px;
  }

  .aq-comfort__grid .aq-card__image {
    height: auto;
    margin-bottom: 16px;
  }

  .aq-comfort__grid .aq-card__title {
    min-height: 0;
    margin-bottom: 12px;
    font-size: 19px;
  }

  .aq-comfort__grid .aq-card__text {
    font-size: 14px;
  }
  
  .aq-comfort__text{
      font-size: 14px;
      text-align: left;
  }
  /* ------------------------------
    有名メーカー VS AQUA
  ------------------------------ */

  .aq-compare {
    padding: 48px 0 0;
  }

  .aq-compare .aq-container {
    width: calc(100% - 28px);
  }

  .aq-compare .aq-heading {
    margin-bottom: 8px;
    font-size: 30px;
  }

  .aq__c--pc {
    display: none;
  }

  .aq__c--sp {
    display: block;
  }

  .aq-compare__message {
    padding: 16px;
    font-size: 20px;
    text-align: left;
  }

  .aq-compare__message2 {
    padding: 12px 14px 16px;
    font-size: 14px;
    text-align: left;
  }
.aq-compare__info{
  text-align: left;
}
  /* ------------------------------
    181人に増強
  ------------------------------ */
.aq-service{
  padding-top: 50px;
}
  .aq-campaign_181 {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 14px;
  }
  .aq-campaign_181 .aq-campaign__label {
    font-size: 17px;
    line-height: 1.45;
  }

  .aq-campaign_181 .aq-campaign__label em {
    margin-top: 4px;
    font-size: 20px;
    line-height: 1.45;
  }

  .aq-campaign_181 .aq-campaign__label span {
    font-size: 1.4em;
  }
  .aq-campaign__text{
    font-size: 14px;
    padding: 8px;
  }

  /* ------------------------------
    LINE UP
  ------------------------------ */
  .aq-lineup{
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .aq-lineup__text{
    font-size: 14px;
    text-align: left;
    padding: 0;
  }
  .aq-lineup__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 8px;
  }
  .aq-product{
    padding: 8px 8px 16px 8px;
  }
  .aq-product__size{
    margin: -18px -8px 16px;
  }
  .aq-product .aq-button{
        padding: 12px ;
        font-size: 14px;
  }
  .aq-product .aq-button::after{
    right: 10px;
  }
  /* ------------------------------
    購入ポイント
  ------------------------------ */

  .aq-flow {
    padding:  0;
  }

  .aq-flow .aq-container {
    width: calc(100% - 28px);
  }

  .aq-flow__row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 18px;
  }

  .aq-flow__row + .aq-flow__row {
    border-top-width: 18px;
  }

  .aq-flow__label {
    margin-bottom: 16px;
    padding: 9px 14px;
    font-size: 15px;
  }

  .aq-flow__title {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .aq-flow__text {
    font-size: 14px;
    line-height: 1.85;
  }

  .aq-flow__note {
    font-size: 11px;
  }
.aq-flow__visual {
  order: 1;
}

.aq-flow__content {
  order: 2;
}



  .aq-flow__button {
    width: calc(100% - 36px);
    min-height: 60px;
    margin: 4px auto 26px;
    padding: 12px 50px 12px 20px;
    font-size: 21px;
    border-radius: 14px;
    box-shadow: 0 6px 0 #222;
  }
  .aq-contact__content{
    width: 80%;
    bottom: 3%;
  }
  .aq-contact__button{
    font-size: 15px;
  }

  /* ------------------------------
    FOOTER
  ------------------------------ */
  .aq-container.aq-footer__logo{
    width: 70%;
  }
  .aq-footer__inner {
    display: block;
    text-align: center;
  }
  .aq-footer__copy{
    font-size: 12px;
  }
}
