@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=M+PLUS+Rounded+1c:wght@400;700&Poppins:wght@700&display=swap");

@font-face {
	font-family: "makimaru";
	src: url("../fonts/makiirclehand.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
}

html,
body {
	overflow-x: hidden;
	margin: 0;
	font-family: "Lato", "M PLUS Rounded 1c", sans-serif;
	line-height: 1.75;
	letter-spacing: 0.04em;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
p {
	margin: 0;
	transform: rotate(0.03deg);
}
a {
	color: inherit;
	text-decoration: none;
}

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

/*------------
  common
------------*/

.container {
	position: relative;
	width: 100%;
}

.sec-ttl {
	padding: 0 15px;
	text-align: center;
	font-size: clamp(0.875rem, 2.5vw, 1rem);
	line-height: 1.65;
	letter-spacing: 0.12em;
}
.sec-ttl > p {
	margin: 0;
}
.sec-ttl h2 {
	position: relative;
	margin: 10px auto 35px;
}
.sec-ttl h2::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	background: #707070;
}
.sec-ttl h2 span {
	position: relative;
	z-index: 5;
	display: inline-block;
	padding: 0 15px;
	background: #fff;
	font-family: "makimaru", sans-serif;
	font-size: clamp(1.45rem, 4.3vw, 1.9rem);
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.08em;
	color: #333;
}
.section-heading {
	font-family: "makimaru", sans-serif;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.06em;
	color: #333;
}
.section-subheading {
	font-family: "makimaru", sans-serif;
	font-weight: 400;
	line-height: 1.45;
	color: #333;
}
#goals .sec-ttl h2 span,
#review .sec-ttl h2 span,
#info .sec-ttl h2 span {
	background: #fff;
}
#author .sec-ttl h2 span,
#useage .sec-ttl h2 span {
	background: rgb(253 251 239);
}
#download .sec-ttl h2 span {
	background: rgb(253 251 239);
}

/* セクションは器として扱い、中の要素を順次表示（ストーリー演出）。
   旧: .fade がブロックごと一括表示。新: .reveal で子要素をstagger表示。 */
.fade {
	opacity: 1;
	transform: none;
}
.fade.in {
	opacity: 1;
	transform: none;
}

/* スクロール連動リビール（JS有効時のみ隠す＝JS無効でも内容は表示される） */
.js .reveal {
	opacity: 0;
	transform: translateY(2.4rem);
	transition:
		opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
	transition-delay: calc(var(--reveal-order, 0) * 90ms);
	will-change: opacity, transform;
}
.js .reveal._left {
	transform: translateX(-2.4rem);
}
.js .reveal._right {
	transform: translateX(2.4rem);
}
.js .reveal._zoom {
	transform: scale(0.92);
}
.js .reveal.is-visible {
	opacity: 1;
	transform: translate(0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
	.js .reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

@media screen and (min-width: 769px) {
	.container {
		width: 800px;
		margin: 0 auto;
	}

	#useage > .container {
		width: 1080px;
		max-width: calc(100vw - 64px);
	}

	.sec-ttl h2 {
		width: 330px;
	}
}

/*
  splash
------------*/

.splash {
	display: block;
	position: fixed;
	z-index: 9999;
	inset: 0;
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	min-height: -webkit-fill-available;
	background: #ff8a5c;
	font-family: "makimaru", sans-serif;
	transition: opacity 1s;
}
.splash.fin {
	opacity: 0;
	pointer-events: none;
}
html.splash-lock,
html.splash-lock body {
	overflow: hidden !important;
	height: 100%;
}
html.splash-lock main > :not(.splash) {
	visibility: hidden;
}
.splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	transition: 0.5s;
	opacity: 0;
}
.splash-logo.load {
	opacity: 1;
}
.splash-logo p {
	font-size: 56px;
	color: #fff;
}
.splash-logo div {
	background: #ff8a5c;
	line-height: 0;
}
.splash-logo div img {
	width: 75%;
	max-width: 220px;
	height: auto;
}
/* 手書きスプラッシュ（Eigotecho 2027）：横並びの横長SVGなので幅を広めに */
.splash-logo div img.splash-title,
.splash-logo div svg.splash-title {
	width: 96%;
	max-width: 470px;
	height: auto;
	display: block;
	margin: 0 auto;
	vertical-align: top;
}

@media screen and (min-width: 769px) {
	.splash-logo div img {
		width: auto;
		max-width: 280px;
		height: auto;
	}
	.splash-logo div img.splash-title,
	.splash-logo div svg.splash-title {
		width: auto;
		max-width: 720px;
		height: auto;
	}
}

/*
  fixed-menu
------------*/

.fixed-menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	z-index: 5555;
	bottom: 10px;
	left: 0;
	width: 100%;
	transition: 0.5s;
	opacity: 0;
	pointer-events: none;
}
.fixed-menu.scroll {
	opacity: 1;
}

@media screen and (min-width: 769px) {
.fixed-buy a {
	display: block;
	padding: 30px 15px;
	font-size: 18px;
	background: #ffb100;
	border: 3px solid #fff;
	border-radius: 0 50px 50px 0;
	font-family: "makimaru", sans-serif;
	pointer-events: none;
}
.scroll .fixed-buy a {
	pointer-events: auto;
}
}
.fixed-buy a {
	display: none;
}
.scroll .fixed-buy a {
	display: none;
}
.fixed-sns {
	display: flex;
	margin-right: 15px;
}
.fixed-sns a {
	width: 70px;
	pointer-events: none;
}
.scroll .fixed-sns a {
	pointer-events: auto;
}
.fixed-sns a + a {
	margin-left: 25px;
}

/*------------
  header
------------*/

.header {
	display: flex;
	justify-content: space-between;
	position: fixed;
	z-index: 6666;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0 5px;
}
.header::before {
	content: "";
	position: absolute;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-image: linear-gradient(-45deg, #f5f2ea 0, #f5f2ea 20%, #ff6633 20%, #ff6633 80%, #f5f2ea 80%, #f5f2ea 100%);
	background-size: 60px 2px;
	background-position: center;
}
.header-toggle {
	position: relative;
	z-index: 99;
	width: 79px;
	height: 100%;
	margin-left: auto;
	padding: 15px 0;
	text-align: center;
	font-size: 20px;
	color: #ff8a5c;
	background: #fff;
	border: 2px solid #ff8a5c;
	border-radius: 0 0 18px 18px;
	cursor: pointer;
	font-family: "makimaru", sans-serif;
}
.header-toggle .toggle-inner {
	position: relative;
	width: 16px;
	height: 13px;
	margin: 0 auto 5px;
}
.header-toggle .toggle-inner span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ff8a5c;
	border-radius: 10px;
}
.header-toggle .toggle-inner span:nth-of-type(1) {
	top: 0;
}
.header-toggle .toggle-inner span:nth-of-type(2) {
	top: 0;
	bottom: 0;
	margin: auto;
	transform: translateY(-50%);
}
.header-toggle .toggle-inner span:nth-of-type(3) {
	bottom: 0;
}
.header-toggle.active .toggle-inner span:nth-of-type(1) {
	bottom: 0;
	margin: auto;
	transform: translateY(-50%) rotate(45deg);
}
.header-toggle.active .toggle-inner span:nth-of-type(2) {
	opacity: 0;
}
.header-toggle.active .toggle-inner span:nth-of-type(3) {
	top: 0;
	margin: auto;
	transform: translateY(-50%) rotate(-45deg);
}

.header-menu {
	overflow: hidden;
	position: absolute;
	z-index: 9;
	top: 0;
	right: 0;
	width: 100%;
	height: 0;
	background: #ff8a5c;
	transition: 0.5s;
}
.header-menu.active {
	height: 100vh;
}
.header-menu .menu-ttl {
	display: flex;
	align-items: center;
	height: 72px;
	padding-left: 15px;
	padding-right: 99px;
}
.header-menu .menu-ttl p {
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	font-family: "makimaru", sans-serif;
	line-height: 1.2;
	margin: 0;
}
.header-menu .menu-scroll {
	overflow-x: hidden;
	overflow-y: scroll;
	height: calc(100vh - 72px);
}
.header-menu .menu-nav {
	margin: 45px 30px 0;
	padding-bottom: 40px;
	text-align: center;
	border-bottom: 1px solid #fff;
}
.header-menu .menu-nav p {
	text-align: center;
	font-size: 22px;
	line-height: 48px;
}
.header-menu .menu-sns {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}
.header-menu .menu-sns a {
	width: 70px;
	margin: 0 10px;
}
.header-menu .menu-buy {
	margin-top: 25px;
	padding-bottom: 100px;
	text-align: center;
	font-size: 15px;
}
.header-menu .menu-buy p {
	margin-bottom: 15px;
}
.header-menu .menu-buy a {
	display: block;
	margin: 0 45px;
}
.header-menu .menu-buy a + a {
	margin-top: 5px;
}

@media screen and (min-width: 769px) {
	.header-menu {
		width: 320px;
	}
	.header-menu .menu-scroll {
		overflow: hidden;
	}
	.header-menu .menu-buy {
		padding-bottom: 40px;
	}
}

/*------------
  footer
------------*/

.footer {
	padding: 55px 0 160px;
	background: #ff8a5c;
}
.footer-logo {
	height: 90px;
	margin-bottom: 55px;
	text-align: center;
}
.footer-logo img {
	width: auto;
	height: 100%;
}
.footer-info {
	margin: 0 20px;
	padding: 40px 0 0;
	border-top: 1px solid #fff;
}
.footer-info a {
	display: block;
	margin: 20px 15px 30px;
	text-align: center;
}
.footer-info p {
	height: 15px;
	text-align: center;
	color: #fff;
}
.footer-info p img {
	width: auto;
	height: 100%;
}
.footer-ibc {
	height: 73px;
	text-align: center;
}
.footer-ibc img {
	width: auto;
	height: 100%;
}

.footer-btn {
	display: inline-block;
	border: 2px solid #e86a3a;
	background: #fff;
	color: #d45a30;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	margin: 10px 0;
	transition: background-color 0.3s ease;
	font-size: 14px;
}

@media screen and (min-width: 769px) {
	.footer {
		padding: 55px 0 20px;
	}
	.footer-logo {
		margin-bottom: 45px;
	}
	.footer-info {
		max-width: 1230px;
		margin: 0 auto;
	}
	.footer-info a {
		height: auto;
		max-width: 400px;
		margin: 20px auto 30px;
	}
	.footer-info a img {
		width: auto;
		height: 100%;
	}
	.footer-info p {
		height: 10px;
		text-align: center;
	}
}

/*------------
  index
------------*/

/* Screen Reader Only */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/*
  kv
------------*/

#kv {
	position: relative;
	min-height: 100vh;
	padding-top: 95px;
	overflow-x: clip;
	background-color: #fdfbef;
	background-image:
		linear-gradient(rgba(255, 138, 92, 0.18) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 138, 92, 0.18) 1px, transparent 1px);
	background-size: 16px 16px;
	background-position: left top;
}
#kv .kv-wrapper {
	overflow: visible;
	position: relative;
	z-index: 1;
	width: 100%;
}
#kv .kv-logo {
	position: absolute;
	z-index: 2;
	top: 5px;
	left: 5px;
	margin-top: 5px;
	padding: 0.3rem 0 0.3rem 0.6rem;
}
#kv .kv-logo p {
	font-size: 2rem;
	font-weight: bold;
	color: #333;
	font-family: "makimaru", sans-serif;
	line-height: 1.2;
	margin: 0;
}

@media screen and (min-width: 769px) {
	#kv .kv-logo p {
		font-size: 2.4rem;
	}
}

#kv .kv-bg {
	position: absolute;
	transition:
		opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
	opacity: 0;
	transform: translateY(2rem);
}
#kv._loaded .kv-bg {
	transform: translateY(0);
}
#kv .kv-bg._bg01 {
	width: 90vw;
	top: 165px;
	left: calc(-150vw + 103.8vw);
}
#kv._loaded .kv-bg._bg01 {
	opacity: 1;
	transition-delay: 0.3s;
}
#kv .kv-bg._bg02 {
	width: 80vw;
	top: 226px;
	right: calc(-140vw + 94.8vw);
}
#kv._loaded .kv-bg._bg02 {
	opacity: 1;
	transition-delay: 0.3s;
}
#kv .kv-balloon {
	position: absolute;
	width: fit-content;
	padding: 15px 8px 20px;
	border: 4px solid #ffffff;
	border-radius: 8px;
	transition: opacity 1.5s;
	opacity: 0;
}
#kv._loaded .kv-balloon {
	opacity: 1;
	transition-delay: 1s;
}
#kv .kv-balloon::before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 15px 0 15px;
	border-color: #fff transparent transparent transparent;
}
#kv .kv-balloon::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px 11px 0 11px;
}
#kv .kv-balloon .balloon-color {
	display: flex;
	justify-content: center;
	margin: 10px auto 0;
}
#kv .kv-balloon .balloon-color span {
	width: 15px;
	height: 15px;
	margin: 0 5px;
	border: 2px solid #fff;
	border-radius: 100%;
}

#kv .kv-balloon .balloon-color span._black {
	background: #1a252b;
}

#kv .kv-balloon .balloon-color span._champagne {
	background: #dfd3b4;
}
#kv .kv-balloon .balloon-color span._iceblue {
	background: #93efc1;
}
#kv .kv-balloon .balloon-color span._deepblue {
	background: #0e2b83;
}
#kv .kv-balloon .balloon-color span._cinnamon {
	background: #ab5977;
}
#kv .kv-balloon .balloon-color span._milky {
	background: #fecae2;
}

#kv .kv-balloon._balloon01 {
	z-index: 99;
	bottom: calc(100% - (100vh - 560px));
	left: 18px;
	padding: 10px 8px 15px;
	background: #ff8a5c;
}
#kv .kv-balloon._balloon01::after {
	border-color: #ff8a5c transparent transparent transparent;
}
#kv .kv-balloon._balloon01 p {
	text-align: center;
	font-size: 13px;
	line-height: 20px;
	color: #fff;
}
#kv .kv-balloon._balloon02 {
	position: relative;
	top: auto;
	left: auto;
	width: 176px;
	height: 176px;
	margin: 0 auto -12px;
	padding: 0;
	border: 4px solid #fff;
	border-radius: 50%;
	background: #e61874;
	box-shadow: 0 6px 18px rgba(198, 19, 95, 0.38);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: translateX(clamp(20px, 4vw, 48px)) rotate(-6deg);
	z-index: 4;
}
#kv .kv-balloon._balloon02 p {
	margin: 0;
}
#kv .kv-balloon._balloon02::before,
#kv .kv-balloon._balloon02::after {
	content: none;
	display: none;
}
#kv .kv-balloon._balloon02 .balloon-label {
	font-family: "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	letter-spacing: 0.06em;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}
#kv .kv-balloon._balloon02 .balloon-count {
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	justify-content: center;
	margin-top: 5px;
	color: #fff;
	line-height: 1;
	font-family: "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	white-space: nowrap;
}
#kv .kv-balloon._balloon02 .balloon-count .num {
	font-size: 56px;
	font-weight: 700;
	letter-spacing: -0.03em;
	font-style: italic;
}
#kv .kv-balloon._balloon02 .balloon-count .unit {
	font-size: 22px;
	font-weight: 700;
	margin-left: 6px;
}
#kv .kv-balloon._balloon02 .balloon-over {
	margin-top: 2px;
	font-family: "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	color: #ffef5a;
	letter-spacing: 0.06em;
}
#kv h1 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) rotate(0.03deg);
	margin: 0 auto;
	transition: opacity 0.5s;
	opacity: 0;
}
#kv._loaded .kv-ttl {
	opacity: 1;
	transition-delay: 0.5s;
}
#kv .kv-hero {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin: -20px auto 0;
}
#kv .kv-ttl {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: flex-start;
	gap: clamp(0.2em, 1.2vw, 0.45em);
	position: relative;
	z-index: 3;
	margin: 0 auto;
	padding: clamp(2px, 0.8vh, 12px) 0;
	color: #222;
	font-family: "M PLUS Rounded 1c", sans-serif;
	transition: opacity 0.5s;
	opacity: 0;
}
#kv .kv-ttl-col {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	writing-mode: horizontal-tb;
	letter-spacing: 0;
	line-height: 1;
}
#kv .kv-ttl-col._pre {
	gap: 0.06em;
}
#kv .kv-ttl-col._pre .kv-ttl-ch {
	font-size: clamp(1.6rem, 4.6vw, 2.05rem);
	font-weight: 400;
	line-height: 1.05;
}
/* 「英語時間」「になる」は writing-mode を使わず1字ずつ縦積み。
   Safari の縦組み字面ズレを根本回避する。 */
#kv .kv-ttl-col._lead {
	gap: clamp(0.25em, 1vw, 0.45em);
}
#kv .kv-ttl-group {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0.06em;
}
#kv .kv-ttl-ch {
	display: block;
	line-height: 1.05;
}
#kv .kv-ttl-group._main .kv-ttl-ch {
	font-size: clamp(2.1rem, 6.8vw, 2.8rem);
	font-weight: 700;
}
#kv .kv-ttl-group._sub .kv-ttl-ch {
	font-size: clamp(0.85rem, 2.5vw, 1.05rem);
	font-weight: 400;
}

#kv h2 {
	text-align: center;
}
#kv .kv-item {
	position: relative;
	z-index: 2;
	padding-top: 0;
	transition:
		opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
	opacity: 0;
	transform: translateY(1.6rem);
}
#kv._loaded .kv-item {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 1.8s;
}
#kv .kv-item .swiper-wrapper {
	transition-timing-function: linear;
}
#kv .kv-desc {
	text-align: center;
	background: #ff8a5c;
	padding: 40px 0;
	color: #fff;
	letter-spacing: 0.2rem;
	border-top: 0.4rem solid #ffc9b0;
	border-bottom: 0.4rem solid #ffc9b0;
}
#kv .kv-desc h2 img {
	display: block;
	width: 75%;
	max-width: 220px;
	margin: 0 auto;
	padding: 0 20px;
	height: auto;
}
#kv .kv-desc .desc-txt {
	margin-top: 30px;
	font-size: 16px;
	line-height: 1.85;
	letter-spacing: 0.08em;
}

#kv .anniversary-band {
	width: 100%;
	height: 100%;
	padding: 2rem 0 0;
	margin: 2rem auto;
}

#kv .anniversary-band img {
	width: 80%;
}

#kv .kv-banner {
	margin-top: 35px;
	padding: 15px 25px;
	text-align: center;
	background: rgb(93 111 169 / 28%);
}

/* モバイル FV */
@media screen and (max-width: 768px) {
	#kv {
		position: relative;
		min-height: 100dvh;
		padding-top: 80px;
		padding-bottom: 260px;
		box-sizing: border-box;
	}
	#kv .kv-logo {
		top: 8px;
		left: 8px;
		max-width: calc(100% - 96px);
		padding: 0.2rem 0 0.2rem 0.5rem;
	}
	#kv .kv-logo p {
		font-size: 1.7rem;
		line-height: 1.15;
	}
	#kv .kv-wrapper {
		display: flex;
		flex-direction: column;
		min-height: calc(100dvh - 80px);
		position: relative;
		overflow: visible;
	}
	#kv .kv-bg {
		z-index: 0;
		pointer-events: none;
	}
	#kv._loaded .kv-bg._bg01,
	#kv._loaded .kv-bg._bg02 {
		opacity: 0.92;
	}
	#kv .kv-bg._bg01 {
		width: 82vw;
		top: 38%;
		left: -34vw;
	}
	#kv .kv-bg._bg02 {
		width: 76vw;
		top: 46%;
		right: -32vw;
	}
	#kv .kv-hero {
		position: relative;
		z-index: 3;
		flex: 1 1 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		margin: 0;
		padding: 24px 12px 0;
	}
	#kv .kv-balloon._balloon02 {
		position: absolute;
		top: 44px;
		right: 40px;
		align-self: auto;
		width: 122px;
		height: 122px;
		margin: 0;
		transform: rotate(6deg);
		z-index: 5;
	}
	#kv .kv-balloon._balloon02 .balloon-label {
		font-size: 12px;
		padding-bottom: 3px;
	}
	#kv .kv-balloon._balloon02 .balloon-count {
		margin-top: 2px;
	}
	#kv .kv-balloon._balloon02 .balloon-count .num {
		font-size: 40px;
	}
	#kv .kv-balloon._balloon02 .balloon-count .unit {
		font-size: 15px;
	}
	#kv .kv-balloon._balloon02 .balloon-over {
		font-size: 19px;
	}
	#kv .kv-ttl {
		position: relative;
		z-index: 4;
		margin: 0 auto;
		padding: 0;
		gap: clamp(0.25em, 1.4vw, 0.5em);
		transform: translate(-6px, -22px);
		text-shadow:
			0 0 10px #fdfbef,
			0 0 18px #fdfbef;
	}
	#kv .kv-ttl-col._pre .kv-ttl-ch {
		font-size: clamp(1.95rem, 6.3vw, 2.45rem);
	}
	#kv .kv-ttl-group._main .kv-ttl-ch {
		font-size: clamp(2.9rem, 9.8vw, 3.6rem);
	}
	#kv .kv-ttl-group._sub .kv-ttl-ch {
		font-size: clamp(1.1rem, 3.3vw, 1.3rem);
	}
	#kv .kv-item {
		position: relative;
		z-index: 4;
		flex-shrink: 0;
		width: 100%;
		margin-top: 0;
		padding: 6px 0 44px;
		overflow: hidden;
	}
	#kv .kv-item .swiper {
		width: 100%;
		height: auto;
		overflow: visible;
	}
	#kv .kv-item .swiper-wrapper {
		align-items: flex-end;
	}
	#kv .kv-item .swiper-slide {
		width: 30vw;
		height: auto;
	}
	#kv .kv-item .swiper-slide img {
		display: block;
		width: 100%;
		height: auto;
		max-height: 22vh;
		object-fit: contain;
		object-position: bottom center;
	}
	#kv .kv-desc {
		position: absolute;
		left: 0;
		right: 0;
		top: calc(100dvh - 120px);
		z-index: 2;
		flex-shrink: 0;
		margin-top: 0;
	}
}

/* iPad(タブレット縦 600〜768px)専用：モバイルレイアウトのvw依存サイズが肥大化する範囲だけ再調整。
   iPhone(≤430px)とデスクトップ(≥769px)には影響しない。 */
@media screen and (min-width: 600px) and (max-width: 768px) {
	#kv {
		padding-bottom: 0;
		min-height: auto;
	}
	#kv .kv-wrapper {
		min-height: auto;
	}
	#kv .kv-desc {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
	}
	#kv .kv-hero {
		flex: 0 0 auto;
		justify-content: flex-start;
		padding-top: 16px;
		padding-bottom: 4px;
	}
	#kv .kv-item {
		padding-top: 0;
		padding-bottom: 28px;
	}
	/* 肥大化する背景画像に上限を付け、位置もpx基準で寄せる */
	#kv .kv-bg._bg01 {
		width: 440px;
		left: -104px;
		top: 40%;
	}
	#kv .kv-bg._bg02 {
		width: 410px;
		right: -84px;
		top: 47%;
	}
	/* タイトルは上限を少し引き上げて画像とのバランスを取る */
	#kv .kv-ttl {
		transform: translate(-6px, -12px);
	}
	#kv .kv-ttl-col._pre .kv-ttl-ch {
		font-size: 2.55rem;
	}
	#kv .kv-ttl-group._main .kv-ttl-ch {
		font-size: 3.85rem;
	}
	#kv .kv-ttl-group._sub .kv-ttl-ch {
		font-size: 1.4rem;
	}
	/* バッジを一回り大きくして存在感を戻す */
	#kv .kv-balloon._balloon02 {
		width: 152px;
		height: 152px;
		top: 40px;
		right: 5vw;
	}
	#kv .kv-balloon._balloon02 .balloon-label {
		font-size: 13px;
	}
	#kv .kv-balloon._balloon02 .balloon-count .num {
		font-size: 50px;
	}
	#kv .kv-balloon._balloon02 .balloon-count .unit {
		font-size: 17px;
	}
	#kv .kv-balloon._balloon02 .balloon-over {
		font-size: 22px;
	}
	/* 書影が大きすぎるので上限を付ける */
	#kv .kv-item .swiper-slide {
		width: 148px;
	}
	#kv .kv-item .swiper-slide img {
		max-height: 200px;
	}
}

/* iPhone SE サイズ対応 */
@media screen and (max-width: 375px) {
	#kv .kv-balloon._balloon02 {
		width: 118px;
		height: 118px;
		top: 46px;
		right: 32px;
		padding: 8px 4px 6px;
		transform: rotate(4deg);
	}
	#kv .kv-balloon._balloon02 .balloon-label {
		font-size: 10px;
		line-height: 1;
		padding-bottom: 2px;
	}
	#kv .kv-balloon._balloon02 .balloon-count {
		margin-top: 1px;
	}
	#kv .kv-balloon._balloon02 .balloon-count .num {
		font-size: 32px;
	}
	#kv .kv-balloon._balloon02 .balloon-count .unit {
		font-size: 13px;
	}
	#kv .kv-balloon._balloon02 .balloon-over {
		font-size: 16px;
		margin-top: 0;
	}
	#kv .kv-ttl-col._pre .kv-ttl-ch {
		font-size: 1.8rem;
	}
	#kv .kv-ttl-group._main .kv-ttl-ch {
		font-size: 2.65rem;
	}
	#kv .kv-item .swiper-slide {
		width: auto;
		height: auto;
	}
	#kv .kv-item .swiper-slide img {
		display: block;
		width: 28vw;
		height: auto;
		max-height: none;
		object-fit: contain;
		object-position: bottom center;
	}
}

@media screen and (min-width: 769px) {
	#kv .kv-bg._bg01 {
		width: 44vw;
		left: 0;
		top: 40px;
	}
	#kv .kv-bg._bg02 {
		width: 41.4vw;
		right: 0;
		top: 60px;
	}

	#kv .kv-balloon._balloon02 {
		width: 180px;
		height: 180px;
		margin: 0 auto -20px;
		transform: translateX(clamp(48px, 8vw, 110px)) rotate(-6deg);
	}
	#kv .kv-balloon._balloon02 .balloon-label {
		font-size: 15px;
	}
	#kv .kv-balloon._balloon02 .balloon-count .num {
		font-size: 50px;
	}
	#kv .kv-balloon._balloon02 .balloon-count .unit {
		font-size: 26px;
		margin-left: 8px;
	}
	#kv .kv-balloon._balloon02 .balloon-over {
		font-size: 34px;
	}

	#kv .kv-hero {
		padding-top: 0;
		margin-top: -44px;
	}

	#kv .kv-item {
		width: auto;
		max-width: 760px;
		margin: 0 auto;
		padding-top: max(0px, calc(55vh - 460px));
		overflow: visible;
	}
	#kv .kv-item .swiper-wrapper {
		justify-content: center;
	}
	#kv .kv-item .swiper-slide {
		width: 140px;
	}

	#kv .kv-ttl-col._pre .kv-ttl-ch {
		font-size: clamp(2rem, 2.4vw, 2.75rem);
	}
	#kv .kv-ttl-group._main .kv-ttl-ch {
		font-size: clamp(2.8rem, 3.5vw, 4.2rem);
	}
	#kv .kv-ttl-group._sub .kv-ttl-ch {
		font-size: clamp(0.95rem, 1.15vw, 1.35rem);
	}

	#kv .anniversary-band {
	}

	#kv .anniversary-band img {
		max-width: 570px;
	}
	
	#kv .kv-desc h2 img {
		max-width: 280px;
		height: auto;
	}
	
}

/* iPad(769〜1024px)：PCレイアウトだが縦長画面で手帳サムネ上部の余白が開きすぎる問題を抑制 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
	#kv {
		min-height: auto;
	}
	#kv .kv-item {
		padding-top: clamp(0px, calc(28vh - 240px), 48px);
	}
}

@media screen and (min-width: 1200px) {
	#kv .kv-hero {
		margin-top: -52px;
	}
	#kv .kv-balloon._balloon02 {
		width: 180px;
		height: 180px;
		margin-bottom: -24px;
		transform: translateX(120px) rotate(-6deg);
	}
	#kv .kv-ttl-col._pre .kv-ttl-ch {
		font-size: 2.55rem;
	}
	#kv .kv-ttl-group._main .kv-ttl-ch {
		font-size: 4.2rem;
	}
	#kv .kv-ttl-group._sub .kv-ttl-ch {
		font-size: 1.35rem;
	}
}

/*
  variation
------------*/

#variation {
	padding: 75px 0;
}
#variation h2 {
	text-align: center;
}
#variation > .container > h2.section-heading {
	margin: 0 auto;
	font-size: clamp(1.45rem, 4.2vw, 2rem);
	line-height: 1.45;
}
#variation .variation-list {
	display: flex;
	align-items: flex-end;
	margin-top: 65px;
	padding: 0 20px;
}
#variation .variation-box {
	width: calc((100% - 20px) / 2);
	font-size: 12px;
	line-height: 24px;
}
#variation .variation-box + .variation-box {
	margin-left: 20px;
}
#variation .variation-box h2 {
	text-align: center;
}
#variation .variation-box h2 img {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	height: 64px;
	max-width: none;
}
#variation .variation-box .box-color {
	display: flex;
	justify-content: center;
	margin: 5px auto 15px;
}
#variation .variation-box .box-color span {
	width: 30px;
	height: 30px;
	margin: 0 5px;
	border-radius: 100%;
	cursor: pointer;
}

#variation .variation-box .box-color span._black {
	background: #1a252b;
}

#variation .variation-box .box-color span._champagne {
	background: #dfd3b4;
}
#variation .variation-box .box-color span._iceblue {
	background: #93efc1;
}
#variation .variation-box .box-color span._deepblue {
	background: #0e2b83;
}
#variation .variation-box .box-color span._cinnamon {
	background: #ab5977;
}
#variation .variation-box .box-color span._milky {
	background: #fecae2;
}

#variation .variation-box .box-price {
	font-size: 16px;
	line-height: 24px;
}
#variation .variation-box .box-price span {
	padding: 0 5px 0 10px;
	font-size: 34px;
}

@media screen and (min-width: 769px) {
	#variation {
		padding: 100px 0;
	}
	#variation > .container > h2.section-heading {
		font-size: 2rem;
	}
	#variation .variation-list {
		width: 400px;
		margin: 35px auto 0;
		padding: 0;
	}
}

/*
  useage
------------*/

#useage {
	padding: 40px 0;
	background: rgb(253 251 239);
}
#useage .useage-box {
	padding: 0 20px;
}
#useage .useage-box:nth-of-type(odd) {
	padding-left: 20px;
}
#useage .useage-box:nth-of-type(even) {
	padding-right: 20px;
}
#useage .useage-box .box-txt {
	text-align: center;
}
#useage .useage-box .box-heading {
	display: table;
	margin: 0 auto 12px;
	border-collapse: collapse;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0.04em;
}
#useage .useage-box .box-num {
	display: table-cell;
	vertical-align: top;
	padding-right: 0.35em;
	font-size: 2.1rem;
	font-weight: 700;
	line-height: 1.55;
	white-space: nowrap;
}
#useage .useage-box .box-title {
	display: table-cell;
	vertical-align: middle;
	line-height: 1.55;
	font-weight: 400;
	text-align: left;
}
#useage .useage-box .box-desc {
	margin-top: 0;
	font-size: 1rem;
	line-height: 1.85;
	letter-spacing: 0.04em;
	text-align: left;
}
#useage .useage-box .box-image {
	position: relative;
	width: 85vw;
}
#useage .useage-box .box-image._image01 {
	right: calc(-13vw - 20px);
	margin: 35px 0 55px auto;
}
#useage .useage-box .box-image._image02 {
	width: 82vw;
	left: calc(-10vw - 20px);
	margin: 45px auto 55px 0;
}
#useage .useage-box .box-image._image03 {
	top: 16px;
	right: calc(-5vw - 20px);
	margin: 9px 0 5px auto;
}

@media screen and (min-width: 769px) {
	#useage {
		padding: 40px 0 30px;
	}
	#useage .useage-box {
		display: flex;
		align-items: center;
		gap: clamp(24px, 3vw, 48px);
	}
	#useage .useage-box + .useage-box {
		margin-top: 48px;
	}
	#useage .useage-box:nth-of-type(odd),
	#useage .useage-box:nth-of-type(even) {
		padding: 0;
	}
	#useage .useage-box .box-txt {
		width: 38%;
		flex-shrink: 0;
		text-align: left;
	}
	#useage .useage-box .box-heading {
		margin: 0 0 12px;
	}
	#useage .useage-box:nth-of-type(even) .box-txt {
		order: 1;
		margin-right: 0;
	}
	#useage .useage-box:nth-of-type(odd) .box-txt {
		order: 2;
		margin-left: 0;
	}

	#useage .useage-box .box-image {
		width: 62%;
		flex-shrink: 0;
	}
	#useage .useage-box .box-image img {
		width: 100%;
		height: auto;
	}
	#useage .useage-box .box-image._image01,
	#useage .useage-box .box-image._image03 {
		order: 2;
		top: 0;
		right: 0;
		margin: 0;
	}
	#useage .useage-box .box-image._image02 {
		order: 1;
		top: 0;
		left: 0;
		width: 62%;
		margin: 0;
	}
}

/*
  review
------------*/

#review {
	overflow: hidden;
	padding: 60px 0 0;
}
#review .review-thumbnail {
	position: relative;
	z-index: 99;
}
#review .review-thumbnail .swiper-slide img {
	transform: scale(0.7);
	transition: 0.5s;
}
#review .review-thumbnail .swiper-slide.swiper-slide-active img {
	transform: scale(1);
}
#review .swiper-slide {
	height: 100%;
}
#review .review-box {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0 10px;
	padding: 135px 10px 55px;
	text-align: center;
	color: #fff;
	border-radius: 15px;
}
#review .review-box._male {
	background: #89b8ef;
}
#review .review-box._female {
	background: #ef8992;
}
#review .review-box h2 {
	font-size: 29px;
	font-weight: 400;
	line-height: 26px;
	font-family: "makimaru", sans-serif;
}
#review .review-txt {
	margin: 10px auto;
	font-size: 16px;
	line-height: 26px;
}
#review .review-name {
	margin-top: auto;
	font-size: 20px;
	font-weight: 700;
	font-family: "Poppins", sans-serif;
}
#review .review-content {
	overflow-x: hidden;
	overflow-y: visible;
	margin-top: -90px;
	padding-bottom: 100px;
}
#review .review-content .swiper-arrow {
	display: flex;
	position: absolute;
	z-index: 9;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%) translateY(50%);
	width: fit-content;
	height: 62px;
	padding: 5px;
	background: #fff;
	border-radius: 50px;
	filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
}
#review .review-content .swiper-arrow div {
	width: 52px;
	height: 52px;
}
#review .review-content .swiper-arrow div + div {
	margin-left: 20px;
}

@media screen and (min-width: 769px) {
	#review .review-content {
		margin-top: -75px;
		padding-bottom: 150px;
	}
	#review .review-content .swiper-arrow {
		bottom: 150px;
	}
	#review .review-box {
	}
	#review .review-box h2 {
		width: 320px;
		margin: 0 auto 10px;
	}
	#review .review-txt {
		width: 320px;
		margin: 0 auto 10px;
	}
	#review .review-name {
		font-size: 25px;
	}
}

/*
  author
------------*/

#author {
	padding: 60px 20px;
	background: rgb(253 251 239);
}
#author .author-block + .author-block {
	margin-top: 60px;
}
#author .author-image {
	margin: 10px auto 25px;
	text-align: center;
}
#author .author-image img {
	width: 180px;
}
#author .author-name {
	text-align: center;
	font-size: 16px;
	line-height: 1.65;
	letter-spacing: 0.06em;
}
#author .author-txt {
	margin-top: 35px;
	font-size: 16px;
	line-height: 1.85;
	letter-spacing: 0.04em;
}
#author .author-sns {
	display: flex;
	justify-content: center;
	margin: 55px auto 0;
}
#author .author-sns a {
	width: 75px;
	margin: 0 15px;
}
#author .author-sns .author-sns-line {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 52px;
	color: #06c755;
	line-height: 1;
}
#author .author-txt a {
	color: #c45a7a;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

@media screen and (min-width: 769px) {
	#author {
		padding: 45px 0 140px;
	}
	#author .author-block + .author-block {
		margin-top: 70px;
	}
	#author .author-image {
		margin: 15px auto 30px;
	}
	#author .author-name p {
		margin-bottom: 5px;
	}
	#author .author-txt {
		margin-top: 45px;
	}
}

/*
  info
------------*/

#info {
	padding: 45px 0 65px;
}
#info .info-item {
	display: flex;
	align-items: flex-end;
	padding: 0 20px;
}
#info .info-image {
	width: 50%;
	text-align: center;
}
#info .info-tab {
	display: flex;
	position: relative;
	margin-top: 20px;
	padding: 0 20px;
}
#info .info-tab::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 20px;
	height: 1px;
	background: #707070;
}
#info .info-tab::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 20px;
	height: 1px;
	background: #707070;
}
#info .info-tab .tab-btn {
	width: 50%;
	padding: 10px;
	text-align: center;
	font-size: 14px;
	line-height: 24px;
	border-bottom: 1px solid #707070;
	cursor: pointer;
}
#info .info-tab .tab-btn.active {
	border: 1px solid #707070;
	border-bottom: none;
}
#info .info-detail {
	margin-top: 20px;
	padding: 0 20px;
}
#info .info-box {
	display: none;
}
#info .info-box.active {
	display: block;
}
#info .info-box h2 {
	text-align: center;
	font-size: 24px;
	font-family: "makimaru", sans-serif;
}
#info .info-box dl {
	margin-top: 25px;
	font-size: 16px;
	line-height: 45px;
}
#info .info-box dl div {
	display: flex;
	align-items: center;
}
#info .info-box dl dt {
	display: flex;
	align-items: center;
	width: 25%;
}
#info .info-box dl dt._mb {
	margin-bottom: auto;
}
#info .info-box dl dt span {
	margin-left: auto;
}
#info .info-box dl dd {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 75%;
}
#info .info-box dl dd span {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	cursor: pointer;
}

#info .info-box dl dd span + span {
	margin-left: 15px;
}

#info .info-box dl dd span._black {
	background: #1a252b;
}
#info .info-box dl dd span._champagne {
	background: #dfd3b4;
}
#info .info-box dl dd span._iceblue {
	background: #93efc1;
}
#info .info-box dl dd span._deepblue {
	background: #0e2b83;
}
#info .info-box dl dd span._cinnamon {
	background: #ab5977;
}
#info .info-box dl dd span._milky {
	background: #fecae2;
}

#info .info-box dl dd p {
	width: 100%;
}
#info .info-link {
	margin-top: 90px;
}
#info .info-link a {
	display: block;
}

@media screen and (min-width: 769px) {
	#info .info-item {
		width: 85%;
		margin: 0 auto;
	}
	#info .info-link {
		display: flex;
		margin-top: 95px;
	}
	/* #info .info-link a {
    width: calc((100% - 20px) / 3);
  } */
	#info .info-link a {
		width: calc((100% - 20px) / 2);
	}
	#info .info-link a + a {
		margin-left: 10px;
	}
}

/*
  download
------------*/

#download {
	padding: 45px 0 80px;
	background: rgb(253 251 239);
}
#download .download-list {
	padding: 0 20px;
}
#download .download-box + .download-box {
	margin-top: 60px;
}
#download .download-box a {
	display: block;
	margin-top: 15px;
	padding: 10px;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: #ff8a5c;
	background: #fff;
	border-radius: 50px;
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

@media screen and (min-width: 769px) {
	#download .download-list {
		display: flex;
		padding: 0;
	}
	#download .download-box {
		width: calc((100% - 30px) / 3);
	}
	#download .download-box + .download-box {
		margin-top: 0;
		margin-left: 15px;
	}
}

/*
  sns
------------*/

#goals {
	padding: 40px 0 30px;
}

/*アコーディオン*/

#goals summary {
	list-style: none;
	position: relative;
	margin-bottom: 10px;
	padding: 20px 70px 20px 30px;
	cursor: pointer;
	border-radius: 4px;
	background-color: rgb(253 251 239);
	display: block;
}

#goals summary::-webkit-details-marker {
	display: none;
}

#goals summary:hover,
#goals details[open] summary {
	background-color: rgba(255, 138, 92, 0.2);
}

#goals summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	transition: transform 0.5s;
	font-size: 30px;
}

#goals details {
	padding: 0 10px;
}

#goals details[open] summary::after {
	transform: translateY(-50%) rotate(45deg);
}

#goals .answer {
	padding: 20px;
}

#goals .answer p {
	line-height: 1.8;
	font-size: 16px;
	margin-bottom: 20px;
	padding: 5px 0;
	border-bottom: 1px dashed #f5ddd0;
}

#goals details[open] .answer {
	animation: fadein 0.5s ease;
}

@keyframes fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.br-sp {
	display: none;
}

@media (max-width: 750px) {
	.br-sp {
		display: block;
	}
}

.text-white {
	color: #fff;
}
.text-nowrap {
	white-space: nowrap;
}

/*
  フローティング通知バー
------------*/

/* フローティング通知バー */
.floating-notice {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 400px;
	background: white;
	color: #333;
	z-index: 1000;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
	border-radius: 16px;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform: scale(0.8);
	opacity: 0;
	overflow: hidden;
}

.floating-notice.show {
	transform: scale(1);
	opacity: 1;
}

/* モバイル用フローティングバナー調整 */
@media (max-width: 768px) {
	.floating-notice {
		bottom: 20px;
		right: 20px;
		left: 20px;
		width: auto;
		max-width: calc(100% - 40px);
	}
}

.notice-content {
	padding: 20px;
	position: relative;
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.notice-image {
	flex-shrink: 0;
	width: 120px;
}

.notice-image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	max-height: 120px;
	object-fit: cover;
}

.notice-info {
	flex: 1;
	min-width: 0;
}

.notice-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.notice-title {
	font-size: 16px;
	font-weight: bold;
	color: #d45a30;
	margin: 0;
	flex: 1;
}

.notice-icon {
	font-size: 18px;
	margin: 0 5px;
	animation: bounce 2s infinite;
}

.notice-close {
	background: none;
	border: none;
	color: #999;
	font-size: 20px;
	cursor: pointer;
	padding: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.notice-close:hover {
	background: #f5f5f5;
	color: #666;
}

.notice-text {
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 15px;
	color: #555;
}

.notice-btn {
	display: block;
	background: linear-gradient(135deg, #ff8a5c, #ff7a4d);
	color: white;
	padding: 12px 20px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 138, 92, 0.4);
}

.notice-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 138, 92, 0.6);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-5px);
	}
	60% {
		transform: translateY(-3px);
	}
}

/* モバイル対応 */
@media (max-width: 768px) {
	/* フローティング通知バー - レイアウトはデスクトップと同じ、テキストサイズのみ調整 */
	.notice-title {
		font-size: 14px;
	}
	
	.notice-text {
		font-size: 12px;
	}
	
	.notice-btn {
		font-size: 12px;
		padding: 10px 16px;
	}
	
	#anniversary-event {
		padding: 40px 0;
	}
	
	.event-card {
		margin: 20px 15px;
		max-width: calc(100% - 30px);
	}
	
	.event-card-header {
		flex-direction: column;
		padding: 25px;
		gap: 20px;
		text-align: center;
	}
	
	.event-card-image {
		width: 150px;
	}
	
	.event-card-title h3 {
		font-size: 22px;
	}
	
	.event-subtitle {
		font-size: 14px;
	}
	
	.event-card-content {
		padding: 25px;
	}
	
	/* イベント情報リストのモバイル調整 */
	.event-info-item {
		flex-direction: column;
		gap: 12px;
		padding: 20px 0;
		text-align: left;
	}
	
	.info-header {
		justify-content: flex-start;
		min-width: auto;
	}
	
	.info-header strong {
		font-size: 18px;
		text-align: left;
	}
	
	.info-content {
		text-align: left;
		font-size: 14px;
	}
	
	.btn-event {
		padding: 15px 30px;
		font-size: 16px;
	}
}

/*
  20周年プレゼントキャンペーンセクション
------------------------------------*/

#giveaway-campaign {
	padding: 60px 20px;
	background: linear-gradient(135deg, rgb(248 246 241), rgb(242 239 232));
}

#giveaway-campaign .sec-ttl h2 span {
	background: linear-gradient(135deg, rgb(248 246 241), rgb(242 239 232));
}

.campaign-banner-section {
	margin: 40px 0;
	text-align: center;
}

.campaign-banner-section a {
	display: inline-block;
	transition: transform 0.3s ease;
}

.campaign-banner-section a:hover {
	transform: translateY(-5px);
}

/*
  20周年記念イベントセクション
------------*/

#anniversary-event {
	padding: 60px 0;
	background: linear-gradient(135deg, rgb(253 251 239), rgb(250 246 240));
}

#anniversary-event .sec-ttl h2 span {
	background: linear-gradient(135deg, rgb(253 251 239), rgb(250 246 240));
}

/* 統合イベントカード */
.event-card {
	background: white;
	border-radius: 20px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin: 40px 0;
}

.event-card-header {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 40px;
	background: #f3eec7;
	border-bottom: 1px solid #fceee6;
}

.event-card-image {
	flex-shrink: 0;
	width: 200px;
}

.event-card-image img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}

.event-card-title {
	flex: 1;
}

.event-card-title h3 {
	font-size: 24px;
	color: #d45a30;
	margin-bottom: 15px;
	line-height: 1.3;
}

.event-subtitle {
	font-size: 18px;
    color: #c04e28;
	line-height: 1.6;
	margin: 0;
}

.event-card-content {
	padding: 40px;
}

/* イベント情報リスト */
.event-info-list {
	margin-bottom: 40px;
}

.event-info-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 15px 0;
	border-bottom: 1px solid #fceee6;
}

.event-info-item:last-child {
	border-bottom: none;
}

.info-header {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	min-width: 120px;
	justify-content: flex-start;
}

.info-icon {
	font-size: 20px;
	min-width: 30px;
	text-align: center;
	flex-shrink: 0;
	margin-top: 2px;
	color: #ff8a5c;
}

.info-icon i {
	font-size: 18px;
}

.info-header strong {
	color: #d45a30;
	font-weight: bold;
	font-size: 16px;
	text-align: left;
}

.info-content {
	flex: 1;
	line-height: 1.6;
	text-align: left;
}

/* イベントのポイント */
.event-points {
	margin-bottom: 40px;
}

.event-points h4 {
	font-size: 22px;
	color: #d45a30;
	margin-bottom: 25px;
	font-family: "makimaru", sans-serif;
	text-align: center;
	position: relative;
}

.event-points h4::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: linear-gradient(135deg, #ff8a5c, #ff7a4d);
	border-radius: 2px;
}

.points-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.points-list li {
	position: relative;
	padding: 12px 0 12px 30px;
	border-bottom: 1px solid #f0f0f0;
	line-height: 1.6;
}

.points-list li:last-child {
	border-bottom: none;
}

.points-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #ff8a5c;
	font-weight: bold;
	font-size: 16px;
}

/* CTAボタン */
.event-cta {
	text-align: center;
}

.btn-event {
	display: inline-block;
	background: linear-gradient(135deg, #ff8a5c, #ff7a4d);
	color: white;
	padding: 18px 40px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(255, 138, 92, 0.4);
}

.btn-event:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 138, 92, 0.6);
}

/* モバイル対応 */
@media (max-width: 768px) {
	#anniversary-event {
		padding: 40px 0;
	}
	
	.event-card {
		margin: 20px auto;
		max-width: calc(100% - 30px);
	}
	
	.event-card-header {
		flex-direction: column;
		padding: 25px;
		gap: 20px;
		text-align: center;
	}
	
	.event-card-image {
		width: 100%;
		object-fit: cover;
	}
	
	.event-card-title h3 {
		font-size: 22px;
	}
	
	.event-subtitle {
		font-size: 14px;
	}
	
	.event-card-content {
		padding: 25px;
	}
	
	.event-info-item {
		flex-direction: column;
		gap: 8px;
		padding: 12px 0;
	}
	
	.info-icon {
		align-self: flex-start;
	}
	
	.btn-event {
		padding: 15px 30px;
		font-size: 16px;
	}
}

/*
  20周年プレゼントキャンペーンポップアップ
----------------------------------------*/

.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.popup-overlay.show {
	opacity: 1;
	visibility: visible;
}

.popup-content {
	background: white;
	border-radius: 20px;
	padding: 30px;
	max-width: 500px;
	width: 90%;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.popup-overlay.show .popup-content {
	transform: scale(1);
}

.popup-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	color: #999;
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s ease;
}

.popup-close:hover {
	background: #f5f5f5;
	color: #333;
}

.popup-image {
	text-align: center;
	margin-bottom: 20px;
}

.popup-image img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}

.popup-text {
	text-align: center;
}

.popup-title {
	font-size: 24px;
	color: #d45a30;
	margin-bottom: 10px;
	font-weight: bold;
	line-height: 1.3;
}

.popup-description {
	font-size: 16px;
	color: #333;
	margin-bottom: 25px;
	line-height: 1.6;
}

.popup-btn {
	display: inline-block;
	background: linear-gradient(135deg, #ff8a5c, #e86a3a);
	color: white;
	padding: 15px 30px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(255, 138, 92, 0.3);
}

.popup-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 138, 92, 0.4);
	background: linear-gradient(135deg, #ff7a4d, #d45a30);
}

/* モバイル用ポップアップ調整 */
@media (max-width: 768px) {
	.popup-content {
		padding: 25px 20px;
		margin: 20px;
		max-width: calc(100% - 40px);
	}
	
	.popup-title {
		font-size: 18px;
	}
	
	.popup-description {
		font-size: 14px;
	}
	
	.popup-btn {
		font-size: 14px;
		padding: 12px 25px;
	}
	
	.popup-image img {
	}
}

