/* =========================
	 Base / Token
========================= */
:root {
	--font-ja: 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN', serif;
	--font-en: 'Lora', serif;
	--font-en-accent: 'Allura', cursive;
	--color-text: #393327;
	--color-sub: #8b6c3a;
	--color-bg: #fafafa;
	--color-bg-alt: #ffffff;
	--color-primary: #8b6c3a;
	--color-border: #e8dfd2;
	--container: 1120px;
	--radius: 16px;
	--shadow: 0 8px 24px rgba(57, 51, 39, 0.08);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-ja);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.7;
	letter-spacing: 0.02em;
}

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

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

.container {
	width: calc(100% - 48px);
	max-width: var(--container);
	margin-inline: auto;
}

.section {
	padding: 88px 0;
}

.section--alt {
	background: var(--color-bg-alt);
}

.section-en {
	margin: 0 0 8px;
	font-family: var(--font-en);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.18em;
	color: var(--color-primary);
}

.section-title {
	margin: 0 0 36px;
	font-size: 40px;
	line-height: 1.25;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 14px 28px;
	border-radius: 999px;
	background: var(--color-primary);
	color: #ffffff;
	font-weight: 700;
	transition: opacity 0.3s ease;
}

.cta-button:hover {
	opacity: 0.7;
}

.cta-button--sm {
	min-height: 44px;
	padding: 10px 18px;
	font-size: 16px;
}

/* =========================
	 Header
========================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: #ffffff;
	border-bottom: 1px solid var(--color-border);
}

.header-inner {
	min-height: 124px;
}

.header-nav {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	column-gap: 42px;
	min-height: 124px;
	font-family: var(--font-en);
}

.header-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 34px;
}

.header-menu--left {
	justify-content: flex-end;
}

.header-menu--right {
	justify-content: flex-start;
}

.header-link {
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.02em;
	color: #393327;
}

.header-link:hover {
	color: #8b6c3a;
}

.header-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.header-logo img {
	width: 114px;
	height: auto;
}

.line-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 169px;
	height: 50px;
	background: linear-gradient(180deg, #b08d55 0%, #9a7745 48%, #8b6c3a 100%);
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.16em;
	box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
	transition: opacity 0.3s ease;
}

.line-button:hover {
	opacity: 0.7;
}

.header-line-button-sp,
.header-hamburger,
.header-drawer {
	display: none;
}

.header-line-button-sp {
	align-items: center;
	justify-content: center;
	width: 112px;
	height: 36px;
	background: linear-gradient(180deg, #b08d55 0%, #9a7745 48%, #8b6c3a 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.08em;
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.header-hamburger {
	position: relative;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.header-hamburger-line {
	position: absolute;
	left: 6px;
	width: 24px;
	height: 1px;
	background: var(--color-text);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.header-hamburger-line:nth-child(1) {
	top: 10px;
}

.header-hamburger-line:nth-child(2) {
	top: 17px;
}

.header-hamburger-line:nth-child(3) {
	top: 24px;
}

.header-hamburger[aria-expanded='true'] .header-hamburger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.header-hamburger[aria-expanded='true'] .header-hamburger-line:nth-child(2) {
	opacity: 0;
}

.header-hamburger[aria-expanded='true'] .header-hamburger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.header-drawer {
	position: fixed;
	top: 68px;
	left: 0;
	width: 100vw;
	height: 602px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 250px;
	background: transparent;
	border: 0;
	box-shadow: none;
	z-index: 20;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.header-drawer[hidden] {
	display: none;
}

.header-drawer.is-open {
	opacity: 1;
	pointer-events: auto;
}

.header-drawer-backdrop {
	background-image: linear-gradient(rgba(140, 109, 59, 0.7), rgba(140, 109, 59, 0.7)), url('../img/mv-bg.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.header-drawer-panel {
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 42px 20px 24px;
	transform: translateX(250px);
	transition: transform 0.3s ease;
}

.header-drawer.is-open .header-drawer-backdrop {
	opacity: 1;
}

.header-drawer.is-open .header-drawer-panel {
	transform: translateX(0);
}

.header-drawer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 32px;
	justify-items: center;
}

.header-drawer-link {
	display: block;
	padding: 0;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: 0.08em;
	color: var(--color-text);
	border: 0;
	text-align: center;
}

.header-drawer-sns {
	margin: 42px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.header-drawer-sns a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #4a4032;
	font-size: 18px;
	color: #fff;
}

body.is-menu-open {
	overflow: hidden;
}

/* =========================
	 Hero
========================= */
.hero {
	background: #ffffff url('../img/mv-bg.png') center center / cover no-repeat;
	min-height: 681px;
}

.hero-inner {
	display: flex;
	align-items: center;
	min-height: 681px;
}

.hero-copy {
	max-width: 940px;
}

.hero-title {
	margin: 0;
	font-family: var(--font-ja);
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: 0.01em;
}

.hero-main-em {
	font-size: 40px;
}

.hero-main-base {
	font-size: 32px;
}

.hero-subtext {
	margin: 32px 0 0;
	font-family: var(--font-ja);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(57, 51, 39, 1);
}

.hero-br-sp {
	display: none;
}

.price-copy-br-sp {
	display: none;
}

/* =========================
	 Card
========================= */
.card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.card {
	padding: 28px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.card h3 {
	margin: 0 0 12px;
	font-size: 22px;
}

.card p {
	margin: 0;
	font-size: 16px;
}

/* =========================
	 Voice / Access / Contact
========================= */
.voice-list {
	display: grid;
	gap: 80px;
  margin-top: 80px;
}

#voice .section-title {
	color: rgba(139, 108, 58, 1);
	font-size: 32px;
	line-height: 48px;
  text-align: center;
}

.voice-br-sp {
	display: none;
}

.voice-row {
	display: grid;
	grid-template-columns: 1fr 450px;
	gap: 95px;
	align-items: center;
}

.voice-row--reverse {
	grid-template-columns: 450px 1fr;
}

.voice-content {
	margin: 0;
	padding: 0;
}

.voice-title {
	margin: 0;
	font-size: 24px;
	line-height: 36px;
	letter-spacing: 0.1em;
	font-weight: 600;
}

.voice-description {
	margin: 18px 0 0;
	font-size: 16px;
	line-height: 32px;
	letter-spacing: 0.05em;
}

.voice-meta {
	margin: 18px 0 0;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.05em;
	font-weight: 400;
	text-align: right;
}

.voice-photo {
	width: 450px;
	height: 300px;
	border-radius: 0;
	background-color: #ece6dc;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.voice-photo--01 {
	background-image: linear-gradient(rgba(236, 230, 220, 0.3), rgba(236, 230, 220, 0.3)), url('../img/voice01.png');
}

.voice-photo--02 {
	background-image: linear-gradient(rgba(236, 230, 220, 0.3), rgba(236, 230, 220, 0.3)), url('../img/voice02.png');
}

.voice-photo--03 {
	background-image: linear-gradient(rgba(236, 230, 220, 0.3), rgba(236, 230, 220, 0.3)), url('../img/voice03.png');
}

.owner-profile {
	padding: 104px 0 110px;
	background: rgba(255, 255, 255, 1);
}

#owner .container {
	width: 100%;
	max-width: none;
	padding-left: 280px;
	padding-right: 280px;
}

.owner-title {
	margin: 0;
	font-family: var(--font-en);
	font-size: 56px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-align: center;
}

.owner-subtitle {
	margin: 30px 0 0;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.2em;
	text-align: center;
}

.owner-main {
	margin-top: 70px;
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 64px;
	align-items: stretch;
}

.owner-photo-wrap {
	width: 360px;
	height: 360px;
}

.owner-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.owner-info {
	height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.owner-head-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.owner-name {
	margin: 0;
	font-family: var(--font-en);
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.03em;
}

.owner-sns {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	gap: 16px;
}

.owner-sns a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #4a4032;
	color: #ffffff;
	font-size: 18px;
	transition: opacity 0.3s ease;
}

.owner-sns a:hover {
	opacity: 0.7;
}

.owner-bio {
	margin: 32px 0 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.05em;
}

.owner-message {
	margin-top: 72px;
	padding: 48px 64px;
	border: 1px solid #b6a387;
	background: transparent;
}

.owner-message-title {
	margin: 0;
	font-family: var(--font-en-accent);
	font-size: 65px;
	line-height: 1;
	text-align: center;
	color: var(--color-primary);
}

.owner-message-text {
	margin: 42px 0 0;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.05em;
}

/* =========================
	 Onayami
========================= */
.onayami {
	height: 481px;
	background: #ffffff url('../img/depressed-bg.png') center center / cover no-repeat;
}

.onayami-inner {
	max-width: none;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	padding-left: 280px;
	padding-right: 670px;
	color: #393327;
}

.onayami-title {
	margin: 0;
	font-size: 24px;
	line-height: 1.5;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.onayami-list {
	margin: 48px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 22px;
	font-size: 16px;
	line-height: 2;
	letter-spacing: 0.05em;
}

.onayami-list li {
	position: relative;
	padding-left: 44px;
	min-height: 24px;
	display: flex;
	align-items: center;
}

.onayami-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 24px;
	height: 24px;
	border: 1.8px solid #5f5340;
	border-radius: 2px;
	transform: translateY(-50%);
}

.onayami-list li::after {
	content: '';
	position: absolute;
	left: 7px;
	top: 50%;
	width: 8px;
	height: 14px;
	border-right: 1.8px solid #5f5340;
	border-bottom: 1.8px solid #5f5340;
	transform: translateY(-60%) rotate(40deg);
}

/* =========================
	 Feature
========================= */
.feature {
	padding: 104px 0 120px;
	background: #ffffff;
}

#feature .container {
	width: 100%;
	max-width: none;
	padding-left: 190px;
	padding-right: 190px;
}

.feature-list {
	display: grid;
	margin-top: 80px;
	gap: 80px;
}

.feature-lead {
	margin: 0;
	font-size: 32px;
	line-height: 1.55;
	letter-spacing: 0.1em;
	font-weight: 600;
	text-align: center;
  color: var(--color-primary);
}

.feature-br-sp {
	display: none;
}

.feature-triangle {
	width: 56px;
	height: 56px;
	margin: 20px auto 0;
	border-left: 1px solid rgba(139, 108, 58, 1);
	border-bottom: 1px solid rgba(139, 108, 58, 1);
  transform: rotate(-45deg);
}

.section-block-title {
	margin: 40px 0 0;
	font-family: var(--font-en);
	font-size: 56px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-align: center;
}

.section-block-subtitle {
	margin: 30px 0 0;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.2em;
	text-align: center;
}

.feature-item {
	display: grid;
	grid-template-columns: 450px 1fr;
	gap: 72px;
	align-items: center;
}

.feature-image {
	width: 450px;
	height: 330px;
	object-fit: cover;
}

.feature-copy {
	color: #393327;
}

.feature-title {
	margin: 0;
	position: relative;
	padding-left: 30px;
	font-size: 28px;
	line-height: 1.5;
	letter-spacing: 0.1em;
	font-weight: 400;
}

.feature-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgba(139, 108, 58, 1);
}

.feature-text {
	margin: 20px 0 0;
	padding-left: 30px;
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: 0.05em;
}

.yoga-banner {
	display: flex;
	justify-content: center;
	background: #ffffff;
}

.yoga-banner-image {
	width: 1440px;
	height: 547px;
	object-fit: cover;
	max-width: 100%;
}

.gym-banner {
	display: flex;
	justify-content: center;
	background: #ffffff;
}

.gym-banner-image {
	width: 1440px;
	height: 400px;
	object-fit: cover;
	max-width: 100%;
}

/* =========================
	 Access
========================= */
.access-section {
	padding: 104px 0 120px;
	background: #ffffff;
}

#access .container {
	width: 100%;
	max-width: none;
	padding-left: 180px;
	padding-right: 180px;
}

.access-heading {
	display: flex;
	align-items: flex-start;
	gap: 28px;
}

.access-title-wrap {
	display: flex;
	flex-direction: column;
}

.access-title {
	margin: 0;
	font-family: var(--font-en);
	font-size: 56px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
}

.access-subtitle {
	margin: 40px 0 0;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.2em;
}

.access-line {
	display: inline-block;
	width: 340px;
	height: 1px;
	margin-top: 28px;
	background: rgba(139, 108, 58, 1);
}

.access-content {
	margin-top: 72px;
	display: grid;
	grid-template-columns: 1fr 520px;
	gap: 80px;
	align-items: start;
}

.access-name {
	margin: 0;
	font-family: var(--font-en);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.1em;
	color: var(--color-text);
}

.access-text {
	margin: 18px 0 0;
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: 0.05em;
	color: var(--color-text);
}

.access-map-wrap {
	width: 520px;
	height: 390px;
}

.access-map {
	display: block;
	width: 520px;
	height: 390px;
	border: 0;
}

/* =========================
	 Member's Voice (new)
========================= */
.members-voice {
	padding: 104px 0 120px;
	background: #ffffff url('../img/member-bg.png') center center / cover no-repeat;
}

#members-voice .container {
	width: 100%;
	max-width: none;
	padding-left: 190px;
	padding-right: 190px;
}

.mvoice-heading {
	display: flex;
	align-items: flex-start;
	gap: 28px;
}

.mvoice-title-wrap {
	display: flex;
	flex-direction: column;
}

.mvoice-title {
	margin: 0;
	font-family: var(--font-en);
	font-size: 56px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
}

.mvoice-subtitle {
	margin: 40px 0 0;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.2em;
}

.mvoice-line {
	display: inline-block;
	width: 340px;
	height: 1px;
	margin-top: 28px;
	background: rgba(139, 108, 58, 1);
}

.mvoice-list {
	margin-top: 72px;
	display: grid;
	gap: 80px;
}

.mvoice-item {
	display: grid;
	grid-template-columns: 450px 1fr;
	gap: 80px;
	align-items: center;
}

.mvoice-item--reverse {
	grid-template-columns: 1fr 450px;
}

.mvoice-item--reverse .mvoice-image {
	order: 2;
}

.mvoice-item--reverse .mvoice-content {
	order: 1;
}

.mvoice-image {
	width: 450px;
	height: 330px;
	object-fit: cover;
}

.mvoice-item-title {
	margin: 0;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0.1em;
	font-weight: 600;
  color: var(--color-primary);
}

.mvoice-text {
	margin: 18px 0 0;
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: 0.05em;
}

.mvoice-meta {
	margin: 18px 0 0;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

/* =========================
	 Flow
========================= */
.flow-section {
	padding: 104px 0 120px;
	background: #fff;
}

#flow .container {
	width: 100%;
	max-width: none;
	padding-left: 190px;
	padding-right: 190px;
}

.flow-heading {
	display: flex;
	align-items: flex-start;
	gap: 28px;
}

.flow-title-wrap {
	display: flex;
	flex-direction: column;
}

.flow-title {
	margin: 0;
	font-family: var(--font-en);
	font-size: 56px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
}

.flow-subtitle {
	margin: 40px 0 0;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.2em;
}

.flow-line {
	display: inline-block;
	width: 340px;
	height: 1px;
	margin-top: 28px;
	background: rgba(139, 108, 58, 1);
  margin-left: -70px;
}

.flow-list {
	margin-top: 72px;
	display: grid;
	grid-template-columns: repeat(3, 300px);
	justify-content: center;
	gap: 80px;
}

.flow-item {
	width: 300px;
}

.flow-image {
	display: block;
	width: 300px;
	height: 300px;
	object-fit: cover;
}

.flow-step {
	margin: 24px 0 0;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.1em;
	color: var(--color-primary);
	text-align: left;
}

.flow-item-title {
	margin: 16px 0 0;
	font-size: 22px;
	line-height: 1.5;
	letter-spacing: 0.1em;
	font-weight: 600;
	color: var(--color-text);
	text-align: left;
}

.flow-item-description {
	margin: 16px 0 0;
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: 0.05em;
	color: var(--color-text);
	text-align: left;
}

/* =========================
	 Q&A
========================= */
.qa-section {
	padding: 104px 0 120px;
	background: #fff;
}

#qa .container {
	width: 100%;
	max-width: none;
	padding-left: 280px;
	padding-right: 280px;
}

.qa-title {
	margin: 0;
	font-family: var(--font-en);
	font-size: 56px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
}

.qa-list {
	margin-top: 72px;
	display: grid;
	gap: 80px;
}

.qa-item {
	display: grid;
	gap: 35px;
}

.qa-row--a {
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(232, 232, 232, 1);
}

.qa-row {
	display: grid;
	grid-template-columns: 30px 1fr;
	align-items: start;
	column-gap: 16px;
}

.qa-label-q,
.qa-label-a,
.qa-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.9;
	letter-spacing: 0.05em;
}

.qa-label-q {
	font-family: var(--font-en);
	line-height: 1.9;
  color: var(--color-primary);
}

.qa-label-a {
	font-family: var(--font-en);
  color: var(--color-primary);
}

/* =========================
	 Price
========================= */
.price-section {
	height: 660px;
	background: #ffffff url('../img/price-bg.png') center center / cover no-repeat;
}

.price-inner {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #393327;
}

.price-section .section-block-title {
	margin-top: 0;
}

.price-section .section-block-subtitle {
	margin-top: 18px;
}

.price-main {
	margin: 80px 0 0;
	line-height: 1;
	font-family: var(--font-en);
  color: var(--color-primary);
}

.price-main-label {
	font-family: var(--font-ja);
	font-size: 40px;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.price-main-yen {
	font-size: 64px;
	font-weight: 500;
	letter-spacing: 0.03em;
	margin-left: 12px;
}

.price-main-value {
	font-size: 80px;
	font-weight: 500;
	letter-spacing: 0.03em;
}

.price-main-tax {
	font-family: var(--font-ja);
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-left: 8px;
}

.price-copy-1 {
	margin: 36px 0 0;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0.1em;
	font-weight: 600;
  color: var(--color-primary);
}

.price-copy-2 {
	margin: 32px 0 0;
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: 0.1em;
  color: var(--color-primary);
}

.price-note {
	margin: 22px 0 0;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0.02em;
  color: var(--color-text);
}

/* =========================
	 Campaign
========================= */
.campaign-section {
	padding: 84px 0;
	background: #ffffff url('../img/campaign-bg-pc.png') center center / cover no-repeat;
}

.campaign-box {
	width: 1060px;
	max-width: calc(100% - 48px);
	height: 721px;
	margin: 0 auto;
	background: #ffffff;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.campaign-content {
	width: calc(100% - 120px);
	max-width: 820px;
	text-align: center;
}

.campaign-title-wrap {
	width: 100%;
	max-width: 882px;
	margin: 56px auto 0;
	position: relative;
}

.campaign-badge {
	position: absolute;
	right: 0;
	bottom: -75px;
	margin: 0;
	padding: 10px 26px;
	border: 1px solid var(--color-primary);
	background: #fff;
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0;
	font-weight: 500;
	color: var(--color-primary);
}

.campaign-badge::after {
	content: "";
	position: absolute;
	left: 26px;
	bottom: -10px;
	width: 16px;
	height: 16px;
	background: #fff;
	border-right: 1px solid var(--color-primary);
	border-bottom: 1px solid var(--color-primary);
	transform: rotate(45deg);
}

.campaign-title {
	width: 100%;
	margin: 0;
	padding: 22px 0;
	border-top: 1px solid var(--color-primary);
	border-bottom: 1px solid var(--color-primary);
	font-size: 40px;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0;
	color: var(--color-primary);
	text-align: center;
}

.campaign-course {
	margin: 86px 0 0;
	font-size: 28px;
	line-height: 1;
	letter-spacing: 0.15em;
	font-weight: 400;
	color: var(--color-text);
	text-align: center;
}

.campaign-price-row {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
}

.campaign-price-normal {
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.campaign-price-label {
	margin: 0;
	font-size: 24px;
	line-height: 1;
	letter-spacing: 0.05em;
	font-weight: 400;
	color: var(--color-text);
}

.campaign-price-value {
	margin: 20px 0 0;
	font-size: 40px;
	line-height: 1;
	letter-spacing: 0.1em;
	font-weight: 400;
	color: var(--color-text);
}

.campaign-price-value span {
	font-size: 24px;
	margin-left: 6px;
	line-height: 1;
}

.campaign-price-arrows {
	display: flex;
	align-items: center;
	gap: 6px;
}

.campaign-price-arrow {
	width: 30px;
	height: 30px;
	border-bottom: 1px solid var(--color-primary);
	border-right: 1px solid var(--color-primary);
  transform: rotate(-45deg);
}

.campaign-price-free {
	margin: 0;
	display: inline-flex;
	align-items: end;
	align-self: flex-start;
	gap: 2px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0;
	text-align: left;
	color: var(--color-primary);
}

.campaign-price-free-yen {
	display: block;
	font-size: 72px;
	line-height: 1;
	align-self: end;
}

.campaign-price-free-value {
	display: block;
	font-size: 160px;
	line-height: 1;
	align-self: end;
}

.campaign-period-row {
	margin-top: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.campaign-period-label {
	margin: 0;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0;
	font-weight: 400;
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
	padding: 9px 16px;
}

.campaign-period-date {
	margin: 0;
	font-size: 20px;
	line-height: 1;
	letter-spacing: 0;
	font-weight: 400;
	color: var(--color-primary);
}

.campaign-button {
	width: 100%;
	max-width: 600px;
	height: auto;
	margin: 52px auto 0;
	display: inline-flex;
	position: relative;
	align-items: center;
	justify-content: center;
	padding: 26px 82px 26px 68px;
	border-radius: 2px;
	background: linear-gradient(180deg, #b48f55 0%, #9f7b47 50%, #89683b 100%);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
	color: #ffffff;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.08em;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-button > span:first-child {
	width: 100%;
	text-align: center;
}

.campaign-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.campaign-button-arrow {
	position: absolute;
	right: 44px;
	top: 50%;
	width: 20px;
	height: 20px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: translateY(-50%) rotate(45deg);
	flex-shrink: 0;
}

.site-footer {
	background: #ffffff;
	border-top: 1px solid var(--color-border);
	height: 264px;
}

.footer-main {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding-top: 36px;
	padding-bottom: 24px;
}

.footer-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.footer-logo img {
	width: 112px;
	height: auto;
}

.footer-nav-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 32px;
	font-family: var(--font-en);
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.08em;
	color: var(--color-text);
}


.footer-sns {
	margin: 40px 0 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
}

.footer-sns a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #4a4032;
	color: #ffffff;
	font-size: 18px;
	transition: opacity 0.3s ease;
}

.footer-sns a:hover {
	opacity: 0.7;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.footer-note {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	letter-spacing: 0.02em;
	color: var(--color-text);
}

.footer-copy {
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.06em;
	color: var(--color-text);
	white-space: nowrap;
}

/* =========================
	 Responsive (Tablet / SP)
	 - max-width: 768px
========================= */
@media (max-width: 768px) {
	.container {
		width: calc(100% - 32px);
		max-width: 1120px;
	}

	.header-inner {
		min-height: 68px;
		padding: 0;
		position: relative;
	}

	.header-nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
		column-gap: 0;
		min-height: 68px;
	}

	.header-menu--left,
	.header-menu--right,
	.line-button {
		display: none;
	}

	.header-logo {
		order: 1;
	}

	.header-logo img {
		width: 72px;
	}

	.header-line-button-sp {
		display: inline-flex;
		order: 2;
		margin-left: auto;
		margin-right: 14px;
	}

	.header-hamburger {
		display: inline-block;
		order: 3;
	}

	.header-drawer {
		display: block;
	}

	.hero {
		background: #ffffff url('../img/mv-bg_sp.png') center center / cover no-repeat;
		min-height: 602px;
	}

	.hero-inner,
	.card-grid,
	.plan-grid,
	.access-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.hero-inner {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		min-height: 602px;
		padding-top: 40px;
	}

	.hero-copy {
		max-width: 100%;
		text-align: center;
	}

	.hero-title {
		text-align: center;
	}

	.hero-title span:nth-of-type(3),
	.hero-title span:nth-of-type(4) {
		display: block;
	}

	.hero-main-em {
		font-size: 24px;
	}

	.hero-main-base {
		font-size: 22px;
	}

	.hero-subtext {
		margin-top: 12px;
		font-size: 14px;
		line-height: 1.6;
	}

	.hero-br-sp {
		display: inline;
	}

  #voice .section-title {
    font-size: 20px;
    margin-bottom: 0;
  }

	.onayami {
		height: auto;
		min-height: 0;
		background: rgba(250, 250, 250, 1);
	}

	.onayami::before {
		content: '';
		display: block;
		width: 100%;
		height: 250px;
		background: url('../img/depressed-bg_sp.png') center center / cover no-repeat;
	}

	.onayami-inner {
		height: auto;
		padding-top: 52px;
		padding-bottom: 52px;
		padding-left: 32px;
		padding-right: 32px;
	}

	.onayami-title {
		font-size: 24px;
	}

	.onayami-list {
		font-size: 16px;
		line-height: 1.9;
	}

	.onayami-list {
		margin-top: 28px;
		gap: 14px;
	}

	.onayami-list li {
		padding-left: 42px;
		min-height: 24px;
	}

	.onayami-list li::before {
		top: 5px;
		width: 24px;
		height: 24px;
		transform: none;
	}

	.onayami-list li::after {
		left: -2px;
		top: 44%;
		width: 8px;
		height: 14px;
		transform: translateY(-60%) rotate(40deg);
	}

	.feature {
		padding: 48px 0 56px;
	}

	#feature .container {
		width: calc(100% - 32px);
		max-width: 1120px;
		padding-left: 0;
		padding-right: 0;
	}

	.feature-list {
		margin-top: 48px;
		gap: 48px;
	}

	.feature-lead {
		font-size: 28px;
		line-height: 1.5;
	}

	.feature-br-sp {
		display: inline;
	}

	.feature-triangle {
		width: 30px;
		height: 30px;
		margin-top: 28px;
	}

	.section-block-title {
		margin-top: 32px;
		font-size: 28px;
	}

	.section-block-subtitle {
		margin-top: 16px;
		font-size: 14px;
	}

	.feature-item {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.feature-image {
		width: 100%;
		height: auto;
		aspect-ratio: 15 / 11;
	}

	.feature-copy {
		padding-left: 0;
	}

	.feature-title {
		padding-left: 18px;
		font-size: 18px;
	}

	.feature-text {
		padding-left: 0;
		font-size: 16px;
		line-height: 1.8;
	}

	.yoga-banner-image {
		content: url('../img/yoga-sp.png');
		width: 100%;
		height: 250px;
		object-fit: cover;
	}

	.gym-banner-image {
		content: url('../img/gym-sp.png');
		width: 100%;
		height: auto;
		object-fit: cover;
	}

	.access-section {
		padding: 72px 0 80px;
	}

	#access .container {
		width: calc(100% - 32px);
		max-width: 1120px;
		padding-left: 0;
		padding-right: 0;
	}

	.access-title {
		font-size: 40px;
	}

	.access-subtitle {
		margin-top: 16px;
	}

	.access-line {
		width: 220px;
		margin-top: 20px;
	}

	.access-content {
		margin-top: 48px;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.access-name {
		font-size: 28px;
	}

	.access-map-wrap,
	.access-map {
		width: 100vw;
		max-width: none;
		height: 360px;
	}

	.access-map-wrap {
		margin-left: calc(50% - 50vw);
	}

	.members-voice {
		padding: 72px 0 56px;
	}

	#members-voice .container {
		width: calc(100% - 32px);
		max-width: 1120px;
		padding-left: 0;
		padding-right: 0;
	}

	.mvoice-title {
		font-size: 28px;
	}

	.mvoice-subtitle {
		margin-top: 16px;
	}

	.mvoice-line {
		display: none;
	}

	.mvoice-list {
		margin-top: 48px;
		gap: 40px;
	}

	.mvoice-item,
	.mvoice-item--reverse {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.mvoice-item--reverse .mvoice-image,
	.mvoice-item--reverse .mvoice-content {
		order: initial;
	}

	.mvoice-image {
		width: 100%;
		height: auto;
		aspect-ratio: 15 / 11;
	}

	.mvoice-item-title {
		font-size: 18px;
	}

	.mvoice-text {
		font-size: 16px;
	}

	.flow-section {
		padding: 72px 0 56px;
    background: rgba(250, 250, 250, 1);
	}

	#flow .container {
		width: calc(100% - 32px);
		max-width: 1120px;
		padding-left: 0;
		padding-right: 0;
	}

	.flow-title {
		font-size: 28px;
	}

	.flow-subtitle {
		margin-top: 16px;
	}

	.flow-line {
		display: none;
	}

	.flow-list {
		margin-top: 48px;
		grid-template-columns: repeat(2, 300px);
		justify-content: center;
		gap: 32px;
	}

	.flow-item {
		width: 100%;
		max-width: 300px;
	}

	.flow-image {
		width: 100%;
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.flow-step {
		font-size: 16px;
	}

	.flow-item-title {
		font-size: 22px;
	}

	.flow-item-description {
		font-size: 16px;
	}

	.qa-section {
		padding: 40px 0 56px;
	}

	#qa .container {
		width: calc(100% - 32px);
		max-width: 1120px;
		padding-left: 0;
		padding-right: 0;
	}

	.qa-title {
		font-size: 40px;
	}

	.qa-list {
		margin-top: 48px;
		gap: 24px;
	}

	.qa-item {
		gap: 12px;
	}

	.qa-row--a {
		padding-bottom: 24px;
	}

	.qa-item:last-child .qa-row--a {
		border-bottom: none;
	}

	.price-section {
		height: auto;
		min-height: 520px;
		background: #ffffff url('../img/price-bg_sp.png') center center / cover no-repeat;
	}

	.price-inner {
		padding-top: 64px;
		padding-bottom: 32px;
	}

	.price-main {
		margin-top: 40px;
	}

	.price-main-label {
		font-size: 22px;
	}

	.price-main-yen {
		font-size: 32px;
	}

	.price-main-value {
		font-size: 50px;
	}

	.price-main-tax {
		font-size: 20px;
	}

	.price-copy-1 {
		font-size: 16px;
	}

	.price-copy-br-sp {
		display: inline;
	}

	.price-copy-2 {
		font-size: 16px;
    margin-top: 8px;
	}

	.campaign-section {
		padding: 56px 0;
	}

	.campaign-box {
		max-width: calc(100% - 32px);
		height: auto;
		min-height: 520px;
	}

	.campaign-content {
		width: calc(100% - 40px);
	}

	.campaign-title-wrap {
		max-width: 100%;
		margin-top: 40px;
	}

	.campaign-badge {
		right: 0;
		bottom: -42px;
		font-size: 18px;
		padding: 8px 20px;
	}

	.campaign-badge::after {
		left: 20px;
		width: 12px;
		height: 12px;
		bottom: -8px;
	}

	.campaign-title {
		margin-top: 0;
		font-size: 32px;
		padding: 18px 0;
	}

	.campaign-course {
		margin: 72px 0 8px;
		font-size: 24px;
	}

	.campaign-price-row {
		margin-top: 0;
		gap: 24px;
	}

	.campaign-price-normal {
		align-items: flex-start;
	}

	.campaign-price-label {
		font-size: 18px;
	}

	.campaign-price-value {
		font-size: 48px;
	}

	.campaign-price-value span {
		font-size: 22px;
	}

	.campaign-price-arrows {
		gap: 5px;
	}

	.campaign-price-arrow {
		width: 24px;
		height: 24px;
	}

	.campaign-price-free-yen {
		font-size: 52px;
	}

	.campaign-price-free-value {
		font-size: 90px;
	}

	.campaign-period-row {
		margin-top: 52px;
		gap: 14px;
	}

	.campaign-period-label {
		font-size: 18px;
		padding: 6px 14px;
	}

	.campaign-period-date {
		font-size: 36px;
	}

	.campaign-button {
		max-width: 520px;
		height: auto;
		font-size: 28px;
		padding: 20px 48px 20px 42px;
	}

	.campaign-button-arrow {
		right: 28px;
		width: 16px;
		height: 16px;
	}

	.contact h2 {
		font-size: 24px;
	}

	.price {
		font-size: 28px;
	}

	.section-en {
		font-size: 16px;
	}

	.hero .cta-button {
		width: 100%;
	}

	.section {
		padding: 64px 0;
	}

	.section-title {
		margin-bottom: 24px;
		font-size: 24px;
	}

	.card,
	.plan-card {
		padding: 22px;
	}

	.voice-row,
	.voice-row--reverse {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.voice-list {
		margin-top: 40px;
		gap: 40px;
	}

	.voice-row .voice-photo,
	.voice-row--reverse .voice-photo {
		order: 1;
	}

	.voice-row .voice-content,
	.voice-row--reverse .voice-content {
		order: 2;
	}

	.voice-title {
		font-size: 18px;
	}

	.voice-description,
	.voice-meta {
		font-size: 16px;
	}

	.voice-description {
		margin-top: 0;
	}

	.voice-meta {
		text-align: left;
	}

	.voice-photo {
		width: 100%;
		height: auto;
		aspect-ratio: 3 / 2;
	}

	.voice-br-sp {
		display: inline;
	}

	.owner-profile {
		padding: 72px 0;
	}

	#owner .container {
		width: calc(100% - 32px);
		max-width: 1120px;
		padding-left: 0;
		padding-right: 0;
	}

	.owner-title {
		font-size: 40px;
	}

	.owner-subtitle {
		margin-top: 16px;
	}

	.owner-main {
		margin-top: 40px;
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.owner-photo {
		width: 335px;
		height: 335px;
	}

	.owner-photo-wrap {
		width: 335px;
		height: 335px;
		margin-inline: auto;
	}

	.owner-info {
		height: auto;
	}

	.owner-name {
		font-size: 24px;
	}

	.owner-bio {
		margin-top: 24px;
		font-size: 16px;
		line-height: 1.9;
	}

	.owner-message {
		margin-top: 48px;
		padding: 32px 24px;
	}

	.owner-message-title {
		font-size: 46px;
	}

	.owner-message-text {
		margin-top: 24px;
		font-size: 16px;
		line-height: 1.9;
	}

	.map-placeholder {
		min-height: 220px;
	}

	.contact {
		padding: 64px 0;
	}

	.footer-main {
		height: auto;
		padding-top: 28px;
		padding-bottom: 20px;
		justify-content: flex-start;
	}

	.site-footer {
		height: auto;
	}

	.footer-top {
		flex-direction: column;
		align-items: center;
		gap: 32px;
	}

	.footer-logo {
		align-self: center;
	}

	.footer-nav-wrap {
		width: 100%;
		align-items: center;
	}

	.footer-menu {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 24px;
		font-size: 16px;
	}

	.footer-sns {
		margin-top: 40px;
		justify-content: center;
		gap: 24px;
	}

	.footer-sns a {
		width: 40px;
		height: 40px;
	}

	.footer-bottom {
		margin-top: 40px;
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	.footer-note,
	.footer-copy {
		text-align: left;
	}

	.footer-copy {
		font-size: 12px;
	}
}

/* =========================
	 Responsive (SP narrow)
	 - max-width: 390px
========================= */
@media (max-width: 390px) {
	.container {
		width: calc(100% - 24px);
	}

	.header-inner {
		min-height: 60px;
	}

	.header-nav {
		min-height: 60px;
	}

	.header-logo img {
		width: 64px;
	}

	.header-line-button-sp {
		width: 96px;
		height: 32px;
		margin-right: 10px;
		font-size: 13px;
	}

	.header-hamburger {
		width: 32px;
		height: 32px;
	}

	.header-hamburger-line {
		left: 5px;
		width: 22px;
	}

	.header-drawer {
		top: 60px;
	}

	.hero h1 {
		font-size: inherit;
	}

	.footer-main {
		padding-top: 22px;
		padding-bottom: 16px;
	}

	.footer-logo img {
		width: 96px;
	}

	.footer-top {
		gap: 32px;
	}

	.footer-menu {
		font-size: 16px;
		gap: 24px;
	}

	.footer-sns a {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.footer-bottom {
		gap: 40px;
	}

	.footer-note {
		font-size: 11px;
	}

	.footer-copy {
		font-size: 12px;
	}

	.hero {
		min-height: 602px;
	}

	.hero-inner {
		min-height: 602px;
		padding-top: 40px;
	}

	.hero-main-em {
		font-size: 24px;
	}

	.hero-main-base {
		font-size: 18px;
	}

	.hero-subtext {
		font-size: 14px;
	}

	.hero-title span:nth-of-type(3),
	.hero-title span:nth-of-type(4) {
		display: block;
	}

	.onayami {
		min-height: 0;
	}

	.onayami-title {
		font-size: 20px;
    font-weight: 400;
	}

	.onayami-list {
		font-size: 16px;
		line-height: 1.8;
	}

	.onayami-inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.feature-title {
		font-size: 18px;
	}

	.feature-text {
		font-size: 16px;
		padding-left: 0;
	}

	.feature-lead {
		font-size: 16px;
	}

	.section-block-title {
		font-size: 28px;
	}

	.mvoice-title {
		font-size: 28px;
	}

	.mvoice-subtitle {
		margin-top: 12px;
		font-size: 14px;
	}

	.mvoice-line {
		display: none;
	}

	.flow-title {
		font-size: 32px;
	}

	.flow-subtitle {
		margin-top: 12px;
		font-size: 14px;
	}

	.flow-line {
		display: none;
	}

	.flow-list {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.flow-item {
		max-width: none;
	}

	.flow-step {
		font-size: 16px;
	}

	.flow-item-title {
		font-size: 18px;
	}

	.flow-item-description {
		font-size: 14px;
    margin-top: 8px;
	}

	.access-title {
		font-size: 28px;
	}

	.access-subtitle {
		margin-top: 12px;
		font-size: 14px;
	}

	.access-line {
		display: none;
	}

	.access-name {
		font-size: 18px;
	}

	.access-text {
		font-size: 14px;
		line-height: 1.8;
	}

	.access-map-wrap,
	.access-map {
		width: 100vw;
		max-width: none;
		height: 260px;
	}

	.access-map-wrap {
		margin-left: calc(50% - 50vw);
	}

	.qa-title {
		font-size: 32px;
	}

	.qa-row {
		grid-template-columns: 24px 1fr;
		column-gap: 10px;
	}

	.qa-label,
	.qa-text {
		font-size: 16px;
		line-height: 1.8;
	}

	.mvoice-item-title {
		font-size: 18px;
	}

	.mvoice-text,
	.mvoice-meta {
		font-size: 14px;
	}

	.price-main-label {
		font-size: 22px;
    font-weight: 400;
	}

	.price-main-yen {
		font-size: 32px;
    font-weight: 400;
	}

	.price-main-value {
		font-size: 50px;
    font-weight: 300;
	}

	.price-main-tax {
		font-size: 16px;
    font-weight: 400;
	}

	.price-copy-1 {
		font-size: 18px;
    letter-spacing: 0.1em;
	}

	.price-copy-2,
	.price-note {
		font-size: 14px;
	}

  .price-note {
    margin-top: 33px;
  }

	.campaign-section {
		height: 612px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #ffffff url('../img/campaign-bg-sp.png') center center / cover no-repeat;
	}

	.campaign-box {
		max-width: calc(100% - 24px);
		height: auto;
		min-height: 0;
		margin: 0;
		padding-bottom: 20px;
	}

	.campaign-content {
		width: 100%;
		padding: 20px 20px;
	}

	.campaign-details {
		width: fit-content;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}

	.campaign-title-wrap {
		max-width: 100%;
		margin-top: 24px;
		display: flex;
		flex-direction: column;
	}

	.campaign-badge {
		position: relative;
		right: auto;
		bottom: auto;
		align-self: flex-end;
		margin: 16px 0 32px;
		font-size: 14px;
		padding: 6px 14px;
	}

	.campaign-badge::after {
		display: block;
		left: 14px;
		bottom: -7px;
		width: 10px;
		height: 10px;
	}

	.campaign-title {
		margin-top: 0;
		font-size: 19px;
		padding: 14px 0;
	}

	.campaign-course {
		margin: 0 0 16px;
		font-size: 16px;
		text-align: left;
	}

	.campaign-price-row {
		margin-top: 0;
		gap: 10px;
		align-items: flex-end;
		justify-content: center;
	}

	.campaign-price-normal {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: flex-start;
	}

	.campaign-price-label {
		font-size: 16px;
	}

	.campaign-price-value {
		margin-top: 10px;
		display: flex;
		align-items: flex-end;
		font-size: 24px;
		line-height: 1;
	}

	.campaign-price-value span {
		display: none;
	}

	.campaign-price-arrows {
		display: flex;
		align-items: center;
		gap: 3px;
		padding-bottom: 9px;
    padding-right: 10px;
	}

	.campaign-price-arrow {
		width: 14px;
		height: 14px;
	}

	.campaign-price-free-yen {
		font-size: 22px;
	}

	.campaign-price-free-value {
		font-size: 72px;
		display: block;
		transform: translateY(10px);
	}

	.campaign-price-free {
		display: inline-flex;
		align-items: flex-end;
		line-height: 1;
	}

	.campaign-period-row {
		margin-top: 20px;
		gap: 8px;
		flex-direction: column;
		align-items: flex-start;
	}

	.campaign-period-label {
		margin-top: 32px;
		font-size: 12px;
		padding: 5px 10px;
		text-align: left;
	}

	.campaign-period-date {
		margin-top: 10px;
		font-size: 16px;
		text-align: left;
	}

	.campaign-button {
		width: 100%;
		height: 61px;
		margin-top: 32px;
		padding: 0 20px;
		font-size: 16px;
		letter-spacing: 0.04em;
	}

	.campaign-button-arrow {
		display: none;
	}

	.owner-title {
		font-size: 28px;
	}

	.owner-name {
		font-size: 24px;
	}

	.owner-sns {
		gap: 24px;
	}

	.owner-sns a {
		width: 34px;
		height: 34px;
		font-size: 16px;
	}

	.owner-message-title {
		font-size: 40px;
	}

	.voice-title {
		font-size: 18px;
	}

	.voice-description,
	.voice-meta {
		font-size: 16px;
	}

	.section-title {
		font-size: 22px;
	}

	.price {
		font-size: 26px;
	}
}
