@charset "UTF-8";
:root {
	--base: #6491c5;
	--base-dark: #1A3161;
	--base-mid: #3a6099;
	--gold: #c8a23a;
	--gold-light: #f0c84a;
	--line-green: #06C755;
	--line-dark: #04A245;
	--dark: #1a1a1a;
	--mid: #333;
	--gray: #666;
	--light-gray: #f5f5f5;
	--white: #fff;
	--fs-body: clamp(0.875rem, 0.85rem + 0.2vw, 1rem);
	--fs-small: clamp(0.75rem, 0.75rem + 0.15vw, .8rem);
	--fs-regular: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
	--fs-medium: clamp(1.2rem, 1rem + 1vw, 2rem);
	--fs-large: clamp(2rem, 1.5rem + 2vw, 3rem);
}

.pcOnly {
	display: inherit;
}
@media screen and (max-width: 640px) {
	.pcOnly {
		display: none;
	}
}

.spOnly {
	display: none;
}
@media screen and (max-width: 640px) {
	.spOnly {
		display: inherit;
	}
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	background: #f0f4f8;
	color: var(--dark);
	font-size: var(--fs-body);
	line-height: 1.7;
}

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

/* ===== HEADER ===== */
header {
	background: var(--base-dark);
	padding: 10px 16px;
	text-align: center;
	-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.site-logo {
	font-family: "Noto Serif JP", serif;
	font-size: 15px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: 0.05em;
}

.site-logo span {
	color: var(--gold-light);
}

/* ===== HERO ===== */
.mv_wrap {
	margin: 0 auto 3em;
}
.mv_wrap img {
	width: 100%;
	height: 414px;
	max-width: 1926px;
	-o-object-fit: cover;
	   object-fit: cover;
	margin: 0 auto;
	display: block;
}
@media (max-width: 640px) {
	.mv_wrap img {
		aspect-ratio: 610/621;
		height: auto;
	}
}

/* ===== GIFT BOX ===== */
.gift-section {
	background: var(--white);
	max-width: 920px;
	margin: 0 auto 3em;
	border-radius: 16px;
	-webkit-box-shadow: 0 8px 40px rgba(26, 49, 97, 0.18);
	        box-shadow: 0 8px 40px rgba(26, 49, 97, 0.18);
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding: 1em;
}
.gift-section .gift-title {
	padding: 1em;
	text-align: center;
}
.gift-section .gift-title img {
	max-width: 100%;
}

.gift-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 1em;
}
@media (max-width: 640px) {
	.gift-list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 0.5em;
	}
}

.gift-item {
	width: calc(50% - 0.5em);
}
@media (max-width: 640px) {
	.gift-item {
		width: 100%;
	}
}
.gift-item img {
	width: 100%;
}

.gift-num {
	background: var(--base-dark);
	color: var(--white);
	font-size: var(--fs-small);
	font-weight: 900;
	padding: 2px 8px;
	border-radius: 4px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	letter-spacing: 0.05em;
	margin-top: 1px;
}

.gift-text {
	font-weight: 700;
	color: var(--dark);
	line-height: 1.5;
}

/* ===== SOLVE MESSAGE ===== */
.solve-section {
	padding: 0 14px 0;
}

.solve-card {
	background: linear-gradient(135deg, #fff8e8 0%, #fffdf0 100%);
	border: 2px solid var(--gold);
	border-radius: 12px;
	padding: 20px 18px;
	text-align: center;
	max-width: 720px;
	margin: 4px auto 0;
	-webkit-box-shadow: 0 4px 20px rgba(200, 162, 58, 0.15);
	        box-shadow: 0 4px 20px rgba(200, 162, 58, 0.15);
}

.solve-icon {
	font-size: 36px;
	margin-bottom: 10px;
}

.solve-title {
	font-family: "Noto Serif JP", serif;
	font-size: var(--fs-regular);
	font-weight: 700;
	color: var(--base-dark);
	line-height: 1.6;
	margin-bottom: 12px;
}

.solve-title .gold {
	color: var(--gold);
}

.solve-body {
	color: var(--mid);
	line-height: 1.9;
}

.solve-body strong {
	color: var(--base-dark);
	font-weight: 700;
}

/* ===== CHECK LIST ===== */
.check-section {
	padding: 28px 14px;
}

.check-label {
	text-align: center;
	font-size: var(--fs-regular);
	font-weight: 700;
	color: var(--base-dark);
	margin-bottom: 14px;
	letter-spacing: 0.05em;
}

.check-label::before,
.check-label::after {
	content: "　——　";
	color: var(--base);
	opacity: 0.5;
}

.check-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 920px;
	margin: 0 auto;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.check-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 32%;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px;
	background: var(--white);
	border-radius: 8px;
	padding: 11px 14px;
	-webkit-box-shadow: 0 2px 8px rgba(26, 49, 97, 0.08);
	        box-shadow: 0 2px 8px rgba(26, 49, 97, 0.08);
	font-weight: 700;
	color: var(--dark);
}
@media (max-width: 380px) {
	.check-item {
		width: 100%;
		margin-bottom: 1em;
	}
	.check-item:last-of-type {
		margin-bottom: 0;
	}
}
.check-item figure figcaption {
	text-align: center;
}
.check-item figure img {
	width: 100%;
}

.cv-area {
	position: relative;
	width: 100%;
	background: #000 url(../img/cv-area-bg.jpg) 50% 50%/cover no-repeat;
	font-family: "Noto Serif JP", serif;
	font-weight: bold;
	color: #fff;
}
.cv-area .inner {
	width: 100%;
	max-width: 720px;
	margin: auto;
	padding: 2.5rem;
}
@media (max-width: 640px) {
	.cv-area .inner {
		padding: 1em;
	}
}
.cv-area .txt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.cv-area .txt > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	text-align: center;
	margin-bottom: 1em;
}
.cv-area .txt > div:before, .cv-area .txt > div:after {
	content: "＼";
	display: block;
	margin: 0.3125rem 0.5rem 0;
	font-size: 1.2em;
}
.cv-area .txt > div:after {
	content: "／";
}
.cv-area .btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: 1.875rem;
	font-weight: 400;
	text-align: center;
}
@media (max-width: 640px) {
	.cv-area .btn {
		font-size: 4.8vw;
	}
}
.cv-area .btn a {
	width: 100%;
	max-width: 36em;
	padding: 1.5625rem 1.25rem;
	background: #06C755;
	color: #fff;
	position: relative;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	border: 2px solid #06C755;
	border-radius: 8px 8px 8px 8px;
	-webkit-box-shadow: 0 9px 0 #048b3b, 0 9px 25px rgba(0, 0, 0, 0.7);
	        box-shadow: 0 9px 0 #048b3b, 0 9px 25px rgba(0, 0, 0, 0.7);
}
.cv-area .btn a:hover {
	text-decoration: none;
	background: #fff;
	color: #06C755;
	-webkit-box-shadow: 0px 0px 0 #048b3b;
	        box-shadow: 0px 0px 0 #048b3b;
	-webkit-transform: translateY(7px);
	        transform: translateY(7px);
}
.cv-area .btn a:hover span {
	border-color: #06C755;
}
.cv-area .btn a:hover span:after {
	background: #06C755;
}
.cv-area .btn a span {
	position: absolute;
	right: 10%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	width: 3.125rem;
	height: 0.625rem;
	overflow: hidden;
	border-bottom: 1px solid #fff;
}
@media (max-width: 640px) {
	.cv-area .btn a span {
		right: 1em;
		width: 1.5em;
	}
}
.cv-area .btn a span:after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 1.875rem;
	height: 0.0625rem;
	background: #fff;
	-webkit-transform-origin: right bottom;
	        transform-origin: right bottom;
	-webkit-transform: rotate(25deg);
	        transform: rotate(25deg);
}
.cv-area .cv-text {
	font-size: 1rem;
	text-align: center;
	margin-top: 1em;
}

/* ===== LINE CTA ===== */
.cta-section {
	padding: 28px 14px 40px;
	text-align: center;
	max-width: 720px;
	margin: auto;
}
@media (max-width: 640px) {
	.cta-section {
		overflow: hidden;
	}
}
.cta-section .cta-title {
	margin: 2em 0;
	padding: 1em;
}
.cta-section .cta-title img {
	max-width: 100%;
}

.cta-label {
	color: var(--gray);
	margin-bottom: 14px;
	line-height: 1.7;
}

.cta-label strong {
	color: var(--base-dark);
	display: block;
	font-size: var(--fs-regular);
	font-weight: 900;
	margin-bottom: 4px;
}

.cta-btn {
	max-width: 720px;
	margin: 0 auto 60px;
	-webkit-animation-duration: 1.5s;
	        animation-duration: 1.5s;
	-webkit-animation-name: pulse;
	        animation-name: pulse;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	position: relative;
}
.cta-btn a {
	display: block;
}
.cta-btn a img {
	width: 100%;
}
.cta-btn::after {
	content: "";
	display: block;
	background-image: url(../img/hand.png);
	background-size: contain;
	width: 131px;
	height: 178px;
	position: absolute;
	right: -70px;
	bottom: -70px;
}
@media (max-width: 640px) {
	.cta-btn::after {
		width: 66px;
		height: 89px;
		right: -35px;
		bottom: -35px;
	}
}

.line-logo {
	width: 38px;
	height: 38px;
	background: var(--white);
	border-radius: 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.line-logo svg {
	width: 26px;
	height: 26px;
}

.btn-line-text {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}

.btn-line-sub {
	display: block;
	font-size: 11px;
	font-weight: 500;
	opacity: 0.9;
	line-height: 1.4;
}

.btn-line-main {
	display: block;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.35;
}

.btn-line-arrow {
	font-size: 18px;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	opacity: 0.85;
}

@-webkit-keyframes pulse-line {
	0%, 100% {
		-webkit-box-shadow: 0 6px 28px rgba(6, 199, 85, 0.45), 0 2px 8px rgba(0, 0, 0, 0.1);
		        box-shadow: 0 6px 28px rgba(6, 199, 85, 0.45), 0 2px 8px rgba(0, 0, 0, 0.1);
	}
	50% {
		-webkit-box-shadow: 0 8px 38px rgba(6, 199, 85, 0.65), 0 2px 10px rgba(0, 0, 0, 0.12);
		        box-shadow: 0 8px 38px rgba(6, 199, 85, 0.65), 0 2px 10px rgba(0, 0, 0, 0.12);
	}
}

@keyframes pulse-line {
	0%, 100% {
		-webkit-box-shadow: 0 6px 28px rgba(6, 199, 85, 0.45), 0 2px 8px rgba(0, 0, 0, 0.1);
		        box-shadow: 0 6px 28px rgba(6, 199, 85, 0.45), 0 2px 8px rgba(0, 0, 0, 0.1);
	}
	50% {
		-webkit-box-shadow: 0 8px 38px rgba(6, 199, 85, 0.65), 0 2px 10px rgba(0, 0, 0, 0.12);
		        box-shadow: 0 8px 38px rgba(6, 199, 85, 0.65), 0 2px 10px rgba(0, 0, 0, 0.12);
	}
}
.btn-line {
	-webkit-animation: pulse-line 2.5s ease-in-out infinite;
	        animation: pulse-line 2.5s ease-in-out infinite;
}

.cta-note {
	font-size: var(--fs-small);
	color: var(--gray);
	margin-top: 10px;
	line-height: 1.7;
}

.qr-area {
	max-width: 720px;
	margin: 0 auto 2em;
}
@media (max-width: 380px) {
	.qr-area figure {
		width: 60%;
		margin: auto;
	}
}
.qr-area figure img {
	width: 100%;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
}

/* ===== DIVIDER ===== */
.divider {
	height: 3px;
	background: -webkit-gradient(linear, left top, right top, from(var(--base-dark)), color-stop(var(--gold)), to(var(--base-dark)));
	background: linear-gradient(90deg, var(--base-dark), var(--gold), var(--base-dark));
	margin: 0;
}

/* ===== FOOTER ===== */
footer {
	background: var(--base-dark);
	color: rgba(255, 255, 255, 0.55);
	padding: 24px 20px 8em;
	line-height: 1.9;
	text-align: center;
}
footer p {
	font-size: var(--fs-small);
}

.footer-logo {
	color: var(--white);
	font-weight: 700;
	margin-bottom: 8px;
}

.footer-copy {
	color: rgba(255, 255, 255, 0.3);
	font-size: var(--fs-small);
	margin-top: 8px;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(13, 27, 46, 0.97);
	padding: 10px 14px;
	z-index: 200;
	-webkit-box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
	        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
}

.sticky-inner {
	max-width: 480px;
	margin: 0 auto;
}

.sticky-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 10px;
	width: 100%;
	background: linear-gradient(160deg, #07d760 0%, var(--line-green) 50%, #04b84e 100%);
	color: var(--white);
	font-size: 14px;
	font-weight: 900;
	padding: 13px 20px;
	border-radius: 8px;
	-webkit-box-shadow: 0 4px 18px rgba(6, 199, 85, 0.4);
	        box-shadow: 0 4px 18px rgba(6, 199, 85, 0.4);
	letter-spacing: 0.03em;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.sticky-line-icon {
	width: 3em;
	height: 3em;
	background: var(--white);
	border-radius: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}

.sticky-line-icon svg {
	width: calc(3em - 4px);
	height: calc(3em - 4px);
}

.sticky-text-wrap {
	text-align: left;
}

.sticky-sub {
	font-size: var(--fs-small);
	font-weight: 500;
	opacity: 0.85;
	display: block;
}

.sticky-main {
	font-weight: 900;
	display: block;
}

@media (max-width: 380px) {
	.hero-title {
		font-size: 23px;
	}
	.btn-line-main {
		font-size: 13px;
	}
}
@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
	50% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		        transform: scale3d(1.1, 1.1, 1.1);
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
}
@keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
	50% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		        transform: scale3d(1.1, 1.1, 1.1);
	}
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		        transform: scale3d(1, 1, 1);
	}
}