@charset "UTF-8";
/* =========================================================
Reset
========================================================= */

/* ---------------------------------------------------------
Box Sizing
--------------------------------------------------------- */

html {
	box-sizing: border-box;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

/* ---------------------------------------------------------
Margin / Padding
--------------------------------------------------------- */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
figcaption,
blockquote,
table,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
}

/* ---------------------------------------------------------
Base
--------------------------------------------------------- */

html:focus-within {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	line-height: 1.5;
	text-rendering: optimizeSpeed;
}
.p-campaign {
	word-break: break-word;
	overflow-wrap: break-word;
}

/* ---------------------------------------------------------
List
--------------------------------------------------------- */

ul,
ol {
	list-style: none;
}

/* ---------------------------------------------------------
Link
--------------------------------------------------------- */

a {
	color: inherit;
	text-decoration: none;
	background-color: transparent;
}

a:focus {
	outline: none;
}

/* ---------------------------------------------------------
Media
--------------------------------------------------------- */

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

img {
	border-style: none;
}

/* ---------------------------------------------------------
Table
--------------------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th,
td {
	text-align: left;
	vertical-align: top;
}

/* ---------------------------------------------------------
Form
--------------------------------------------------------- */

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
	background: transparent;
	border: none;
	border-radius: 0;
	appearance: none;
	-webkit-appearance: none;
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"],
select {
	cursor: pointer;
}

textarea {
	resize: vertical;
}

button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
	cursor: default;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
	outline: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0;
	border: 0;
}

select::-ms-expand {
	display: none;
}

/* ---------------------------------------------------------
Checkbox / Radio
--------------------------------------------------------- */

input[type="checkbox"],
input[type="radio"] {
	appearance: auto;
	-webkit-appearance: auto;
}

/* ---------------------------------------------------------
Search
--------------------------------------------------------- */

input[type="search"] {
	appearance: none;
	-webkit-appearance: none;
}

/* ---------------------------------------------------------
Number
--------------------------------------------------------- */

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

input[type="number"] {
	-moz-appearance: textfield;
}

/* ---------------------------------------------------------
Details
--------------------------------------------------------- */

summary {
	display: list-item;
	cursor: pointer;
}

/* ---------------------------------------------------------
Horizontal Rule
--------------------------------------------------------- */

hr {
	height: 0;
	overflow: visible;
	border: 0;
	border-top: 1px solid currentColor;
}

/* ---------------------------------------------------------
Iframe
--------------------------------------------------------- */

iframe {
	border: 0;
}

/* ---------------------------------------------------------
Hidden
--------------------------------------------------------- */

[hidden] {
	display: none !important;
}

/* ---------------------------------------------------------
Focus
--------------------------------------------------------- */

:where(
	button,
	[type="button"],
	[type="submit"],
	[type="reset"],
	a,
	input,
	select,
	textarea,
	summary
):focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* ---------------------------------------------------------
Reduced Motion
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* =========================================================
Reset　END
========================================================= */

@charset "UTF-8";

/* =========================================================
Variables
========================================================= */

:root {
	/* Color */
	--color-text: #585757;
	--color-background: #fff;
	--color-border: #ddd;
	--color-link: #585757;
	--color-focus: #e63d91;

	/* Content Width */
	--container-width: 1200px;
	--container-width-min: 768px;
	--container-width-big: 1440px;

	/* Side Padding */
	--container-padding: 24px;
	--container-padding-sp: 16px;

	/* Font */
	--font-base:
		"Yu Gothic",
		"YuGothic",
		"Hiragino Kaku Gothic ProN",
		"Hiragino Sans",
		Meiryo,
		sans-serif;
}

/* =========================================================
Base
========================================================= */
body {
	min-width: 320px;
	color: var(--color-text);
	font-family: var(--font-base);
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.75;
	background-color: var(--color-background);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

main {
	display: block;
}

a {
	color: var(--color-link);
}

img {
	width: auto;
	max-width: 100%;
}

button {
	color: inherit;
}

::selection {
	color: #fff;
	background-color: var(--color-focus);
}

/* =========================================================
Layout
========================================================= */

/* ---------------------------------------------------------
Standard Container
--------------------------------------------------------- */

.l-container {
	width: 100%;
	max-width: calc(var(--container-width) + var(--container-padding) * 2);
	padding-right: var(--container-padding);
	padding-left: var(--container-padding);
	margin-right: auto;
	margin-left: auto;
}

/* ---------------------------------------------------------
Minimum Container
--------------------------------------------------------- */

.l-container-min {
	width: 100%;
	max-width: calc(var(--container-width-min) + var(--container-padding) * 2);
	padding-right: var(--container-padding);
	padding-left: var(--container-padding);
	margin-right: auto;
	margin-left: auto;
}

/* ---------------------------------------------------------
Large Container
--------------------------------------------------------- */

.l-container-big {
	width: 100%;
	max-width: calc(var(--container-width-big) + var(--container-padding) * 2);
	padding-right: var(--container-padding);
	padding-left: var(--container-padding);
	margin-right: auto;
	margin-left: auto;
}

/* =========================================================
Component - Button
========================================================= */

.c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 220px;
	min-height: 56px;
	padding: 12px 28px;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	letter-spacing: 0.05em;
	background-color: #333;
	border: 1px solid #333;
	border-radius: 4px;
	transition:
		color 0.2s ease,
		background-color 0.2s ease,
		border-color 0.2s ease,
		opacity 0.2s ease;
}

.c-btn--contact {
	background-color: #e63d91;
	border-color: #e63d91;
}

/* =========================================================
Component - Sub Hero
========================================================= */

.c-sub-hero {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 300px;
	padding: 60px 24px;
	text-align: center;
	background-color: #f5f5f5;
}

.c-sub-hero__text {
	font-size: clamp(3.2rem, 5vw, 5.6rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.08em;
}

/* =========================================================
Component - Breadcrumb
========================================================= */

.c-breadcrumb {
	padding-top: 16px;
	padding-bottom: 16px;
	font-size: 1.3rem;
}

.c-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}

.c-breadcrumb li {
	display: inline-flex;
	align-items: center;
}

.c-breadcrumb li:not(:last-child)::after {
	margin-left: 8px;
	color: #999;
	content: "/";
}

.c-breadcrumb a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

/* =========================================================
Utility - Display
========================================================= */

.u-only-sp {
	display: none !important;
}

.u-only-pc {
	display: none !important;
}

.u-only-tab {
	display: none !important;
}

.u-only-under-pc {
	display: none !important;
}

.u-only-360 {
	display: none !important;
}

.u-only-450 {
	display: none !important;
}

/* =========================================================
Utility - Accessibility
========================================================= */

.u-visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	white-space: nowrap !important;
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
}

/* =========================================================
Utility - Text
========================================================= */

.u-text-center {
	text-align: center !important;
}

.u-text-left {
	text-align: left !important;
}

.u-text-right {
	text-align: right !important;
}

/* =========================================================
Utility - Focus
========================================================= */

:where(
	a,
	button,
	input,
	select,
	textarea,
	summary
):focus-visible {
	outline: 2px solid var(--color-focus);
	outline-offset: 3px;
}

/* =========================================================
Common - Hover
========================================================= */

@media (hover: hover) {
	a {
		transition: opacity 0.2s ease;
	}

	a:hover {
		opacity: 0.7;
	}

	.c-btn:hover {
		color: #333;
		background-color: #fff;
		opacity: 1;
	}

	.c-btn--contact:hover {
		color: #e63d91;
		background-color: #fff;
	}

	.c-breadcrumb a:hover {
		text-decoration: none;
	}

}

/* =========================================================
Common - Tablet
========================================================= */

@media (min-width: 768px) and (max-width: 1023px) {
	.u-only-tab {
		display: block !important;
	}

	.u-only-tab-pc {
		display: block !important;
	}

	.u-only-under-pc {
		display: block !important;
	}

	.l-header__navigation-list {
		gap: 20px;
	}

	.l-header__navigation-link {
		font-size: 1.3rem;
	}
}

/* =========================================================
Common - PC
========================================================= */

@media (min-width: 1024px) {
	.u-only-pc {
		display: block !important;
	}

	.u-only-tab-pc {
		display: block !important;
	}
}

/* =========================================================
Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
	}
}

/* =========================================================
Campaign Page - Base
========================================================= */

body.p-campaign-page {
	--campaign-max-width: 800px;
	--campaign-color-text: #5e5552;
	--campaign-color-pink: #e63d91;
	--campaign-color-yellow: #fff100;
	--campaign-color-aqua: #C9E6E0;
	--campaign-color-sumikkogurashi: #ECDEED;
	--campaign-color-rilakkuma: #FFFCE4;
	--campaign-color-tarepanda: #FAD7B5;
	--campaign-color-afroken: #D7EBF9;
	min-width: 320px;
	color: var(--campaign-color-text);
	font-family:
		"Yu Gothic",
		"YuGothic",
		"Hiragino Kaku Gothic ProN",
		"Hiragino Sans",
		Meiryo,
		sans-serif;
	font-feature-settings: "palt";
	background-color: #ffffda;
	background-image: url("/ambeauty/image/campaign_2608/bg.jpg");
	background-position: center top;
	background-size: 700px auto;
	background-repeat: repeat;
}

.p-campaign {
	width: 100%;
}

.p-campaign__content {
	width: 100%;
	max-width: var(--campaign-max-width);
	margin: 0 auto;
	overflow: hidden;
	background-color: #fff;
}

.p-campaign [id] {
	scroll-margin-top: 24px;
}

/* =========================================================
Utility
========================================================= */

.u-visually-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	white-space: nowrap !important;
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
}

.p-campaign-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 1000;
	padding: 10px 16px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	background-color: #222;
	border-radius: 4px;
	transform: translateY(-160%);
	transition: transform 0.2s ease;
}

.p-campaign-skip-link:focus-visible {
	transform: translateY(0);
}

/* =========================================================
Campaign Header
========================================================= */
.midashi {
	text-align: center;
	margin-bottom: 0.5em;
}
.midashi_border {
	font-weight: 500!important;
	font-size: clamp(9px, 2.7027vw, 21.6px)!important;
	letter-spacing: 0.2em;
}

.p-campaign-header {
	position: relative;
	z-index: 10;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #eeeae7;
}

.p-campaign-header__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: var(--campaign-max-width);
	min-height: 48px;
	padding: 8px 18px;
	margin: 0 auto;
}

.p-campaign-header__brand {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1;
}

.p-campaign-header__brand-name {
	color: #3f3b39;
	font-family: Arial, sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.08em;
}

.p-campaign-header__brand-sub {
	margin-top: 3px;
	color: #77706d;
	font-family: Arial, sans-serif;
	font-size: 7px;
	letter-spacing: 0.04em;
}

.p-campaign-header__menu {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-end;
	color: #3f3b39;
	line-height: 1;
}

.p-campaign-header__menu-label {
	position: relative;
	padding-bottom: 4px;
	font-family: Arial, sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.p-campaign-header__menu-label::after {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	content: "";
}

.p-campaign-header__menu-sub {
	margin-top: 4px;
	font-size: 7px;
	letter-spacing: 0.08em;
}

/* =========================================================
Campaign Hero
========================================================= */

.p-campaign-hero {
	position: relative;
	background-color: #fff;
}

.p-campaign-hero__image {
	display: block;
	width: 100%;
	height: auto;
}

/* =========================================================
Campaign Introduction
========================================================= */

.p-campaign-intro {
	position: relative;
	padding: clamp(52px, 9vw, 88px) 0 0;
	text-align: center;
	background-color: #FFFDE5;
}

.p-campaign-intro__content {
	width: 100%;
	margin: 0 auto;
}
body.p-campaign-page main .p-campaign-intro__content h2 img {
	width: 93%;
	margin-left: auto;
	margin-right: auto;
}

.p-campaign-intro__brand {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
}

.p-campaign-intro__brand-name {
	color: #514b48;
	font-family: Arial, sans-serif;
	font-size: clamp(17px, 3vw, 24px);
	font-weight: 400;
	letter-spacing: 0.08em;
}

.p-campaign-intro__brand-sub {
	margin-top: 5px;
	color: #77706d;
	font-family: Arial, sans-serif;
	font-size: clamp(7px, 1.5vw, 11px);
	letter-spacing: 0.04em;
}

.p-campaign-intro__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: clamp(20px, 4vw, 32px);
	color: #58504d;
	font-weight: 400;
	line-height: 1.2;
}

.p-campaign-intro__title span {
	font-family:
		"Yu Mincho",
		"YuMincho",
		"Hiragino Mincho ProN",
		serif;
	font-size: clamp(28px, 6vw, 46px);
	letter-spacing: 0.08em;
}

.p-campaign-intro__title strong {
	margin-top: 3px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(35px, 7.8vw, 60px);
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0.02em;
}

.p-campaign-intro__description {
	margin-top: clamp(30px, 6vw, 48px);
	font-size: clamp(14px, 2.7vw, 19px);
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0.08em;
}

.p-campaign-intro__text {
	margin-top: 2em;
	font-size: clamp(9px, 5.6757vw, 45.4px);
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 0.06em;
	margin-bottom: 1em;
}
.p-campaign-intro__text_sub {
	font-weight: 600;
	font-size: clamp(9px, 3.7838vw, 30.3px);
}
.p-campaign-intro__illustration {
	display: block;
	width: min(60%, 370px);
	margin: clamp(36px, 7vw, 56px) auto 0;
}

/* =========================================================
Section Heading
========================================================= */

.p-campaign-section-heading {
	text-align: center;
}

.p-campaign-section-heading__english {
	color: #5b7c79;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(32px, 7vw, 52px);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
}

.p-campaign-section-heading__title {
	margin-top: 10px;
	color: #5b706e;
	font-size: clamp(13px, 2.5vw, 17px);
	font-weight: 500;
	letter-spacing: 0.16em;
}

/* =========================================================
Product Lineup
========================================================= */

.p-campaign-products {
	position: relative;
	padding: 0 15px;
	background-color: var(--campaign-color-aqua);
	padding-top: clamp(9px, 8.1081vw, 64.9px);
}

.p-campaign-products__content {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0 auto;
}

.p-campaign-products__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: clamp(34px, 7vw, 54px);
	margin-bottom: 50px;
}

.p-campaign-products__item {
	min-width: 0;
}

.p-campaign-products__item-link {
	display: block;
	height: 100%;
	background-color: #fff;
	border-radius: clamp(7px, 1.8vw, 12px);
	box-shadow: 0 5px 15px rgba(68, 92, 89, 0.1);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.p-campaign-products__item-image {
	display: flex;
	flex-direction: column;
}

.p-campaign-products__item-image-frame {
	display: grid;
	place-items: center;
	width: 100%;
	height: clamp(190px, 39vw, 290px);
	overflow: hidden;
}

.p-campaign-products__item-image-frame img {
	display: block;
	width: auto;
	height: 100%;
	object-fit: contain;
}

.p-campaign-products__item-caption {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: clamp(12px, 2.5vw, 18px);
	text-align: center;
}

.p-campaign-products__item-character {
	font-size: clamp(13px, 2.6vw, 17px);
	font-weight: 700;
	line-height: 1.5;
}

.p-campaign-products__item-type {
	margin-top: 5px;
	color: #746d69;
	font-size: clamp(10px, 2.1vw, 14px);
	line-height: 1.55;
}

.p-campaign-products__item--sumikkogurashi .p-campaign-products__item-title {
	width: 82%;
}
.p-campaign-products__item--sumikkogurashi .p-campaign-products__item-character {
	color: #a46ca9;
}

.p-campaign-products__item--rilakkuma .p-campaign-products__item-character {
	color: #bd8200;
}
.p-campaign-products__item--rilakkuma .p-campaign-products__item-title {
	width: 85%;
}

.p-campaign-products__item--tarepanda .p-campaign-products__item-character {
	color: #a56752;
}
.p-campaign-products__item--tarepanda .p-campaign-products__item-title {
	width: 75%;
}

.p-campaign-products__item--afroken .p-campaign-products__item-character {
	color: #088eaa;
}
.p-campaign-products__item--afroken .p-campaign-products__item-title {
	width: 65%;
}

.p-campaign-products__jump {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: clamp(9px, 64.8649vw, 518.9px);
	min-height: 44px;
	padding: 10px 24px;
	margin: clamp(38px, 7vw, 58px) auto 0;
	color: #fff;
	font-size: clamp(9px, 4.3243vw, 34.6px);
	font-weight: 700;
	letter-spacing: 0.08em;
	background-color: #97BEBD;
	border-radius: 9999px;
	transition:
		color 0.25s ease,
		background-color 0.25s ease;
		margin-bottom: clamp(9px, 56.7568vw, 454.1px);
}

.p-campaign-products__jump-arrow {
	font-size: 1.15em;
	line-height: 1;
}

/* =========================================================
Character Lineup Heading
========================================================= */

.p-campaign-characters {
	background-color: #fff;
}

.p-campaign-characters__heading {
	padding: clamp(42px, 8vw, 64px) 24px;
	text-align: center;
	background-color: #fff;
}

.p-campaign-characters__heading-english {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	min-height: 38px;
	padding: 8px 28px;
	color: #fff;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(17px, 3.5vw, 24px);
	letter-spacing: 0.08em;
	background-color: #8ba6a3;
	border-radius: 9999px;
}

.p-campaign-characters__heading-title {
	margin-top: 15px;
	color: #69615d;
	font-size: clamp(14px, 2.7vw, 18px);
	font-weight: 500;
	letter-spacing: 0.12em;
}

/* =========================================================
Character Section
========================================================= */

.p-campaign-character {
	position: relative;
	padding: clamp(9px, 20.2703vw, 162.2px) 0 clamp(9px, 63.7838vw, 510.3px);
}
.p-campaign-character--sumikkogurashi {
	background-color: var(--campaign-color-sumikkogurashi);
}

.p-campaign-character--rilakkuma {
	background-color: var(--campaign-color-rilakkuma);
	padding-top: clamp(9px, 34.0541vw, 272.4px);
	padding-bottom: clamp(9px, 45.9459vw, 367.6px);
}

.p-campaign-character--tarepanda {
	background-color: var(--campaign-color-tarepanda);
	padding-top: clamp(9px, 35.1351vw, 281.1px);
	padding-bottom: clamp(9px, 49.7297vw, 397.8px);
}

.p-campaign-character--afroken {
	background-color: var(--campaign-color-afroken);
	padding-top: clamp(9px, 29.1892vw, 233.5px);
	padding-bottom: clamp(9px, 18.9189vw, 151.4px);
}

.p-campaign-character__content {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0 auto;
}

.p-campaign-character__visual {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-campaign-character__illustration {
	display: block;
	object-fit: contain;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 999;
}

.p-campaign-character__title img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.p-campaign-character__visual h4 {
	text-align: center;
}
body.p-campaign-page main .p-campaign-character__visual h4 img {
	width: clamp(9px, 74.3243vw, 594.6px);
	margin-top: 30px;
}

.p-campaign-character--sumikkogurashi .p-campaign-character__illustration {
	transform: translate(-50%,-70%);
	width: 94%;
}

.p-campaign-character--sumikkogurashi .p-campaign-character__title {
	width: 88%;
}

.p-campaign-character--rilakkuma .p-campaign-character__illustration {
	width: 95%;
	transform: translate(-50%,-60%);
}

.p-campaign-character--rilakkuma .p-campaign-character__title {
	width: 85%;
}

.p-campaign-character--tarepanda .p-campaign-character__illustration {
	width: 69.5%;
	transform: translate(-50%, -56%);
}

.p-campaign-character--tarepanda .p-campaign-character__title {
	width: 83%;
}

.p-campaign-character--afroken .p-campaign-character__illustration {
	width: 49%;
	transform: translate(-50%, -56%);
}

.p-campaign-character--afroken .p-campaign-character__title {
	width: 50%;
}

.p-campaign-character__product {
	width: 100%;
	margin: clamp(34px, 7vw, 56px) auto 0;
}

.p-campaign-character__product-image {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/* =========================================================
Online Shop
========================================================= */
.p-campaign-shop__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	color: #5d5753;
	background-color: #f5f3f1;
	border-radius: 50%;
}

.p-campaign-shop__icon svg {
	display: block;
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.p-campaign-shop__text {
	min-width: 0;
}

.p-campaign-shop__label {
	color: #3f3b39;
	font-family: Arial, sans-serif;
	font-size: clamp(9px, 1.8vw, 12px);
	font-weight: 700;
	letter-spacing: 0.13em;
}

.p-campaign-shop__description {
	margin-top: 4px;
	color: #716965;
	font-size: clamp(10px, 2vw, 13px);
	line-height: 1.6;
}

.p-campaign-shop__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: clamp(112px, 21vw, 150px);
	min-height: 38px;
	padding: 8px 15px;
	color: #4b4542;
	font-size: clamp(10px, 2vw, 13px);
	font-weight: 700;
	line-height: 1.4;
	background-color: var(--campaign-color-yellow);
	border-radius: 3px;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		transform 0.25s ease;
}

/* =========================================================
Campaign Footer
========================================================= */

.p-campaign-footer {
	width: 100%;
	max-width: var(--campaign-max-width);
	padding: clamp(48px, 8vw, 72px) 24px;
	margin: 0 auto;
	text-align: center;
	background-color: #fff;
	border-top: 1px solid #eeeae7;
}

.p-campaign-footer__content {
	width: 100%;
	max-width: 620px;
	margin: 0 auto;
}

.p-campaign-footer__brand {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
}

.p-campaign-footer__brand-name {
	color: #403c3a;
	font-family: Arial, sans-serif;
	font-size: clamp(16px, 3.2vw, 22px);
	font-weight: 500;
	letter-spacing: 0.08em;
}

.p-campaign-footer__brand-sub {
	margin-top: 5px;
	color: #77706d;
	font-family: Arial, sans-serif;
	font-size: clamp(7px, 1.6vw, 10px);
	letter-spacing: 0.04em;
}

.p-campaign-footer__copyright {
	margin-top: clamp(24px, 5vw, 36px);
	color: #736c68;
	font-family: Arial, sans-serif;
	font-size: clamp(9px, 1.9vw, 12px);
	line-height: 1.7;
	letter-spacing: 0.02em;
}

/* =========================================================
Campaign Page - Hover / Focus
========================================================= */

@media (hover: hover) {
	.p-campaign-header__brand:hover,
	.p-campaign-header__menu:hover {
		opacity: 0.65;
	}

	.p-campaign-products__item-link:hover {
		transform: translateY(-5px);
		box-shadow: 0 10px 24px rgba(68, 92, 89, 0.16);
	}

	.p-campaign-products__jump:hover {
		color: #5b706e;
		background-color: #fff;
	}

	.p-campaign-shop__button:hover {
		color: #fff;
		background-color: var(--campaign-color-pink);
		transform: translateY(-2px);
	}

	.p-campaign-footer__brand:hover {
		opacity: 0.65;
	}
}

.p-campaign-header__brand:focus-visible,
.p-campaign-header__menu:focus-visible,
.p-campaign-products__item-link:focus-visible,
.p-campaign-products__jump:focus-visible,
.p-campaign-shop__button:focus-visible,
.p-campaign-footer__brand:focus-visible {
	outline: 3px solid var(--campaign-color-pink);
	outline-offset: 4px;
}

/* =========================================================
Campaign Page - Tablet / PC
========================================================= */

@media (min-width: 768px) {
	.p-campaign-header__content {
		min-height: 54px;
		padding-right: 24px;
		padding-left: 24px;
	}

	.p-campaign__content,
	.p-campaign-footer {
		border-right: 1px solid rgba(104, 149, 136, 0.2);
		border-left: 1px solid rgba(104, 149, 136, 0.2);
		box-shadow: 0 0 18px rgba(81, 116, 105, 0.08);
	}
}

/* =========================================================
Product Lineup
========================================================= */

.p-campaign-products__content {
	container-type: inline-size;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

/*
	デザイン基準
	ラッパー幅：370
	商品カード幅：170

	170 ÷ 370 × 100 = 45.9459%
*/

.p-campaign-products__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 6.4865cqw;
	width: 100%;
	margin-top: 6.4865cqw;
}

.p-campaign-products__item {
	--product-color: #b688bb;
	width: 48.9459%;
	overflow: hidden;
	background-color: #fff;
	border-radius: 2.1622cqw;
}

.p-campaign-products__item--sumikkogurashi.p-campaign-products__item-title{
	width: 70%;
}
.p-campaign-products__item--sumikkogurashi {
	--product-color: #b688bb;
}

.p-campaign-products__item--rilakkuma {
	--product-color: #fac423;
}

.p-campaign-products__item--tarepanda {
	--product-color: #bf7f70;
}

.p-campaign-products__item--afroken {
	--product-color: #00b3ec;
}

/* =========================================================
Product Lineup - Header
========================================================= */

.p-campaign-products__item-header {
	padding: 1.2919cqw 2.1622cqw 1.2919cqw;
	color: #fff;
	font-size: 3.2432cqw;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	background-color: var(--product-color);
}

.p-campaign-products__item-header .c-square {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 15.6757cqw;
	min-height: 5.4054cqw;
	padding: 0.2703cqw 2.7027cqw;
	margin-bottom: 1.0811cqw;
	font-size: 3.2432cqw;
	font-weight: 700;
	line-height: 1;
	border: 1px solid currentColor;
}

.p-campaign-products__item-price {
	display: block;
	margin-top: 0.5405cqw;
	font-size: 4.3243cqw;
	font-weight: 700;
	line-height: 1.2;
}

.p-campaign-products__item-header .c-yen {
	margin-left: 0.5405cqw;
	font-size: 2.4324cqw;
	font-weight: 700;
}

/* =========================================================
Product Lineup - Character Logo
========================================================= */

/*
	ロゴ幅
	124 ÷ 170 × 100 = 72.9412%
*/

.p-campaign-products__item-title {
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 14.0541cqw;
	padding: 0;
}

.p-campaign-products__item-title img {
	display: block;
	height: auto;
	margin-right: auto;
	margin-left: auto;
}

/* =========================================================
Product Lineup - Product Image
========================================================= */

/*
	商品画像幅
	57 ÷ 370 × 100 = 15.4054cqw
*/

.p-campaign-products__item-image {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin: 0;
}

.p-campaign-products__item-image-frame {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 35.6757cqw;
	padding: 1.6216cqw 2.7027cqw 2.7027cqw;
	overflow: visible;
}

.p-campaign-products__item-image-frame img {
	display: block;
	width: 15.4054cqw!important;
	max-width: none;
	height: auto;
	object-fit: contain;
}

.p-campaign-products__item-caption {
	display: none;
}

/* =========================================================
Product Lineup - More Button
========================================================= */

.p-campaign-products__item-more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.6216cqw;
	width: calc(100% - 5.9459cqw);
	min-height: 5.5cqw;
	padding: 0.8108cqw 2.1622cqw;
	margin: 0 2.973cqw 2.973cqw;
	color: var(--product-color);
	font-size: 2.8378cqw;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.18em;
	background-color: #fff;
	border: 1px solid var(--product-color);
	transition:
		color 0.2s ease,
		background-color 0.2s ease;
}

/* =========================================================
Product Lineup - Hover / Focus
========================================================= */

@media (hover: hover) {
	.p-campaign-products__item-more:hover {
		color: #fff;
		background-color: var(--product-color);
		opacity: 1;
	}
}

.p-campaign-products__item-more:focus-visible {
	outline: 2px solid var(--product-color);
	outline-offset: 3px;
}

/* =========================================================
Product Image Trigger
========================================================= */

.p-campaign-character__product-trigger {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	text-align: inherit;
	background-color: transparent;
	border: 0;
	cursor: zoom-in;
}

.p-campaign-character__product-trigger::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-color: rgba(255, 255, 255, 0);
	content: "";
	transition: background-color 0.2s ease;
}

.p-campaign-character__product-image {
	display: block;
	width: 100%;
	height: auto;
}

.p-campaign-character__product-zoom {
	position: absolute;
	right: 3%;
	bottom: 2%;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	padding: 0.55em 1em;
	color: #fff;
	font-size: clamp(11px, 1.8vw, 14px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	background-color: rgba(73, 65, 61, 0.75);
	border-radius: 9999px;
	pointer-events: none;
}

.p-campaign-character__product-zoom-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5em;
	height: 1.5em;
	font-size: 1.1em;
	line-height: 1;
	border: 1px solid currentColor;
	border-radius: 50%;
}

.p-campaign-character__product-trigger:focus-visible {
	outline: 3px solid var(--campaign-color-pink);
	outline-offset: 4px;
}

/* =========================================================
Product Lightbox
========================================================= */

.p-product-lightbox {
	width: auto;
	max-width: none;
	height: auto;
	max-height: none;
	padding: 0;
	margin: auto;
	overflow: visible;
	background-color: transparent;
	border: 0;
}

.p-product-lightbox::backdrop {
	background-color: rgba(0, 0, 0, 0.72);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}

.p-product-lightbox__content {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: 90dvh;
	padding: clamp(34px, 5vw, 52px) clamp(12px, 3vw, 28px) clamp(12px, 3vw, 28px);
	background-color: var(--lightbox-bg, #fff);
	border-radius: clamp(6px, 1.5vw, 12px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%)!important;
}

@media screen and (max-width:767px) {
	.p-product-lightbox__content {
		width: 90%;
		max-width: 550px;
		max-height: 90dvh;
		height: auto;
	}
}

.p-product-lightbox__close {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(34px, 5vw, 46px);
	height: clamp(34px, 5vw, 46px);
	padding: 0;
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: clamp(25px, 4vw, 36px);
	font-weight: 300;
	line-height: 1;
	background-color: var(--campaign-color-pink);
	border: 0;
	cursor: pointer;
}

.p-product-lightbox__close span {
	display: block;
	transform: translateY(-0.05em);
}

.p-product-lightbox__image-area {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	overflow: auto;
	overscroll-behavior: contain;
}

.p-product-lightbox__image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	object-fit: contain;
}

.p-product-lightbox__close:focus-visible {
	outline: 3px solid #fff;
	outline-offset: -6px;
}

/* =========================================================
Product Lightbox - Open State
========================================================= */

.p-product-lightbox[open] {
	animation: product-lightbox-fade-in 0.2s ease both;
}

.p-product-lightbox[open] .p-product-lightbox__content {
	animation: product-lightbox-scale-in 0.2s ease both;
}

body.is-product-lightbox-open {
	overflow: hidden;
}

/* =========================================================
Product Lightbox - Animation
========================================================= */

@keyframes product-lightbox-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes product-lightbox-scale-in {
	from {
		opacity: 0;
		transform: scale(0.96);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* =========================================================
Product Image Trigger - Hover
========================================================= */

@media (hover: hover) {
	.p-campaign-character__product-trigger:hover::after {
		background-color: rgba(255, 255, 255, 0.12);
	}

	.p-campaign-character__product-trigger:hover .p-campaign-character__product-zoom {
		background-color: var(--campaign-color-pink);
	}
}

/* =========================================================
Product Lightbox - Reduced Motion
========================================================= */

@media (prefers-reduced-motion: reduce) {
	.p-product-lightbox[open],
	.p-product-lightbox[open] .p-product-lightbox__content {
		animation: none;
	}
}

/* =========================================================
Campaign Shop
========================================================= */

.p-campaign-character__content {
	container-type: inline-size;
}

.p-campaign-shop {
	--shop-color: #b688bb;
	width: 100%;
	margin-top: 4.8649cqw;
}

.p-campaign-character--sumikkogurashi .p-campaign-shop {
	--shop-color: #b688bb;
}

.p-campaign-character--rilakkuma .p-campaign-shop {
	--shop-color: #fac423;
}

.p-campaign-character--tarepanda .p-campaign-shop {
	--shop-color: #bf7f70;
}

.p-campaign-character--afroken .p-campaign-shop {
	--shop-color: #00b3ec;
}

/* =========================================================
Campaign Shop - Detail Button
========================================================= */

.p-campaign-shop__detailbtn {
	width: 64.3243%;
	margin-right: auto;
	margin-left: auto;
}

.p-campaign-shop__detailbtn a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 9.4595cqw;
	padding: 1.3514cqw 4.0541cqw;
	color: #fff;
	font-size: clamp(14px, 4.0541cqw, 32px);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	letter-spacing: 0.08em;
	background-color: var(--shop-color);
	border-radius: 9999px;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

/* =========================================================
Campaign Shop - Cart Box
========================================================= */

.p-campaign-shop__cartbox {
	position: relative;
	width: 88%;
	padding: 3.2432cqw 3.5135cqw 2.4324cqw;
	margin: 4.8649cqw auto 0;
	color: #444;
	background-color: #fff;
	border-radius: 3.2432cqw;
}

.p-campaign-shop__cartbox h3 {
	font-size: clamp(9px, 4.5135vw, 31.1px);
	font-weight: 500;
	line-height: 1.35;
	text-align: center;
	letter-spacing: 0.02em;
}

.p-campaign-shop__cartbox .row {
	display: grid;
	grid-template-columns: 9.4595cqw minmax(0, 1fr) auto;
	align-items: center;
	gap: 2.1622cqw;
	margin-top: 2.1622cqw;
}

.p-campaign-shop__cartbox .type {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 9.4595cqw;
	aspect-ratio: 1;
	color: #fff;
	font-size: clamp(9px, 3.5135vw, 28.1px);
	font-weight: 700;
	line-height: 1;
	background-color: #888;
	border-radius: 1.6216cqw;
}

.p-campaign-shop__cartbox .product-name {
	min-width: 0;
	font-size: clamp(9px, 3.4324vw, 25.5px);
	font-weight: 400;
	line-height: 1.55;
	text-align: left;
}

.p-campaign-shop__cartbox .price {
	flex-shrink: 0;
	font-size: clamp(9px, 3.573vw, 27.8px);
	font-weight: 500;
	line-height: 1.4;
	white-space: nowrap;
}

/* =========================================================
Campaign Shop - Buy Button
========================================================= */

.p-campaign-shop__cartbox form {
	display: flex;
	justify-content: center;
	margin-top: 1.3514cqw;
}

.p-campaign-shop__cartbox form button {
	display: block;
	width: 31.6216cqw;
	max-width: none;
	padding: 0;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}

.p-campaign-shop__cartbox form button img {
	display: block;
	width: 100%;
	height: auto;
}

/* =========================================================
Campaign Shop - Hover / Focus
========================================================= */

@media (hover: hover) {
	.p-campaign-shop__detailbtn a:hover {
		opacity: 0.8;
		transform: translateY(-1px);
	}

	.p-campaign-shop__cartbox form button:hover {
		opacity: 0.8;
		transform: translateY(-1px);
	}
}

.p-campaign-shop__detailbtn a:focus-visible,
.p-campaign-shop__cartbox form button:focus-visible {
	outline: 2px solid var(--shop-color);
	outline-offset: 3px;
}

.p-campaign-intro__logo {
	text-align: center;
	margin-bottom: clamp(9px, 11.0811vw, 88.6px);
}
body.p-campaign-page main .p-campaign-intro__logo img {
	width: 39.45%;
	margin-left: auto;
	margin-right: auto;
}