@charset "utf-8";
body {
	font-family: 'Noto Sans JP', sans-serif;
	color: #2F2F2F;
	margin: 0;
	padding: 0;
	letter-spacing: 0.02em;
	font-feature-settings: "palt";
}
.pc{ display: block; }
.sp{ display: none; }

.ab-compare-page {
    background: #0A1224;
    color: #fff;
    padding: 0 0 40px 0;
}
.ab-compare-page .hero {
    width: 100%;
    position: relative;
}
.ab-compare-page .hero img {
    width: 100%;
}
.small-mark {
    font-size: 60%;
    vertical-align: super;
    font-weight: normal;
}
.scroll-indicator {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.scroll-text {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #fff;
}
.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(
        to bottom,
        #fff 0%,
        #fff 50%,
        transparent 50%,
        transparent 100%
    );
    background-size: 100% 200%;
    background-position: 0 100%;
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
    0%   { background-position: 0 100%; }
    100% { background-position: 0 -100%; }
}

.ab-compare-page .inner {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
}
.compare h1,
.items h2 {
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    margin: 20px 0 40px;
    line-height: 1em;
}
.lead {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
    line-height: 1.7;
    font-size: 26px;
    font-weight: bold;
}
.lead .big-font {
    font-size: 34px;
}
.lead-title-deco .small-font {
    font-size: 22px;
}
.lead-title-deco {
    position: relative;
}
.lead-title-deco::after {
    position: absolute;
    content: "";
    background-color: #C9A96E;
    width: 220px;
    height: 1px;
    top: 120%;
    left: 50%;
    transform: translateY(-120%) translateX(-50%);
}
.compare-head {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    flex-direction: column;
    gap: 25px;
}
.compare-head .image {
    width: 100%;
}
.compare-head .image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.compare-head .title {
    font-size: 32px;
    font-weight: 700;
}
.nav .compare-head .title {
    color: #007AFF;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.da .compare-head .title {
    color: #E61E6E;
    font-family: "Noto Sans JP";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.compare-table {
    width: 100%;
    --label-w: 132px;
}
.compare-row {
    display: grid;
    grid-template-columns: var(--label-w) minmax(0, 1fr) minmax(0, 1fr);
}
.compare-block.nav .compare-head { grid-column: 2; grid-row: 1; }
.compare-block.da  .compare-head { grid-column: 3; grid-row: 1; }

.compare-block.nav .list { grid-column: 1 / 3; }
.compare-block.da  .list { grid-column: 3; }

.compare-block.nav .list:nth-child(2) { grid-row: 2; }
.compare-block.nav .list:nth-child(3) { grid-row: 3; }
.compare-block.nav .list:nth-child(4) { grid-row: 4; }
.compare-block.nav .list:nth-child(5) { grid-row: 5; }
.compare-block.nav .list:nth-child(6) { grid-row: 6; display: flex; align-items: center; }
.compare-block.nav .list:nth-child(7) { grid-row: 7; }

.compare-block.da .list:nth-child(2) { grid-row: 2; }
.compare-block.da .list:nth-child(3) { grid-row: 3; }
.compare-block.da .list:nth-child(4) { grid-row: 4; }
.compare-block.da .list:nth-child(5) { grid-row: 5; }
.compare-block.da .list:nth-child(6) { grid-row: 6; }
.compare-block.da .list:nth-child(7) { grid-row: 7; }

.compare-block {
    display: contents;
}
.compare-block .list.head {
    border-top: none;
}
.compare-block .list {
    border-top: 1px solid rgba(255, 255, 255, .2);
    display: flex;
}
.compare-label {
    flex: 0 0 var(--label-w);
    box-sizing: border-box;
    padding: 20px 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #C9A96E;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-style: normal;
    line-height: normal;
}
.label-deco {
    position: relative;
}
.label-deco::after {
    position: absolute;
    content: "";
    background-color: #C9A96E;
    width: 30px;
    height: 2px;
    top: 120%;
    left: 50%;
    transform: translateY(-120%) translateX(-50%);
}
.compare-block.da .compare-label {
    display: none;
}
.compare-cell {
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
    padding: 20px 40px;
    line-height: 1.8;
    font-size: 20px;
}
.compare-cell p { margin-bottom: 6px; }
.compare-cell p:last-child { margin-bottom: 0; }
.compare-cell ul { padding-left: 1.2em; margin: 0; }
.compare-cell ul li { margin-bottom: 6px; }

.compare-cell p.text-deco {
    border-bottom: solid 1px #fff;
    display: inline-block;
}
.compare-cell .note {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    margin-top: 4px;
}
.store-search-wrap {
    display: flex;
    justify-content: center;
    padding: 20px 0 60px 0;
    background: #0A1224;
}
.store-search-inner {
    position: relative;
    padding-top: 14px;
    transition: transform 0.25s ease;
}
.store-search-inner:hover {
    transform: translateY(-4px);
}
.store-search-inner:hover .store-search-btn {
    box-shadow: 0 10px 24px rgba(255, 110, 0, 0.4);
}
.store-search-inner:hover .btn-label {
    filter: brightness(0.7);
}
.btn-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #FF6E00;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
    line-height: 1.2;
    z-index: 1;
    transition: filter 0.25s ease;
}
.store-search-btn {
    display: inline-flex;
    width: 374px;
    height: 65px;
    padding: 15.5px 40px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    border-radius: 8px;
    border: 2px solid #FF6E00;
    background: #FF6E00;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    box-sizing: border-box;
    transition: box-shadow 0.25s ease;
}
.store-search-btn .btn-icon {
    width: 22px;
    height: 22px;
}
.store-search-btn .btn-arrow {
    font-size: 14px;
}
.item-title-deco {
    position: relative;
}
.item-title-deco::after {
    position: absolute;
    content: "";
    background-color: #C9A96E;
    width: 220px;
    height: 1px;
    top: 120%;
    left: 50%;
    transform: translateY(-120%) translateX(-50%);
}
.recommend {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    grid-template-rows: auto auto repeat(3, auto);
    gap: 0 25px;
    padding: 20px 0 0 0;
    align-items: stretch;
}
.recommend .card .card-title {
    text-align: center;
    margin-bottom: 1em;
    height: 25px;
    font-size: 20px;
    font-weight: bold;
}
.recommend .card .card-text {
    line-height: 1.5em;
    font-size: 24px;
    min-height: 4.5em;
    font-weight: bold;
}
.recommend .card .card-caption {
    line-height: 1.5em;
    text-align: center;
    min-height: 60px;
    font-size: 20px;
}
.recommend .card .price {
    margin: 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.price-label {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.price-net {
    font-size: 14px;
    position: relative;
    top: -.3em;
}
.price-tax {
    font-size: 24px;
    font-weight: bold;
}
.price-num {
    font-size: 53px;
    font-weight: 700;
}
.price-num-small {
    font-size: 34px;
}
.detail {
    text-align: center;
    font-size: 20px;
    width: 100%;
}
.detail span {
    display: inline-block;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}
.recommend .card {
    position: relative;
    transition: box-shadow 0.4s ease, background 0.4s ease;
}
.recommend .card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #fff;
    text-decoration: none;
}
.recommend .card-bottom {
    margin-top: auto;
}
.recommend .card-link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}
.recommend .card:hover {
    box-shadow: 0 -2px 6px 0 rgba(0, 0, 0, 0.15) inset, 0 2px 4px 0 rgba(255, 255, 255, 0.40) inset, 0 4px 12px 0 rgba(0, 0, 0, 0.25), 0 20px 40px -8px rgba(0, 0, 0, 0.50), 0 0 40px 10px rgba(255, 255, 255, 0.15);
}

.recommend .nav,
.recommend .da {
    display: contents;
}
.recommend .nav h3    { grid-column: 1; grid-row: 1; }
.recommend .nav h4    { grid-column: 1; grid-row: 2; }
.recommend .nav .card:nth-of-type(1) { grid-column: 1; grid-row: 3; align-self: stretch; }
.recommend .nav .card:nth-of-type(2) { grid-column: 1; grid-row: 4; align-self: stretch; }
.recommend .nav .card:nth-of-type(3) { grid-column: 1; grid-row: 5; align-self: stretch; }
.recommend .da h3     { grid-column: 3; grid-row: 1; }
.recommend .da h4     { grid-column: 3; grid-row: 2; }
.recommend .da .card:nth-of-type(1)  { grid-column: 3; grid-row: 3; align-self: stretch; }
.recommend .da .card:nth-of-type(2)  { grid-column: 3; grid-row: 4; align-self: stretch; }
.recommend .da .card:nth-of-type(3)  { grid-column: 3; grid-row: 5; align-self: stretch; }
.recommend .nav .card {
    border-radius: 20px;
    border: 1px solid #007AFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(204, 217, 255, 0.10) 100%);
    box-shadow: 0 -2px 6px 0 rgba(0, 0, 0, 0.15) inset, 0 2px 4px 0 rgba(255, 255, 255, 0.40) inset, 0 4px 12px 0 rgba(0, 0, 0, 0.25), 0 20px 40px -8px rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(12px);
    margin-top: 30px;
}
.recommend .nav h3 {
    color: #007AFF;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.recommend .nav h4 {
    color: #007AFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.recommend .da .card {
    border-radius: 20px;
    border: 1px solid #E61E6E;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(204, 217, 255, 0.10) 100%);
    box-shadow: 0 -2px 6px 0 rgba(0, 0, 0, 0.15) inset, 0 2px 4px 0 rgba(255, 255, 255, 0.40) inset, 0 4px 12px 0 rgba(0, 0, 0, 0.25), 0 20px 40px -8px rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(12px);
    margin-top: 30px;
}
.recommend .da h3 {
    color: #E61E6E;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}
.recommend .da h4 {
    color: #E61E6E;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.recommend .line {
    grid-column: 2;
    grid-row: 1 / 6;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(0, 209, 255, 0.00) 0%, #00D1FF 50%, rgba(0, 209, 255, 0.00) 100%);
    box-shadow: 0 0 20px 0 #00D1FF;
}
.card {
    border: 1px solid #6c7aa5;
    border-radius: 14px;
    padding: 35px 25px 45px 25px;
    background: linear-gradient(#34415f, #1f2944);
}
.card h3 {
    text-align: center;
}
.ph {
    display: flex;
    align-items: center;
    justify-content: center;
	margin: 20px 0;
}
.ph img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 767px) {
	.pc { display: none; }
	.sp { display: block; }

	.ab-compare-page {
		padding: 0 0 2rem 0;
	}
	.ab-compare-page .inner {
		padding: 1rem 1rem 0 1rem;
	}
	.ab-compare-page .hero {
		background-position: center top;
	}
	.lead {
		font-size: 0.875rem;
		margin: 0 auto 1.25rem;
	}
	.lead .big-font {
		font-size: 1.125rem;
	}
	.lead-title-deco::after {
		width: 30%;
		top: 110%;
		transform: translateY(-110%) translateX(-50%);
	}
	.compare h1,
	.items h2 {
		font-size: 1.5rem;
		margin: 1rem 0 1rem;
		line-height: 1.3em;
	}
	.compare-table {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.compare-table .compare-row {
		display: grid;
		grid-template-columns: var(--label-w) minmax(0, 1fr) minmax(0, 1fr);
		min-width: 640px;
	}
	.compare-head {
		gap: 0.75rem;
		padding: 0;
	}
	.nav .compare-head .title,
	.da .compare-head .title {
		font-size: 1.3rem;
		line-height: 1.4;
	}
	.compare-label {
		font-size: 0.9rem;
		padding: 1rem 0.625rem;
	}
	.compare-cell {
		font-size: 0.8125rem;
		padding: 1rem 0.875rem;
		line-height: 1.7;
	}
	.compare-cell .note {
		font-size: 0.6875rem;
	}
	.store-search-wrap {
		padding: 1rem 0 1.5rem 0;
	}
	.store-search-inner {
		width: 90%;
		max-width: 22rem;
		padding-top: 0.875rem;
	}
	.btn-label {
		font-size: 0.75rem;
		padding: 0.3rem 1rem;
	}
	.store-search-btn {
		width: 100%;
		height: 3.25rem;
		padding: 0.875rem 1rem;
		font-size: 1.2rem;
		gap: 0.625rem;
		border-radius: 0.5rem;
	}
	.store-search-btn .btn-icon {
		width: 1.25rem;
		height: 1.25rem;
	}
	.store-search-btn .btn-arrow {
		font-size: 0.9rem;
	}
	.item-title-deco::after {
		width: 8rem;
	}
	.recommend {
		display: block;
		gap: 0;
		padding: 1.25rem 0 0 0;
	}
	.recommend .line {
		display: none;
	}
	.recommend .nav,
	.recommend .da {
		display: block;
		width: 100%;
		margin-bottom: 2rem;
	}
	.recommend .nav h3,
	.recommend .da h3 {
		font-size: 1.8rem;
	}
	.recommend .nav h4,
	.recommend .da h4 {
		font-size: 0.875rem;
		margin-bottom: 0.75rem;
	}
	.card {
		border-radius: 0.875rem;
		padding: 1.5rem 1rem 2rem 1rem;
	}
	.recommend .nav .card,
	.recommend .da .card {
		margin-top: 1rem;
		border-radius: 1rem;
	}
	.recommend .card .card-title {
		height: auto;
		font-size: 1.2rem;
		margin-bottom: 0.5rem;
	}
	.recommend .card .card-text {
		height: auto;
		min-height: 0;
		font-size: 1.5rem;
		line-height: 1.5em;
		margin-top: 1rem;
	}
	.recommend .card .card-caption {
		font-size: 1.2rem;
		height: auto;
		min-height: 0;
		line-height: 1.6;
	}
	.recommend .card .price {
		margin: 1rem auto 1.6rem auto;
		gap: 0.375rem;
	}
	.price-label {
		align-items: flex-end;
	}
	.price-net {
		font-size: 0.75rem;
	}
	.price-tax {
		font-size: 1.3rem;
	}
	.price-num {
		font-size: 3.2rem;
	}
	.price-num-small {
		font-size: 1.5rem;
	}
	.detail {
		font-size: 1.2rem;
	}
	.detail span {
		padding-bottom: 0.25rem;
	}
	.ph {
		height: auto;
	}
	.grid {
		grid-template-columns: 1fr;
	}
}



