:root {
	--font-family-base: "Noto Sans JP", "Noto Sans", sans-serif;
	--font-family-second: "Noto Serif JP", "Noto Serif", serif;
	--font-family-num: "Inter", "Noto Sans JP", sans-serif;
}

:root {
	--font-weight-regular: 400;
	--font-weight-medium: 500;
	--font-weight-semibold: 600;
	--font-weight-bold: 700;
	--font-weight-extrabold: 800;
	--font-weight-black: 900;
}

:root {
	--black: #000;
	--white: #fff;
	--text-black: #000;
	--main-color: #013A95;
	--main-black: #585757;
	--main-red: #fe0901;
	--main-green: #038f1a;
	--main-orange: #FC5302;
}

:root {
	--z-index-header: 100;
	--z-index-to-top: 200;
	--z-index-drawer: 1000;
	--z-index-modal: 10000;
}

:root {
	--section-padding-block: calc(50 / 16 * 1rem);
	--padding-inline: 0.9375rem;
}

:root {
	--duration-short: 0.2s;
	--duration-base: 0.3s;
	--duration-long: 0.6s;
	--duration-fv: 0.7s;
	--ease-smooth-bounce: cubic-bezier(.48, .07, .33, .79);
}

body {
	color: var(--text-black);
	font-family: var(--font-family-base);
}

.u-desktop {
	display: none;
}

/* リキッドレイアウト対応：ブラウザ幅に常時連続追従（min/maxなし） */

html {
	font-size: 4.1025641026vw;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	word-wrap: anywhere;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-break: strict;
	line-height: 1.5;
	margin: 0;
	min-height: 100vh;
	overflow-wrap: anywhere;
	text-rendering: optimizeLegibility;
	word-break: normal;
}

ul,
ol,
button,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
time,
small {
	margin: 0;
	padding: 0;
}

ul,
ol {
	list-style: none;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

a,
span,
button {
	display: inline-block;
}

small,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

address {
	font-style: normal;
}

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

article > * + * {
	margin-top: 1em;
}

input,
button,
textarea,
select {
	font: inherit;
}

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	border: 0;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: 0.3s;
}

button {
	color: inherit;
}

a {
	-webkit-tap-highlight-color: transparent;
}

button {
	-webkit-tap-highlight-color: transparent;
}

.category {
	padding-block: 1.875rem 1.25rem;
	padding-inline: var(--padding-inline);
}

.category__inner {
	background-color: var(--main-color);
	border-radius: 0.5rem;
	padding: 0.875rem 0.875rem;
	width: 100%;
}

.category__title {
	color: var(--white);
	font-size: 0.9375rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.04em;
	margin-bottom: 0.75rem;
	text-align: center;
}

.category__list {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.category__card {
	align-items: center;
	background-color: var(--white);
	border-radius: 0.375rem;
	display: flex;
	gap: 0.625rem;
	height: 100%;
	padding: 0.5rem 0.75rem;
	transition: opacity var(--duration-base);
	width: 100%;
}

.category__icon-wrap {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	min-width: 3.75rem;
}

.category__icon {
	flex-shrink: 0;
	height: auto;
}

.category__icon--heater {
	width: 3.125rem;
}

.category__icon--eco {
	width: 3.125rem;
}

.category__label {
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	line-height: 1.3;
}

.category__label-name {
	font-size: 0.9375rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.3;
}

.category__label-name--eco {
	color: var(--main-green);
}

.category__label-name--gas {
	color: var(--main-orange);
}

.category__arrow {
	flex-shrink: 0;
	height: 1.25rem;
	margin-left: auto;
	position: relative;
	width: 1.25rem;
}

.category__arrow::before {
	border-radius: 0.0625rem;
	border-right: 2px solid var(--main-color);
	border-top: 2px solid var(--main-color);
	content: "";
	height: 0.625rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-65%, -50%) rotate(45deg);
	width: 0.625rem;
}

.inner {
	margin-inline: auto;
	max-width: 31.25rem;
	padding-inline: 0.9375rem;
	width: 100%;
}

.mv__img {
	height: auto;
}

.products {
	--section-color: var(--main-color);
	padding-block: 1rem;
	padding-inline: 0.5rem;
}

.products--eco {
	--section-color: var(--main-green);
}

.products--gas {
	--section-color: var(--main-orange);
}

.products__frame {
	background-color: var(--white);
	border: 1px solid var(--section-color);
	border-radius: 0.625rem;
	padding: 0 0.625rem 0.875rem;
	position: relative;
}

.products__header {
	align-items: center;
	display: flex;
	gap: 0.3125rem;
	left: -2.1875rem;
	margin-bottom: 1.25rem;
	pointer-events: none;
	position: relative;
}

.products__header > * {
	pointer-events: auto;
}

.products__title {
	background-color: var(--section-color);
	border-radius: 0.5rem 0 1rem 0;
	color: var(--white);
	font-size: 0.9375rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.04em;
	line-height: 1.2;
	padding: 0.5rem 1rem;
	white-space: nowrap;
}

.products__lead {
	flex: 1;
	font-size: 0.6875rem;
	font-weight: var(--font-weight-medium);
	padding-left: 2.5rem;
	white-space: nowrap;
}

.products__list {
	grid-row-gap: 1.5rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 1.5rem;
}

.products__list + .products__list {
	margin-top: 1.5rem;
}

.products__item {
	border-right: 1px solid #ccc;
	display: flex;
	position: relative;
}

.products__item:nth-child(2n) {
	border-right: none;
}

.products__card {
	background-color: transparent;
	display: flex;
	flex-direction: column;
	padding: 0.625rem 0.375rem 0.5rem;
	position: relative;
	transition: opacity var(--duration-base);
	width: 100%;
}

.products__item:nth-child(2n-1) > .products__card {
	padding-left: 0;
}

.products__item:nth-child(2n) > .products__card {
	padding-right: 0;
}

.products__brand {
	align-items: center;
	display: flex;
	min-height: 1.375rem;
}

.products__brand-logo {
	display: block;
	height: auto;
	width: 100%;
}

.products__brand--noritz {
	width: 4.875rem;
}

.products__brand--rinnai {
	width: 3.75rem;
}

.products__brand--hitachi {
	width: 4rem;
}

.products__brand--mitsubishi {
	width: 5rem;
}

.products__brand--toshiba {
	width: 4rem;
}

.products__brand--paloma {
	width: 4.375rem;
}

.products__model {
	font-size: 0.8125rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.01em;
	line-height: 1.3;
	margin-bottom: 0.625rem;
	margin-top: 0.25rem;
	word-break: break-all;
}

.products__model small {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: var(--font-weight-bold);
	margin-top: 0.125rem;
}

.products__main {
	align-items: center;
	display: grid;
	gap: 0.25rem;
	grid-template-columns: 1fr auto;
	margin-top: 0.375rem;
	position: relative;
}

.products__spec {
	display: flex;
	flex-direction: column;
	font-size: 0.625rem;
	font-weight: var(--font-weight-medium);
	gap: 0.125rem;
	line-height: 1.4;
}

.products__spec li {
	padding-left: 0.5rem;
	position: relative;
}

.products__spec li::before {
	content: "・";
	left: -0.125rem;
	position: absolute;
}

.products__photo {
	flex-shrink: 0;
	position: relative;
	width: 4.375rem;
}

.products__img {
	-o-object-fit: contain;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.products__badge {
	align-content: center;
	align-items: center;
	aspect-ratio: 1/1;
	background-color: var(--main-red);
	border-radius: 50%;
	color: #fff700;
	display: flex;
	flex-wrap: wrap;
	font-weight: var(--font-weight-bold);
	gap: 0.0625rem;
	justify-content: center;
	line-height: 1;
	position: absolute;
	right: -0.25rem;
	text-align: center;
	top: -1.375rem;
	width: 2.5rem;
	z-index: 2;
}

.products__badge-num {
	font-size: 0.9375rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.01em;
}

.products__badge-unit {
	align-self: flex-end;
	font-size: 0.5625rem;
	margin-top: 0.125rem;
}

.products__badge-off {
	color: var(--white);
	font-size: 0.5625rem;
	letter-spacing: 0.04em;
	width: 100%;
}

.products__price-num {
	font-family: var(--font-family-num);
	font-weight: var(--font-weight-bold);
}

.products__price-normal {
	font-size: 0.5625rem;
	font-weight: var(--font-weight-medium);
	line-height: 1.3;
	margin-top: auto;
	padding-top: 0.375rem;
}

.products__price-normal .products__price-num {
	font-size: 0.75rem;
	margin-inline: 0.125rem;
}

.products__price-normal small {
	font-size: 0.5rem;
	margin-left: 0.0625rem;
}

.products__price-sale {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	margin-top: 0.25rem;
}

.products__price-sale-head {
	align-items: center;
	display: flex;
}

.products__price-sale-label {
	color: #ff0000;
	font-size: 0.75rem;
	font-weight: var(--font-weight-bold);
}

.products__price-arrow {
	background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 30' fill='%23ff0000'%3E%3Cpath d='M5 0 L5 18 L0 18 L12 30 L24 18 L19 18 L19 0 Z'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	height: 0.875rem;
	margin-left: 0.875rem;
	width: 0.75rem;
}

.products__price-amount {
	background-color: #fff700;
	color: #ff0000;
	display: block;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	margin-top: 0.25rem;
	padding-block: 0;
	padding-inline: 0.25rem;
	text-align: left;
	white-space: nowrap;
	width: 100%;
}

.products__price-amount .products__price-num {
	font-size: 1.875rem;
	letter-spacing: -0.02em;
}

.products__price-amount small {
	color: var(--text-black);
	font-size: 0.5625rem;
	font-weight: var(--font-weight-semibold);
	margin-left: 0.0625rem;
}

.products__cta {
	align-items: center;
	background-color: var(--section-color);
	border-radius: 0.25rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
	color: var(--white);
	display: flex;
	font-size: 0.6875rem;
	font-weight: var(--font-weight-bold);
	gap: 0.375rem;
	justify-content: center;
	margin-top: 0.5rem;
	padding-block: 0.4375rem;
}

.products__cta-arrow {
	flex-shrink: 0;
	height: 0.625rem;
	position: relative;
	width: 0.625rem;
}

.products__cta-arrow::before {
	border-radius: 0.0625rem;
	border-right: 2px solid var(--white);
	border-top: 2px solid var(--white);
	content: "";
	height: 0.375rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-65%, -50%) rotate(45deg);
	width: 0.375rem;
}

.products__soldout {
	background-color: var(--white);
	border: 2px solid #ff0000;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
	color: #ff0000;
	display: none;
	font-size: 0.875rem;
	font-weight: var(--font-weight-black);
	left: 50%;
	letter-spacing: 0.08em;
	padding: 0.25rem 0.875rem;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-4deg);
	white-space: nowrap;
	z-index: 5;
}

.products__card--soldout {
	pointer-events: none;
}

.products__card--soldout .products__brand-logo,
.products__card--soldout .products__category,
.products__card--soldout .products__model,
.products__card--soldout .products__spec,
.products__card--soldout .products__img,
.products__card--soldout .products__badge,
.products__card--soldout .products__price-normal,
.products__card--soldout .products__price-arrow,
.products__card--soldout .products__sale-label,
.products__card--soldout .products__price-simple {
	filter: grayscale(1);
	opacity: 0.5;
}

.products__card--soldout .products__price-sale-label {
	color: #999;
}

.products__card--soldout .products__price-amount {
	background-color: #e0e0e0;
	color: #999;
}

.products__card--soldout .products__price-amount small {
	color: #999;
}

.products__card--soldout .products__cta {
	background-color: #999;
	box-shadow: none;
}

.products__card--soldout .products__soldout {
	display: block;
}

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

.products__card--simple .products__brand {
	justify-content: center;
	margin-inline: auto;
	width: 5.625rem;
}

.products__card--simple .products__model {
	margin-bottom: 0.625rem;
	text-align: center;
}

.products--gas .products__card--simple .products__model {
	font-size: 0.9375rem;
}

.products__sale-label {
	background-color: var(--main-red);
	border-radius: 0.125rem;
	color: var(--white);
	display: block;
	font-size: 0.8125rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.06em;
	margin: auto auto 0;
	padding: 0.125rem 0.875rem;
	width: -moz-fit-content;
	width: fit-content;
}

.products__price-simple {
	color: #ff0000;
	font-size: 0.75rem;
	font-weight: var(--font-weight-bold);
	line-height: 1.1;
	margin-top: 0.375rem;
}

.products__price-simple .products__price-num {
	font-size: 2.5rem;
	letter-spacing: -0.01em;
	margin-right: 0.125rem;
}

.purchase-notice {
	padding-bottom: 1.25rem;
	padding-inline: var(--padding-inline);
}

.purchase-notice__inner {
	background-color: #FEFAE9;
	border-radius: 0.8125rem;
	padding: 1rem 1rem 0;
	text-align: center;
}

.purchase-notice__img {
	display: block;
	margin-inline: auto;
	max-width: 31.25rem;
	width: 100%;
}

.purchase-notice__img img {
	display: block;
	height: auto;
	width: 100%;
}

.float-banner {
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	z-index: var(--z-index-to-top);
}

.float-banner__img {
	height: auto;
	width: 100%;
}

.float-banner__pc .float-banner__img {
	aspect-ratio: 2846/200;
}

.float-banner__sp .float-banner__img {
	aspect-ratio: 878/311;
}

.footer {
	padding-bottom: 35.4214123007vw;
}

.footer__inner {
	margin-inline: auto;
	padding-inline: 0;
}

.footer-img-pc {
	height: auto;
	width: 100%;
}

.footer-img-sp {
	height: auto;
	width: 100%;
}

.footer__features {
	background-color: var(--white);
	border-top: 1px solid var(--main-color);
	margin-top: 1.25rem;
	padding: 0.625rem var(--padding-inline) 1.25rem;
}

.footer__features-list {
	display: grid;
	gap: 0.75rem 0.5rem;
	grid-template-columns: 1fr 1fr;
}

.footer__features-item {
	align-items: center;
	color: var(--main-color);
	display: flex;
	font-size: 0.875rem;
	font-weight: var(--font-weight-medium);
	gap: 0.5rem;
	justify-content: center;
	letter-spacing: 0.02em;
}

.footer__features-icon {
	-o-object-fit: contain;
	flex-shrink: 0;
	height: auto;
	object-fit: contain;
}

.footer__features-icon--consult {
	width: 1.5rem;
}

.footer__features-icon--same-day {
	width: 1.5rem;
}

.footer__features-icon--warranty {
	width: 1.375rem;
}

.footer__features-icon--credit {
	width: 1.75rem;
}

.header {
	background-color: var(--white);
	border-bottom: 1px solid var(--main-color);
	display: block;
	padding-block: 0.375rem;
	width: 100%;
}

.header__inner {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	height: 4.875rem;
	padding-inline: 0.875rem;
	padding-inline: 1.5rem;
	width: 100%;
}

.header__logo {
	display: block;
	flex-shrink: 0;
}

.header__logo-name {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	line-height: 1;
}

.header__logo-en {
	color: var(--main-color);
	font-size: 2.375rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.02em;
}

.header__logo-jp {
	color: var(--main-color);
	display: inline-block;
	font-size: 1.125rem;
	font-weight: var(--font-weight-bold);
	margin-top: 0.3125rem;
}

.header__logo-tagline {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin-top: 0.375rem;
}

.header__contact {
	flex-shrink: 0;
	margin-left: auto;
}

.header__contact-info {
	font-size: 0.8125rem;
	font-weight: var(--font-weight-semibold);
	line-height: 1;
}

.header__contact-info-accent {
	color: var(--main-color);
}

.header__tel {
	align-items: center;
	display: flex;
	gap: 0.625rem;
}

.header__tel-body {
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
}

.header__tel-icon {
	aspect-ratio: 414/402;
	flex-shrink: 0;
	height: auto;
	width: 2.625rem;
}

.header__tel-num {
	color: var(--main-color);
	font-size: 2.125rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.02em;
	line-height: 1;
}

.header__btns {
	align-items: center;
	display: flex;
	flex-shrink: 0;
	gap: 0.625rem;
}

.header__btn {
	align-items: center;
	border-radius: 0.375rem;
	color: var(--white);
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	min-height: 3.625rem;
	padding: 0.5rem 0.75rem 0.5rem 0.3125rem;
	transition: opacity var(--duration-base);
	width: 11.625rem;
}

.header__btn--web {
	background-image: linear-gradient(to bottom, #ff9732 0%, #f47d18 55%, #E0660E 100%);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.header__btn--line {
	background-image: linear-gradient(to bottom, #61cf25 0%, #0db723 55%, #0DA82C 100%);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
}

.header__btn-icon {
	flex-shrink: 0;
	height: auto;
	position: relative;
	top: -0.25rem;
	width: 2.0625rem;
}

.header__btn-text {
	display: flex;
	flex-direction: column;
	gap: 0.4375rem;
	line-height: 1;
}

.header__btn-main {
	font-size: 1.125rem;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0.02em;
}

.header__btn-sub {
	font-size: 0.8125rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.02em;
}

@media (any-hover: hover) {

a:hover {
	cursor: pointer;
}

.category__card:hover {
	opacity: 0.85;
}

.products__card:hover {
	opacity: 0.7;
}

.header__btn:hover {
	opacity: 0.85;
}

}

@media (min-width: 767px) {

:root {
	--padding-inline: 1.875rem;
	--section-padding-block: calc(100 / 16 * 1rem);
}

}

@media screen and (min-width: 768px) {

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

.u-mobile-inline {
	display: none;
}

html {
	font-size: 1.1111111111vw;
}

.category {
	padding-block: 2.5rem 1.25rem;
}

.category__inner {
	border-radius: 0.625rem;
	padding: 0.875rem 1.375rem;
}

.category__title {
	font-size: 1.125rem;
	margin-bottom: 0.875rem;
}

.category__list {
	flex-direction: row;
	gap: 0.875rem;
}

.category__item {
	flex: 1;
}

.category__card {
	gap: 1.25rem;
	padding: 0.5rem 1.25rem;
}

.category__icon-wrap {
	min-width: 6.5625rem;
}

.category__icon--heater {
	width: 5rem;
}

.category__icon--eco {
	width: 5rem;
}

.category__label {
	font-size: 1.125rem;
}

.category__label-name {
	font-size: 1.375rem;
}

.category__arrow {
	height: 1.4375rem;
	width: 1.4375rem;
}

.category__arrow::before {
	border-radius: 0.125rem;
	border-right-width: 3px;
	border-top-width: 3px;
	height: 0.8125rem;
	width: 0.8125rem;
}

.inner {
	max-width: 70.625rem;
	padding-inline: 0.9375rem;
}

.mv__img-sp {
	display: none;
}

.products {
	padding-block: 1.5rem;
	padding-inline: var(--padding-inline);
}

.products__frame {
	border-radius: 0.875rem;
	border-width: 6px;
	padding: 1.375rem 1.875rem 1.75rem;
	padding-top: 0;
}

.products__title {
	border-radius: 0.625rem 0 1.375rem 0;
	font-size: 1.875rem;
	padding: 0.375rem 2.625rem 0.75rem 2rem;
}

.products__lead {
	font-size: 1.0625rem;
	padding-left: 5rem;
}

.products__list {
	row-gap: 2.25rem;
}

.products__list + .products__list {
	margin-top: 2.25rem;
}

.products__list--cols-4 {
	grid-template-columns: repeat(4, 1fr);
}

.products__list--cols-5 {
	grid-template-columns: repeat(5, 1fr);
}

.products__list--cols-4 .products__item {
	border-right: 1px solid #ccc;
}

.products__list--cols-4 .products__item:nth-child(2n) {
	border-right: 1px solid #ccc;
}

.products__list--cols-4 .products__item:nth-child(4n) {
	border-right: none;
}

.products__list--cols-5 .products__item {
	border-right: 1px solid #ccc;
}

.products__list--cols-5 .products__item:nth-child(2n) {
	border-right: 1px solid #ccc;
}

.products__list--cols-5 .products__item:nth-child(5n) {
	border-right: none;
}

.products__list--cols-4 .products__card {
	padding: 0.875rem 1.75rem 0.75rem;
}

.products__list--cols-4 .products__item:nth-child(2n-1) > .products__card {
	padding-left: 1.75rem;
}

.products__list--cols-4 .products__item:nth-child(2n) > .products__card {
	padding-right: 1.75rem;
}

.products__list--cols-4 .products__item:nth-child(4n-3) > .products__card {
	padding-left: 0;
}

.products__list--cols-4 .products__item:nth-child(4n) > .products__card {
	padding-right: 0;
}

.products__list--cols-5 .products__card {
	padding: 0.75rem 1rem 0.625rem;
}

.products__list--cols-5 .products__item:nth-child(2n-1) > .products__card {
	padding-left: 1rem;
}

.products__list--cols-5 .products__item:nth-child(2n) > .products__card {
	padding-right: 1rem;
}

.products__list--cols-5 .products__item:nth-child(5n-4) > .products__card {
	padding-left: 0;
}

.products__list--cols-5 .products__item:nth-child(5n) > .products__card {
	padding-right: 0;
}

.products__brand {
	min-height: 1.75rem;
}

.products__brand--noritz {
	width: 6.5625rem;
}

.products__brand--rinnai {
	width: 5.3125rem;
}

.products__brand--hitachi {
	width: 5.3125rem;
}

.products__brand--mitsubishi {
	width: 6.875rem;
}

.products__brand--toshiba {
	width: 5.5rem;
}

.products__brand--paloma {
	width: 5.9375rem;
}

.products__model {
	font-size: 0.9375rem;
	word-break: normal;
}

.products__model small {
	font-size: 0.75rem;
}

.products__main {
	gap: 0.375rem;
	margin-top: 0.5rem;
}

.products__spec {
	font-size: 0.75rem;
	gap: 0.1875rem;
}

.products__photo {
	width: 6.875rem;
}

.products__badge {
	right: -0.25rem;
	top: -2.875rem;
	width: 3.75rem;
}

.products__badge-num {
	font-size: 1.375rem;
}

.products__badge-unit {
	font-size: 0.75rem;
}

.products__badge-off {
	font-size: 0.875rem;
}

.products__price-normal {
	font-size: 0.8125rem;
	padding-top: 0.625rem;
}

.products__price-normal .products__price-num {
	font-size: 1.125rem;
}

.products__price-normal small {
	font-size: 0.75rem;
}

.products__price-sale-label {
	font-size: 0.875rem;
}

.products__price-arrow {
	height: 1.25rem;
	margin-left: 1.25rem;
	width: 1rem;
}

.products__price-amount {
	margin-top: 0.5rem;
	padding-inline: 0.5rem;
}

.products__price-amount .products__price-num {
	font-size: 3.25rem;
}

.products__price-amount small {
	font-size: 0.875rem;
}

.products__cta {
	font-size: 0.8125rem;
	margin-top: 0.625rem;
	padding-block: 0.5625rem;
}

.products__soldout {
	font-size: 1.5rem;
	padding: 0.25rem 1.25rem;
}

.products__list--cols-5 .products__model {
	font-size: 0.8125rem;
}

.products__list--cols-5 .products__spec {
	font-size: 0.6875rem;
}

.products__list--cols-5 .products__photo {
	width: 5.375rem;
}

.products__list--cols-5 .products__badge {
	top: -2.375rem;
	width: 3.125rem;
}

.products__list--cols-5 .products__badge-num {
	font-size: 1.125rem;
}

.products__list--cols-5 .products__badge-unit {
	font-size: 0.625rem;
}

.products__list--cols-5 .products__badge-off {
	font-size: 0.75rem;
}

.products__list--cols-5 .products__price-normal {
	font-size: 0.6875rem;
}

.products__list--cols-5 .products__price-normal .products__price-num {
	font-size: 0.9375rem;
}

.products__list--cols-5 .products__price-normal small {
	font-size: 0.625rem;
}

.products__list--cols-5 .products__price-amount .products__price-num {
	font-size: 2.5rem;
}

.products__list--cols-5 .products__price-amount small {
	font-size: 0.75rem;
}

.products__card--simple .products__brand {
	width: 6.25rem;
}

.products--gas .products__card--simple .products__model {
	font-size: 1rem;
}

.products__sale-label {
	font-size: 0.8125rem;
	padding: 0.125rem 0.75rem;
}

.products__price-simple .products__price-num {
	font-size: 2.5rem;
}

.purchase-notice {
	padding-bottom: 1.875rem;
}

.purchase-notice__inner {
	background-color: #FDFAE4;
	border-radius: 1.25rem;
	padding: 1.25rem 1.25rem 0;
}

.purchase-notice__img {
	max-width: 51.25rem;
}

.float-banner__sp {
	display: none;
}

.footer {
	padding-bottom: 7.0274068869vw;
}

.footer__inner {
	padding-inline: calc(var(--padding-inline) - 0.625rem);
}

.footer-img-sp {
	display: none;
}

.footer__features-list {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	justify-content: center;
}

.footer__features-item {
	font-size: 0.9375rem;
	gap: 0.625rem;
}

.footer__features-icon--consult {
	width: 1.75rem;
}

.footer__features-icon--same-day {
	width: 1.75rem;
}

.footer__features-icon--warranty {
	width: 1.625rem;
}

.footer__features-icon--credit {
	width: 2rem;
}

}

@media (max-width: 767px) {

.mv__img-pc {
	display: none;
}

.products__header {
	flex-wrap: wrap;
	left: -0.625rem;
}

.products__lead {
	font-size: 0.625rem;
	padding-left: 1.25rem;
}

.float-banner__pc {
	display: none;
}

.footer-img-pc {
	display: none;
}

.header__inner {
	height: 3.25rem;
	padding-inline: 0.875rem;
}

.header__logo-en {
	font-size: 1.5rem;
}

.header__logo-jp {
	font-size: 0.875rem;
}

.header__logo-tagline {
	font-size: 0.625rem;
}

.header__contact {
	display: none;
}

.header__btns {
	display: none;
}

}

