@charset "utf-8";

/* ========================================
   CSS変数の定義（SASSライクな管理）
   ======================================== */



/* 共有 */

html {
	font-size: 100%;
}

body {
	font-family: "Zen Maru Gothic", "Noto Serif JP", serif;
}

a {
	\ttext-decoration: none;
	\ttransition: 0.3s ease;
}

a:hover {
	\topacity: 0.9;
	\tbackground-color: #f3f4f6;
}

img {
	width: 100%;
	vertical-align: top;
}

p {
	color: black;
}

#pc_only {
	display: block;
}

#sp_only {
	display: none;
}

/* page-being 実績グラフ：PC / SP 画像の切り替え（640px 以下が SP） */
#pc_pnly {
	display: block;
}

#sp_pnly {
	display: none;
}

@media screen and (max-width: 640px) {
	#pc_pnly {
		display: none;
	}
	#sp_pnly {
		display: block;
	}
}
/* ========================================
   ヘッダー
   ======================================== */

.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-branding {
	flex: 0 0 auto;
}

.site-branding-link {
	display: block;
}

.site-branding-logo {
	width: 150px;
	height: 150px;
	object-fit: contain;
}

.header-nav {
	flex: 1 1 auto;
}

.header-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 28px;
}

.header-nav-list a {
	font-size: 12px;
	color: #4a4f57;
	font-weight: 600;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.header-cta {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 20px;
}

.header-tel {
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	color: #5ec5d6;
	letter-spacing: 0.01em;
	white-space: nowrap;
}

.header-trial-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 182px;
	height: 48px;
	padding: 0 26px;
	border-radius: 999px;
	background: #f1cb67;
	line-height: 1;
	color: #6f6f73;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.03em;
	white-space: nowrap;
}

.header-trial-button:hover,
.header-trial-button:focus-visible {
	background: #f1cb67;
	opacity: 1;
}

.header-trial-button-image {
	width: 26px;
	height: 26px;
	display: block;
	object-fit: contain;
	flex: 0 0 auto;
}

.header-trial-button span {
	display: block;
	line-height: 1;
}

.header-menu-toggle {
	display: none;
}

.header-nav-list-sp-only {
	display: none;
}

/* SP ハンバーガー：オーバーレイ（PCでは非表示） */
.header-nav-overlay {
	display: none;
}

@media screen and (max-width: 1024px) {
	.site-header {
		padding: 10px 12px;
		position: sticky;
		top: 0;
		z-index: 1000;
		background: #ffffff;
		box-shadow: 0 2px 18px rgba(45, 90, 120, 0.06);
	}

	.header-inner {
		position: relative;
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 12px;
	}

	.site-branding-logo {
		width: 122px;
		height: 58px;
	}

	.header-cta {
		display: none;
	}

	body.is-nav-open {
		overflow: hidden;
		touch-action: none;
	}

	/* 背景オーバーレイ（閉じる操作） */
	.header-nav-overlay {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 1180;
		margin: 0;
		padding: 0;
		border: none;
		background: rgba(31, 55, 72, 0.42);
		backdrop-filter: blur(6px);
		-webkit-backdrop-filter: blur(6px);
		cursor: pointer;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.28s ease, visibility 0.28s ease;
		pointer-events: none;
	}

	.header-nav-overlay.is-visible {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	/* トリガーボタン：丸み・シャドウ・アクセント */
	.header-menu-toggle {
		position: relative;
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 5px;
		width: 46px;
		height: 46px;
		border: 1px solid rgba(94, 197, 214, 0.45);
		border-radius: 12px;
		background: linear-gradient(180deg, #f8fdff 0%, #eaf6fc 100%);
		box-shadow: 0 4px 12px rgba(45, 120, 150, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
		cursor: pointer;
		z-index: 1300;
		transition:
			transform 0.18s ease,
			box-shadow 0.18s ease,
			border-color 0.18s ease;
	}

	.header-menu-toggle:hover {
		transform: translateY(-1px);
		border-color: rgba(94, 197, 214, 0.75);
		box-shadow: 0 6px 14px rgba(45, 120, 150, 0.16);
	}

	.header-menu-toggle:active {
		transform: translateY(0);
	}

	.header-menu-toggle:focus-visible {
		outline: 2px solid #5ec5d6;
		outline-offset: 3px;
	}

	.header-menu-toggle.is-open {
		background: #ffffff;
		border-color: rgba(63, 70, 80, 0.2);
		box-shadow: 0 4px 16px rgba(30, 60, 85, 0.14);
	}

	.header-menu-toggle-line {
		display: block;
		width: 22px;
		height: 2px;
		background: #3f4650;
		border-radius: 999px;
		transition:
			transform 0.26s cubic-bezier(0.65, 0, 0.35, 1),
			opacity 0.2s ease,
			background-color 0.2s ease;
	}

	.header-menu-toggle:hover .header-menu-toggle-line {
		background-color: #2f3640;
	}

	.header-menu-toggle.is-open .header-menu-toggle-line {
		background-color: #2f3640;
	}

	.header-menu-toggle.is-open .header-menu-toggle-line:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.header-menu-toggle.is-open .header-menu-toggle-line:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}

	.header-menu-toggle.is-open .header-menu-toggle-line:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	/* スライドドロワー */
	.site-branding-link {
		position: relative;
		z-index: 1290;
	}

	.header-nav {
		position: fixed;
		top: 0;
		right: 0;
		width: min(86vw, 340px);
		max-width: 100%;
		height: 100dvh;
		padding: 0;
		padding-top: calc(74px + env(safe-area-inset-top));
		padding-bottom: calc(20px + env(safe-area-inset-bottom));
		background: linear-gradient(180deg, #fafeff 0%, #ffffff 22%, #ffffff 100%);
		box-shadow: -14px 0 40px rgba(25, 55, 80, 0.18), -2px 0 0 rgba(94, 197, 214, 0.15);
		z-index: 1250;
		overflow-y: auto;
		overflow-x: hidden;
		overscroll-behavior: contain;
		transform: translate3d(100%, 0, 0);
		transition: transform 0.34s cubic-bezier(0.32, 0.72, 0, 1);
	}

	.header-nav.is-open {
		transform: translate3d(0, 0, 0);
	}

	.header-nav::before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		height: 4px;
		background: linear-gradient(90deg, #58bbe2 0%, #8dd4ee 52%, #b8ead9 100%);
		z-index: 1;
	}

	.header-nav-list {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		position: relative;
		z-index: 0;
		padding: 80px 20px 28px;
	}

	.header-nav-list > li:not(.header-nav-list-sp-only) {
		border-bottom: 1px solid rgba(190, 210, 220, 0.55);
	}

	.header-nav-list > li:not(.header-nav-list-sp-only):first-child {
		border-top: 1px solid rgba(190, 210, 220, 0.55);
	}

	.header-nav-list > li:not(.header-nav-list-sp-only) a {
		display: block;
		padding: 16px 6px;
		font-size: 15px;
		color: #3f4650;
		font-weight: 700;
		letter-spacing: 0.04em;
		position: relative;
		transition:
			background-color 0.18s ease,
			color 0.18s ease,
			padding-left 0.18s ease;
	}

	.header-nav-list > li:not(.header-nav-list-sp-only) a::after {
		content: "›";
		position: absolute;
		right: 4px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 17px;
		font-weight: 700;
		color: #93c5d9;
		line-height: 1;
	}

	.header-nav-list > li:not(.header-nav-list-sp-only) a:hover,
	.header-nav-list > li:not(.header-nav-list-sp-only) a:focus-visible {
		color: #2a94c2;
		background-color: rgba(143, 210, 232, 0.12);
		padding-left: 12px;
	}

	.header-nav-list-sp-only {
		display: block;
		width: 100%;
		border: none;
		margin-top: 12px;
		padding-top: 8px;
	}

	.header-nav-list-sp-only a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 48px;
		padding: 12px 20px;
		border-radius: 999px;
		font-size: 15px;
		font-weight: 700;
		letter-spacing: 0.04em;
		box-sizing: border-box;
		text-decoration: none;
		transition:
			transform 0.18s ease,
			box-shadow 0.18s ease;
	}

	.header-nav-list-sp-only a:hover,
	.header-nav-list-sp-only a:focus-visible {
		transform: translateY(-2px);
	}

	.header-nav-list-sp-only:first-of-type a {
		border: none;
	}

	.header-nav-list-sp-only:last-of-type a {
		background: linear-gradient(180deg, #fde68a 0%, #f1cb67 100%);
		border: none;
		color: #4c5460;
		box-shadow: 0 6px 18px rgba(210, 170, 55, 0.35), inset 0 1px 0 rgba(255, 252, 240, 0.85);
	}

	.header-nav-list-sp-only:last-of-type a:focus-visible {
		outline: 2px solid #45b5df;
		outline-offset: 3px;
	}

	.site-branding {
		z-index: 0;
	}
}

@media screen and (max-width: 640px) {
	.header-nav {
		padding-top: calc(72px + env(safe-area-inset-top));
	}

	.header-nav-list > li:not(.header-nav-list-sp-only) a {
		padding: 15px 4px;
		font-size: 14px;
	}
}


/* ========================================
   ヒーロービジュアル
   ======================================== */
.hero-visual {
	position: relative;
	padding: 24px 0 0;
	overflow: hidden;
}

.hero-visual-inner {
	max-width: 1160px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 0.95fr;
	align-items: center;
	gap: 24px;
	padding: 0 18px;
}

.hero-visual-title {
	margin: 0 0 18px;
	font-size: 44px;
	line-height: 1.35;
	letter-spacing: 0.01em;
	color: #1ba3da;
	font-weight: 700;
	white-space: normal;
	text-align: left;
}

.hero-visual-copy p {
	margin: 0 0 35px;
	font-size: 24px;
	line-height: 1.65;
	letter-spacing: 0.01em;
	color: #505766;
}

.hero-visual-copy-accent {
	margin-top: 10px;
	font-size: 30px !important;
	line-height: 1.4 !important;
	font-weight: 700;
	color: #ff7862 !important;
}

.hero-visual-copy-small {
	margin-top: 10px !important;
	font-size: 16px !important;
	line-height: 1.75 !important;
	color: #505766 !important;
}

.hero-visual-cta {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 300px;
    height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    background: #f1cb67;
    color: #394a59;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-visual-cta span {
	font-size: 22px;
	line-height: 1;
}

.hero-visual-media {
	position: relative;
}

.hero-visual-image-wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
	max-width: 520px;
}

.hero-visual-image {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 110px;
}

.hero-splash {
	position: absolute;
	width: 24px;
	height: 44px;
	border-radius: 999px;
	transform: rotate(24deg);
}

.hero-splash-1 {
	top: 10%;
	right: -8px;
	background: #5ec5ef;
}

.hero-splash-2 {
	top: 3%;
	right: 22px;
	background: #f6d06f;
}

.hero-splash-3 {
	bottom: 12%;
	left: -10px;
	background: #5ec5ef;
}

.hero-splash-4 {
	bottom: 3%;
	left: 18px;
	background: #f6d06f;
}

.hero-visual-wave {
    position: relative;
    margin-top: 22px;
    height: 160px;
    background-image: url(../images/wave.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

@media screen and (max-width: 1024px) {
	.hero-visual {
		padding-top: 16px;
	}

	.hero-visual-inner {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.hero-visual-media {
		order: 1;
	}

	.hero-visual-content {
		order: 2;
		text-align: center;
	}

	.hero-visual-title {
		margin-bottom: 12px;
		font-size: 30px;
		text-align: center;
	}

	.hero-visual-copy p {
		margin-bottom: 20px;
		font-size: 16px;
	}

	.hero-visual-copy-accent {
		font-size: 22px !important;
	}

	.hero-visual-copy-small {
		font-size: 15px !important;
	}

	.hero-visual-cta {
		min-width: 260px;
		height: 52px;
		font-size: 18px;
	}

	.hero-visual-image {
		border-radius: 86px;
	}

	.hero-splash {
		width: 18px;
		height: 34px;
	}

	.hero-visual-wave {
		height: 72px;
		margin-top: 16px;
	}
}

@media screen and (max-width: 640px) {
	.hero-visual {
		padding: 14px 0 0;
	}

	.hero-visual-inner {
		padding: 0px 0px 50px;
		gap: 0;
	}

	.hero-visual-image-wrap {
		max-width: 100%;
	}

	.hero-visual-title {
		margin-bottom: 10px;
		font-size: 24px;
		line-height: 1.3;
		letter-spacing: 0;
		color: #1ba3da;
	}

	.hero-visual-copy p {
		margin-bottom: 0;
		font-size: 17px;
		line-height: 1.8;
		color: #5a6371;
		margin: 25px 0px;
	}

	/* .hero-visual-copy-accent,
	.hero-visual-copy-small {
		display: none;
	} */

	.hero-visual-cta {
        margin-top: 26px;
        min-width: 0;
        width: 80%;
        max-width: 360px;
        height: 50px;
        padding: 0 18px;
        font-size: 18px;
        border-radius: 999px;
	}

	.hero-visual-cta span {
		font-size: 20px;
	}

	.hero-splash-1 {
		top: auto;
		right: 10px;
		bottom: -16px;
	}

	.hero-splash-2 {
		top: auto;
		right: 38px;
		bottom: -22px;
	}

	.hero-splash-3 {
		left: 10px;
		bottom: 26px;
	}

	.hero-splash-4 {
		left: 34px;
		bottom: 18px;
	}
}

/* ========================================
   コンセプトセクション
   ======================================== */
   .concept-section {
	padding: 18px 0 0;
	background-color: #dff4ff;
	background-image: url("../images/bg-concept.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}

.concept-section-inner {
	max-width: 1160px;
	margin: 100px auto 150px;
	padding: 0 18px;
	position: relative;
}

.concept-section-inner::before {
	content: "";
	position: absolute;
	width: 250px;
	aspect-ratio: 2 / 1;
	background-image: url("../images/concept-running.png");
	background-size: cover;
	background-position: center;
	opacity: 0.9;
	z-index: 0;
}

.concept-section-inner::after {
	content: "";
	position: absolute;
	width: 200px;
	aspect-ratio: 2 / 1;
	background-image: url("../images/concept-running-2.png");
	background-size: cover;
	background-position: center;
	opacity: 0.9;
	z-index: 0;
}

.concept-section-inner::before {
    top: -50px;
    right: 100px;
    z-index: 1;
}

.concept-section-inner::after {
    bottom: -50px;
    z-index: 1;
    left: 100px;

}

.concept-card {
	position: relative;
	background: #f5f7fa;
	border-radius: 18px;
	padding: 80px 25px 80px;
	box-shadow: 0 6px 22px rgba(80, 126, 150, 0.08);
	overflow: hidden;
}

.concept-card > * {
	position: relative;
	z-index: 1;
}

.concept-running-illust {
	position: absolute;
	top: -38px;
	right: 28px;
	width: 180px;
	z-index: 2;
}

.concept-label {
	margin: 0;
	text-align: center;
	color: #24a8de;
	font-size: 20px;
	font-weight: 700;
}

.concept-title {
	margin: 15px 0 0;
	text-align: center;
	font-size: 40px;
	color: #4b5565;
}

.concept-top-box {
	padding: 50px 0 0;
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 20px;
    align-items: center;
    width: 90%;
    margin: auto;
}

.concept-top-image-wrap img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.concept-top-text h3 {
	margin: 0;
	color: #24a8de;
	font-size: 24px;
}

.concept-top-text p {
	margin: 8px 0 0;
	font-size: 17px;
	line-height: 1.85;
	color: #4f5866;
}

.concept-arrow {
	margin: 10px 0;
	text-align: center;
	font-size: 34px;
	line-height: 1;
	color: #f1cb67;
}

.concept-bottom-box {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	padding: 0 190px;
	align-items: center;
}

.concept-bottom-box::before {
	content: "";
	position: absolute;
	transform: translateY(-50%);
	width: 250px;
	aspect-ratio: 1 / 1;
	background-image: url("../images/concept-running-4.png");
	background-size: cover;
	background-position: center;
	border-radius: 50%;
}
.concept-bottom-box::after {
	content: "";
	position: absolute;
	transform: translateY(-50%);
	width: 250px;
	aspect-ratio: 1 / 1;
	background-image: url("../images/concept-running-3.png");
	background-size: cover;
	background-position: center;
	border-radius: 50%;
}

.concept-bottom-box::before {
	top: 70%;
}

.concept-bottom-box::after {
	right: 0;
}

.concept-bottom-content {
	text-align: center;
}

.concept-bottom-content h3 {
	margin: 0;
	font-size: 34px;
	color: #ff7b66;
}

.concept-bottom-content p {
	margin: 20px 0 0px;
    font-size: 17px;
    line-height: 1.9;
    color: #4f5866;
}

.concept-cta {
	margin-top: 35px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 44px;
	padding: 0 28px;
	border-radius: 999px;
	background: #f1cb67;
	color: #4e5b67;
	font-size: 16px;
	font-weight: 700;
	justify-content: center;
}

.concept-running-illust-bottom {
	display: block;
	width: 140px;
	margin: 22px auto 0;
}

.concept-bottom-visuals {
	display: none;
}

.concept-gallery-strip {
	margin-top: 20px;
}

.concept-gallery-strip-inner {
    max-width: 1200px;
    margin: 0 auto -150px;
    padding: 0 18px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    z-index: 1;
    position: sticky;
}

.concept-gallery-strip-image {
	width: calc((100% - 64px) / 5);
	max-width: 220px;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}

.concept-section-wave {
    position: relative;
    margin-top: -12px;
    height: 160px;
    background-image: url("../images/concept-section-wave.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

@media screen and (max-width: 1024px) {
	.concept-card {
		padding: 24px 14px 26px;
	}

	.concept-running-illust {
		width: 110px;
		top: -24px;
		right: 10px;
	}

	.concept-section-inner::before,
	.concept-section-inner::after {
		width: 72px;
	}

	.concept-section-inner::before {
		top: 120px;
		left: -34px;
	}

	.concept-section-inner::after {
		right: -34px;
		bottom: 140px;
	}

	.concept-title {
		font-size: 30px;
	}

	.concept-top-box {
		grid-template-columns: 1fr;
		padding: 14px;
		gap: 12px;
	}

	.concept-top-image-wrap {
		max-width: 180px;
		margin: 0 auto;
	}

	.concept-top-text h3 {
		font-size: 20px;
		text-align: center;
	}

	.concept-top-text p {
		font-size: 12px;
	}

	.concept-bottom-box {
		grid-template-columns: 1fr;
		padding: 0;
	}

	.concept-bottom-box::before,
	.concept-bottom-box::after {
		display: none;
	}

	.concept-bottom-content h3 {
		font-size: 26px;
	}

	.concept-bottom-content p {
		font-size: 12px;
	}

	.concept-arrow {
		margin: 4px 0 8px;
		font-size: 30px;
	}

	.concept-running-illust-bottom {
		width: 110px;
	}

	.concept-gallery-strip-inner {
		gap: 8px;
		padding: 0 10px;
	}

	.concept-gallery-strip-image {
		width: calc((100% - 32px) / 5);
		border-radius: 6px;
	}

	.concept-section-wave {
		margin-top: -6px;
		height: 110px;
	}
}

@media screen and (max-width: 640px) {
	.concept-section {
		padding-top: 4px;
	}

	.concept-section-inner {
		margin: 18px auto 34px;
		padding: 0 8px;
	}

	.concept-section-inner::before{
		top: -30px;
        right: 50px;
        width: 130px;
        left: auto;
	}
	.concept-section-inner::after{
        bottom: -40px;
        left: 30px;
        width: 130px;
        right: auto;
	}

	.concept-card {
		border-radius: 18px;
		padding: 50px 10px 40px;
	}

	.concept-label {
		font-size: 12px;
		letter-spacing: 0.06em;
	}

	.concept-title {
		margin-top: 6px;
		font-size: 34px;
		line-height: 1.3;
	}

	.concept-top-box {
		width: 100%;
		padding: 12px 0 0;
		gap: 10px;
	}

	.concept-top-image-wrap {
		max-width: 300px;
	}

	.concept-top-text {
		padding: 12px 20px;
		border-radius: 12px;
		background: #eceff2;
	}

	.concept-top-text h3 {
		font-size: 20px;
		line-height: 1.5;
		        padding: 10px 0;
	}

	.concept-top-text p {
		margin-top: 6px;
		font-size: 15px;
		line-height: 1.8;
	}

	.concept-arrow {
		margin: 6px 0 4px;
		font-size: 50px;
		color: #f1cb67;
	}

	.concept-bottom-box {
		padding: 0 20px;
	}

	.concept-bottom-visuals {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 14px;
		margin-bottom: 8px;
	}

	.concept-bottom-visual {
		width: 150px;
		aspect-ratio: 1 / 1;
		object-fit: cover;
		border-radius: 50%;
	}

	.concept-bottom-content h3 {
		margin-top: 4px;
		font-size: 20px;
		        padding: 10px 0;
	}

	.concept-bottom-content p {
		margin-top: 8px;
		font-size: 15px;
		line-height: 1.8;
		text-align: left;
	}

	.concept-cta {
		margin-top: 35px;
		min-width: 0;
		width: 70%;
		height: 46px;
		font-size: 13px;
	}

	.concept-gallery-strip {
		display: none;
	}

	.concept-section-wave {
		height: 70px;
		margin-top: 4px;
	}
}

/* ========================================
   コンセプト特徴カード
   ======================================== */
.concept-feature-section {
	background-image: url("../images/bg-concept-feature.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	padding: 80px 0 0px;
}

.concept-feature-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 18px;
	position: relative;
	padding: 0 18px 30px;
}

.concept-feature-label {
	margin: 0;
	text-align: center;
	color: #bfe9ff;
	font-size: 20px;
	font-weight: 700;
}

.concept-feature-title {
	margin: 15px 0 0;
	text-align: center;
	color: #fff;
	font-size: 40px;
}

.concept-feature-grid {
    margin: 50px auto 0;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 30px 30px;
}

.concept-feature-card {
	background: #f5f7fa;
	border-radius: 14px;
	padding: 10px 10px 12px;
}

.concept-feature-card:nth-child(1),
.concept-feature-card:nth-child(2),
.concept-feature-card:nth-child(3) {
	grid-column: span 2;
}

.concept-feature-card:nth-child(4) {
	grid-column: 2 / span 2;
}

.concept-feature-card:nth-child(5) {
	grid-column: 4 / span 2;
}

.concept-feature-card-image-wrap {
	border-radius: 8px;
	overflow: hidden;
}

.concept-feature-card-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.concept-feature-card-title {
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #2ea9d6;
    justify-content: center;
}

.concept-feature-card-number {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #3fb2dc;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
}

.concept-feature-card-text {
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.8;
	color: #495664;
}

.concept-feature-illust {
	position: absolute;
	z-index: 2;
	width: 84px;
}

.concept-feature-illust-left-top {
	left: -30px;
	top: 180px;
}

.concept-feature-illust-right-top {
	right: 18px;
	top: 12px;
}

.concept-feature-illust-left-bottom {
	left: 20px;
	bottom: 30px;
}

.concept-feature-illust-right-bottom {
	right: 86px;
	bottom: 62px;
}
.concept-feature-section-wave {
    position: relative;
    margin-top: -12px;
    height: 160px;
    background-image: url("../images/concept-feature-section-wave.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
@media screen and (max-width: 1024px) {
	.concept-feature-section {
		padding: 34px 0 42px;
		margin: -1px 0 0;
	}

	.concept-feature-title {
		font-size: 28px;
	}

	.concept-feature-grid {
		grid-template-columns: 1fr;
		max-width: 440px;
	}

	.concept-feature-card:nth-child(1),
	.concept-feature-card:nth-child(2),
	.concept-feature-card:nth-child(3),
	.concept-feature-card:nth-child(4),
	.concept-feature-card:nth-child(5) {
		grid-column: auto;
	}

	.concept-feature-card-number {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.concept-feature-card-title {
		font-size: 20px;
		padding: 0 10px;
	}

	.concept-feature-card-text {
		font-size: 15px;
		padding: 0 10px;
	}

	.concept-feature-illust {
		width: 56px;
	}

	.concept-feature-illust-left-top {
		left: 4px;
		top: 168px;
	}

	.concept-feature-illust-right-top {
		right: 4px;
		top: 10px;
	}

	.concept-feature-illust-left-bottom {
		left: 6px;
		bottom: 18px;
	}

	.concept-feature-illust-right-bottom {
		right: 8px;
		bottom: 18px;
	}

	.concept-feature-section-wave {
    	background-size: contain;
		height: 40px;
	}
}

/* ========================================
   ブログセクション
   ======================================== */
.blog-section {
	background-color: #f7f9fc;
	background-image: radial-gradient(circle at 18px 18px, rgba(203, 234, 248, 0.9) 0, rgb(203 234 248 / 60%) 8px, transparent 8px);
	background-size: 48px 48px;
	padding: 0 0 0px;
}

.blog-section-inner {
	max-width: 1160px;
	margin: 80px auto;
	padding: 0 18px;
	position: relative;
}

.blog-section-inner::before {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: 0;
	border-radius: 50%;
	background-image: url("../images/blog-section-deco-left.png");
}

.blog-section-inner::after {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: 0;
	border-radius: 50%;
	background-image: url("../images/blog-section-deco-right.png");
}

.blog-section-inner::before {
    left: 0;
    top: 0%;
    width: 200px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
}

.blog-section-inner::after {
	right: 0;
	top: 0;
	width: 200px;
	height: 100px;
	background-size: contain;
    background-repeat: no-repeat;
}

.blog-section-inner > * {
	position: relative;
	z-index: 1;
}

.blog-garland {
	position: absolute;
	top: -10px;
	width: 220px;
}

.blog-garland-left {
	left: 0;
}

.blog-garland-right {
	right: 0;
}

.blog-section-label {
	margin: 0;
	text-align: center;
	color: #78cde6;
	font-size: 20px;
	font-weight: 700;
}

.blog-section-title {
	margin: 8px 0 0;
	text-align: center;
	color: #3f4f5f;
	font-size: 40px;
}

.blog-card-grid {
	margin: 38px auto 0;
	max-width: 960px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.blog-card-grid > .blog-card-grid-empty {
	grid-column: 1 / -1;
}

.blog-card {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(112, 146, 170, 0.08);
}

.blog-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.blog-card-link:focus-visible {
	outline: 2px solid #66c3e5;
	outline-offset: 2px;
}

.blog-card-image-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.blog-card-image {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-card-no-image {
	position: absolute;
	left: 0;
	top: 0;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e8eef2;
	color: #8a96a3;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	user-select: none;
}

.blog-card-body {
	padding: 14px 16px 18px;
	min-width: 0;
}

.blog-card-title {
	margin: 0;
	color: #66c3e5;
	font-size: 22px;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
}

.blog-card-categories {
	margin: 6px 0 0;
	padding: 0;
	font-size: 12px;
	line-height: 1.5;
	color: #7a8490;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
}

.blog-card-text {
	margin: 8px 0 0;
	color: #55606d;
	font-size: 14px;
	line-height: 1.8;
	word-break: break-all;
}

.blog-section-more {
	margin-top: 28px;
	display: flex;
	justify-content: center;
}

.blog-section-more-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-width: 260px;
	height: 54px;
	padding: 0 24px;
	border-radius: 999px;
	background: #f1cb67;
	color: #4c5864;
	font-size: 22px;
	font-weight: 700;
}

.blog-section-more-link span {
	font-size: 24px;
	line-height: 1;
}
.blog-section-wave {
    position: relative;
    margin-top: -12px;
    height: 160px;
    background-image: url("../images/wave.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

@media screen and (max-width: 1024px) {
	.blog-section {
		padding: 10px 0 0px;
		background-size: 34px 34px;
	}

	.blog-garland {
		width: 120px;
		top: -6px;
	}

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

	.blog-card-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin-top: 28px;
	}

	.blog-card-title {
		font-size: 18px;
	}

	.blog-card-categories {
		font-size: 11px;
	}

	.blog-card-text {
		font-size: 12px;
	}

	.blog-card-no-image {
		font-size: 11px;
	}

	.blog-section-more-link {
		min-width: 220px;
		height: 48px;
		font-size: 18px;
	}
}
@media screen and (max-width: 640px) {
	.blog-section-inner {
		margin: 50px auto 80px;
	}
	.blog-section-inner::before {
		left: 65px;
		top: 0%;
		width: 80px;
		height: 50px;
	}
	.blog-section-inner::after {
		width: 150px;
		height: 50px;
	}
	.blog-section-wave {
		height: 80px;
	}
}
/* ========================================
   体験レッスン案内
   ======================================== */
.lesson-guide-section {
	padding: 42px 0 0;
	background-color: #dff4ff;
	background-image: url(../images/bg-concept.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.lesson-guide-inner {
	max-width: 1160px;
	margin: 0 auto 100px;
	padding: 44px 32px 42px;
	background: #f8fafc;
	border: 4px solid #a8dff3;
	border-radius: 14px;
}

.lesson-guide-label {
	margin: 0;
	text-align: center;
	color: #59bce4;
	font-size: 20px;
	font-weight: 700;
}

.lesson-guide-title {
	margin: 10px 0 0;
	text-align: center;
	color: #4e5b6a;
	font-size: 40px;
}

.lesson-guide-flow {
	position: relative;
	margin: 40px auto 0;
	max-width: 820px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.lesson-guide-line {
	position: absolute;
	top: 14px;
	left: 16.6%;
	right: 16.6%;
	height: 2px;
	background: #52bbe4;
}

.lesson-guide-step {
	position: relative;
	text-align: center;
}

.lesson-guide-step-circle {
	width: 30px;
	height: 30px;
	margin: 0 auto;
	border: 2px solid #52bbe4;
	border-radius: 50%;
	background: #f8fafc;
}

.lesson-guide-step-number {
	margin: 10px 0 0;
	color: #50b8e2;
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
}

.lesson-guide-step-heading {
	margin: 10px 0 0;
	color: #4db4dc;
	font-size: 18px;
	font-weight: 700;
}

.lesson-guide-step-icon {
	width: 120px;
	margin: 14px auto 0;
}

.lesson-guide-step-text {
	margin: 12px 0 0;
	text-align: center;
	color: #4c5765;
	font-size: 17px;
	line-height: 1.9;
}

.lesson-guide-info {
	margin: 34px auto 0;
	max-width: 700px;
	padding: 24px 30px;
	background: #fff2cf;
	border-radius: 14px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.lesson-guide-info-title {
	margin: 0 0 12px;
	color: #ff8e66;
	font-size: 24px;
}

.lesson-guide-info-text,
.lesson-guide-info-price,
.lesson-guide-info-note {
	margin: 8px 0 0;
	color: #4e5967;
	font-size: 15px;
	line-height: 1.8;
}

.lesson-guide-info-price {
	font-weight: 700;
}

.lesson-guide-info-note {
	font-size: 12px;
}

@media screen and (max-width: 1024px) {
	.lesson-guide-section {
		padding: 28px 0 42px;
	}

	.lesson-guide-inner {
		padding: 28px 16px 26px;
		border-width: 3px;
	}

	.lesson-guide-title {
		font-size: 26px;
	}

	.lesson-guide-flow {
		grid-template-columns: 1fr;
		gap: 22px;
		max-width: 360px;
	}

	.lesson-guide-line {
		display: none;
	}

	.lesson-guide-step-number {
		font-size: 28px;
	}

	.lesson-guide-step-text {
		font-size: 13px;
	}

	.lesson-guide-info {
		grid-template-columns: 1fr;
		padding: 18px 16px;
		gap: 18px;
	}

	.lesson-guide-info-title {
		font-size: 20px;
	}

	.lesson-guide-info-text,
	.lesson-guide-info-price {
		font-size: 14px;
	}
}

@media screen and (max-width: 640px) {
	.lesson-guide-section {
		padding: 0px 0 0px;
	}

	.lesson-guide-inner {
		max-width: 85%;
		margin: 0 auto 50px;
		padding: 30px 10px 35px;
		border: none;
		border-radius: 10px;
		background: #ffffff;
	}

	.lesson-guide-label {
		font-size: 16px;
		letter-spacing: 0.04em;
	}

	.lesson-guide-title {
		margin-top: 4px;
		font-size: 28px;
		line-height: 1.35;
	}

	.lesson-guide-flow {
		margin-top: 14px;
		max-width: 280px;
		gap: 14px;
	}

	.lesson-guide-step {
		padding: 20px 0;
	}

	.lesson-guide-step-circle {
		display: none;
	}

	.lesson-guide-step-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        margin: 0;
        border: 1.5px solid #52bbe4;
        border-radius: 50%;
        font-size: 25px;
        font-weight: 700;
        line-height: 1;
        vertical-align: middle;
	}

	.lesson-guide-step-heading {
		display: inline-block;
		margin: 0 0 0 6px;
		font-size: 22px;
		font-weight: 700;
		vertical-align: middle;
	}

	.lesson-guide-step-icon {
        width: 150px;
        margin: 5px auto 10px;
	}

	.lesson-guide-step-text {
		margin-top: 8px;
		font-size: 17px;
		line-height: 1.65;
	}

	.lesson-guide-info {
		margin-top: 14px;
		max-width: 280px;
		padding: 12px 12px 10px;
		gap: 8px;
		border-radius: 8px;
		background: #fff6df;
	}

	.lesson-guide-info-title {
		margin: 0 0 4px;
		font-size: 20px;
		text-align: center;
	}
	.lesson-guide-info-block{
			margin: 10px;
	}

	.lesson-guide-info-text,
	.lesson-guide-info-price,
	.lesson-guide-info-note {
        margin-top: 5px;
        font-size: 15px;
        line-height: 1.55;
        text-align: center;
	}

	.lesson-guide-info-note {
		font-size: 10px;
	}
}

/* ========================================
   体験CTA
   ======================================== */
.lesson-cta-section-wave {
	position: relative;
	margin-top: -12px;
	height: 160px;
	background-image: url("../images/lesson-cta-section-wave.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
.lesson-cta-section {
	background-color: #37a8cf;
	background-image: url("../images/bg-cta-wave.png");
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
    padding: 26px 0 100px;

}

.lesson-cta-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 18px;
	position: relative;
	z-index: 0;
}

.lesson-cta-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.lesson-cta-form {
	max-width: 640px;
	margin: 20px auto 0;
	text-align: left;
}

.lesson-cta-title {
	margin: 0;
	color: #fff;
	font-size: 34px;
	line-height: 1.4;
}

.lesson-cta-text {
	margin: 10px 0 0;
	color: #fff;
	font-size: 14px;
	line-height: 1.9;
}

.lesson-cta-button {
	margin-top: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-width: 320px;
	height: 54px;
	padding: 0 28px;
	border-radius: 999px;
	background: #f1cb67;
	color: #4b5764;
	font-size: 22px;
	font-weight: 700;
}

.lesson-cta-button span {
	font-size: 24px;
	line-height: 1;
}

/* 下層ページなど：従来のスイマー img 用（TOP は疑似要素で画像を表示） */
.lesson-cta-illust {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 120px;
}

.lesson-cta-illust-left {
	left: 120px;
}

.lesson-cta-illust-right {
	right: 120px;
}

@media screen and (max-width: 1024px) {
	.lesson-cta-section {
		padding: 25px 0 50px;
		margin-top: -1px;
	}

	.lesson-cta-title {
		font-size: 24px;
	}

	.lesson-cta-text {
		font-size: 15px;
		margin: 40px 0 20px;
	}

	.lesson-cta-button {
		min-width: 240px;
		height: 46px;
		font-size: 18px;
	}

	.lesson-cta-form {
		max-width: 100%;
	}

	.lesson-cta-illust {
		width: 72px;
		top: auto;
		bottom: 8px;
		transform: none;
	}

	.lesson-cta-illust-left {
		left: 12px;
	}

	.lesson-cta-illust-right {
		right: 12px;
	}
}

@media screen and (max-width: 640px) {
	.lesson-cta-section-wave {
		height: 50px;
	}
}

/* ========================================
   フッター
   ======================================== */
.site-footer {
	background: #fff;
	padding: 56px 0 28px;
}

.footer-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 18px;
}

.footer-top {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 24px;
	align-items: start;
}

.footer-logo {
	width: 120px;
	height: auto;
	object-fit: contain;
}

.footer-nav {
	display: flex;
	justify-content: center;
	padding-top: 6px;
}

.footer-nav-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 28px;
}

.footer-nav-list a,
.footer-subnav a,
.footer-copy {
	color: #4d5663;
	font-size: 12px;
	line-height: 1.8;
}

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

.footer-subnav {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 28px;
}

.footer-copy {
	margin: 0;
}

@media screen and (max-width: 1024px) {
	.site-footer {
		padding: 34px 0 22px;
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.footer-branding {
		text-align: center;
	}

	.footer-logo {
		margin: 0 auto;
	}

	.footer-nav-list {
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px 16px;
	}

	.footer-bottom {
		margin-top: 26px;
		flex-direction: column;
	}

	.footer-subnav {
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px 16px;
	}
}

/* ========================================
   下層ページ（about など）
   ======================================== */
.subpage-main {
	padding-bottom: 56px;
}

/* ----- About ヒーロービジュアル ----- */
.about-hero {
	position: relative;
	background: #fff;
	overflow: hidden;
	padding: 36px 0 0;
}

.about-hero-inner {
	position: relative;
	max-width: 1160px;
	margin: 0 auto;
	padding: 32px 28px 8px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 1.05fr);
	align-items: center;
	gap: 30px 0;
}

.about-hero-column--text {
	position: relative;
	z-index: 2;
}

.about-hero-column--visual {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-hero-text {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 12px 8px 24px 36px;
}

.about-hero-sub {
	margin: 0 0 10px;
	font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #6b7280;
}

.about-hero-title {
	margin: 0;
	font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.08em;
	color: #7ecce8;
}

.about-hero-photo-wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.about-hero-photo-mask {
	position: relative;
	z-index: 1;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.about-hero-photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.about-hero-blobs {
	position: absolute;
	pointer-events: none;
	z-index: 2;
}

.about-hero-wave {
	position: relative;
	margin-top: 8px;
	height: 150px;
	background-image: url("../images/wave.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}

@media screen and (max-width: 1024px) {
	.about-hero {
		padding-top: 16px;
	}

	.about-hero-inner {
		grid-template-columns: 1fr;
		padding: 24px 18px 0;
		gap: 8px;
	}

	.about-hero-text {
		padding: 8px 12px 16px;
	}

	.about-hero-column--text {
		order: 1;
	}

	.about-hero-title {
		font-size: 32px;
	}

	.about-hero-column--visual {
		order: 2;
		min-height: 260px;
		padding: 0 8px 8px;
	}

	.about-hero-blobs--left {
		left: 4px;
		width: 56px;
		height: 160px;
	}

	.about-hero-blobs--left .about-hero-blob--orange {
		width: 28px;
		height: 34px;
		left: 4px;
	}

	.about-hero-blobs--left .about-hero-blob--cyan-sm {
		width: 22px;
		height: 26px;
	}

	.about-hero-blobs--right {
		right: 4px;
		width: 52px;
	}

	.about-hero-blobs--right .about-hero-blob--blue {
		width: 34px;
		height: 40px;
	}

	.about-hero-photo-wrap {
		max-width: 320px;
	}

	.about-hero-wave {
		height: 72px;
		margin-top: 4px;
	}
}

/* ----- About 次セクション（Concept） ----- */
.about-concept-intro {
	padding: 54px 0 0;
	background: url("../images/bg-concept.png") ;
}

.about-concept-intro-inner {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 18px;
}

.about-concept-intro-content {
	text-align: center;
	position: relative;
}

.about-concept-intro-content::before,
.about-concept-intro-content::after {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: 0;
	background-repeat: no-repeat;
	background-position: center center;
}

.about-concept-intro-content::before {
    left: 0;
    width: 230px;
    height: 280px;
    background-image: url(../images/about-concept-intro-deco-left.png);
    background-size: contain;
    bottom: -100px;
}

.about-concept-intro-content::after {
    right: -50px;
    top: 0;
    width: 300px;
    height: 150px;
    background-image: url(../images/about-concept-intro-deco-right.png);
    background-size: contain;
}

.about-concept-intro-content > * {
	position: relative;
	z-index: 1;
}

.about-concept-intro-label {
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 1;
	letter-spacing: 0.08em;
	color: #59b5d5;
}

.about-concept-intro-title {
	margin: 0;
	font-size: 40px;
	line-height: 1.45;
	letter-spacing: 0.02em;
	color: #40485a;
}

.about-concept-intro-text {
	margin: 30px 0 100px;
	font-size: 17px;
	line-height: 1.8;
	letter-spacing: 0.02em;
	color: #3f4a57;
}

.about-concept-next {
	padding: 58px 0 66px;
	background: #dff2fb url("../images/bg-concept.png") center/cover no-repeat;
}

.about-concept-next-inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 18px 100px;
}

.about-concept-next-card {
	background: rgba(255, 255, 255, 0.86);
	border-radius: 10px;
	padding: 60px 30px;
	box-shadow: 0 8px 20px rgba(65, 112, 140, 0.08);
}

.about-concept-next-label {
	text-align: center;	
	font-size: 20px;
	line-height: 1;
	letter-spacing: 0.08em;
	color: #59b5d5;
}

.about-concept-next-title {
	margin: 0;
	text-align: center;
	font-size: 40px;
	line-height: 1.45;
	letter-spacing: 0.03em;
	color: #40485a;
}

.about-concept-next-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 34px 50px;
    width: 80%;
    margin: 80px auto 0;
}

.about-concept-next-item {
	display: flex;
	flex-direction: column;
	grid-column: span 2;
	margin-bottom: 50px;
}

.about-concept-next-image-wrap {
	position: relative;
	margin: 0 auto;
}

.about-concept-next-number {
	position: absolute;
	top: -10px;
	left: 8px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #f8b54a;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 30px;
	text-align: center;
	z-index: 2;
}

.about-concept-next-image {
	width: 100%;
	aspect-ratio: 1 / 0.68;
	object-fit: contain;
}

.about-concept-next-item-title {
	margin: 12px 0 0;
	text-align: center;
	font-size: 15px;
	line-height: 1.6;
	font-weight: 700;
	color: #4a5260;
}

.about-concept-next-item-text {
	margin: 8px 0 0;
	font-size: 12px;
	line-height: 1.8;
	color: #4e5866;
}

.about-concept-next-item:nth-child(7) {
	grid-column: 2 / span 2;
}

.about-concept-next-item:nth-child(8) {
	grid-column: 4 / span 2;
}

@media screen and (max-width: 1024px) {
	.about-concept-intro {
		padding: 40px 0 34px;
	}

	.about-concept-intro-title {
		font-size: 30px;
	}

	.about-concept-intro-text {
		font-size: 16px;
	}

	.about-concept-next {
		padding: 42px 0 50px;
	}

	.about-concept-next-card {
		padding: 24px 18px 30px;
	}

	.about-concept-next-title {
		font-size: 28px;
	}

	.about-concept-next-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 16px;
	}

	.about-concept-next-item {
		grid-column: span 1;
	}

	.about-concept-next-item:nth-child(7),
	.about-concept-next-item:nth-child(8) {
		grid-column: auto;
	}
}

@media screen and (max-width: 640px) {
	.about-concept-intro {
		padding: 26px 0 0;
		background-size: contain;
	}

	.about-concept-intro-inner {
		max-width: 360px;
		padding: 0 12px;
	}

	.about-concept-intro-content {
		padding: 0 0 132px;
	}

	.about-concept-intro-content::before {
        left: 18px;
        bottom: 8px;
        width: 150px;
        height: 180px;
        background-size: contain;
	}

	.about-concept-intro-content::after {
		right: 8px;
		top: auto;
		bottom: 6px;
        width: 200px;
        height: 100px;
		background-size: contain;
	}

	.about-concept-intro-label {
		margin-bottom: 8px;
		font-size: 16px;
	}

	.about-concept-intro-title {
		font-size: 28px;
		line-height: 1.35;
		letter-spacing: 0.01em;
	}

	.about-concept-intro-text {
		margin: 20px 0 30px;
		font-size: 15px;
		line-height: 1.9;
	}

	.about-concept-intro-text br {
		display: none;
	}

	.about-concept-next-grid {
		grid-template-columns: 1fr;
		margin: 30px auto 0;
		    width: 100%;
	}

	.about-concept-next-item {
		max-width: 300px;
		margin: 0 auto 25px;
	}
	.about-concept-next-label {
		font-size: 16px;
		margin: 20px 0 15px;
	}
	.about-concept-next-item-title {
		font-size: 20px;
	}
	.about-concept-next-item-text {
		font-size: 15px;
	}
}

/* ----- About 保護者さまの声 ----- */
.page-about .about-voice-section {
	padding: 56px 0 0;
	background: url("../images/bg-concept-feature.png") center/cover no-repeat;
}

.page-about .about-voice-inner {
	max-width: 980px;
	margin: 0 auto 100px;
}

.about-voice-heading {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 26px;
	text-align: center;
	position: relative;
}

.about-voice-heading::before,
.about-voice-heading::after {
	content: "";
	flex-shrink: 0;
	align-self: flex-start;
	width: 100px;
    height: 100px;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.about-voice-heading::before {
	background-image: url("../images/about-voice-mascot-left.png");
	transform: translateY(-4px);
}

.about-voice-heading::after {
	background-image: url("../images/about-voice-mascot-right.png");
	transform: translateY(6px);
}

.about-voice-heading-text {
	flex: 0 1 auto;
	min-width: 0;
	max-width: 100%;
}

.about-voice-label {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #c8f3ff;
}

.about-voice-title {
	margin: 0;
	font-size: 40px;
	line-height: 1.35;
	color: #fff;
}

.about-voice-lead {
	margin: 35px 0;
	font-size: 17px;
	line-height: 1.8;
	color: #e8f8ff;
}

.about-voice-list {
	margin: 34px 0 0;
	display: grid;
	gap: 16px;
}

.about-voice-card {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 20px;
	padding: 22px 24px;
	background: rgba(255, 255, 255, 0.92);
	border-radius: 10px;
}

.about-voice-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background-color: #f5f8fc;
	background-image: url("../images/voice-avatar-1.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin: auto;
}

.about-voice-avatar--2 {
	background-image: url("../images/voice-avatar-2.png");
}

.about-voice-avatar--3 {
	background-image: url("../images/voice-avatar-3.png");
	background-position: top center;
}

.about-voice-avatar--4 {
	background-image: url("../images/voice-avatar-4.png");
	background-position: 30% center;
}

.about-voice-body {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.about-voice-text {
	margin: 0;
	font-size: 17px;
	line-height: 2;
	color: #4a5562;
}

.about-voice-meta {
	margin: 0;
	font-size: 17px;
	color: #6d7784;
}

/* 保護者さまの声（詳細カード） */
.about-voice-card--featured {
	display: block;
	padding: 0;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
}

.about-voice-featured {
	padding: 28px 32px 32px;
}

.about-voice-featured-head {
	margin-bottom: 24px;
	text-align: center;
}

.about-voice-featured-ribbon {
	display: inline-block;
	margin: 0 0 16px;
	padding: 8px 22px 8px 18px;
	background: linear-gradient(135deg, #6eb8e3 0%, #4fa3d5 100%);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.04em;
	transform: skewX(-12deg);
	border-radius: 2px;
}

.about-voice-featured-ribbon-num {
	font-size: 16px;
}

.about-voice-featured-ribbon-inner {
	display: inline-block;
	transform: skewX(12deg);
}

.about-voice-featured-quote {
	margin: 0;
	padding: 0;
	font-size: clamp(24px, 3.2vw, 34px);
	font-weight: 700;
	line-height: 1.45;
	color: #4fa3d5;
	letter-spacing: 0.02em;
	text-align: center;
}

.about-voice-featured-quote .hl-mark {
	background: linear-gradient(transparent 62%, #fff59d 62%);
}

.about-voice-featured-body {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 28px;
	align-items: center;
}

.about-voice-featured-text p {
	margin: 0;
	padding: 18px 0;
	font-size: 15px;
	line-height: 2;
	color: #3f4854;
	border-top: 1px dotted #b8dce8;
}

.about-voice-featured-text p:first-child {
	padding-top: 0;
	border-top: none;
}

.about-voice-featured-text .hl {
	color: #4fa3d5;
	font-weight: 700;
}

.about-voice-featured-text .hl-mark {
	background: linear-gradient(transparent 62%, #fff59d 62%);
}

.about-voice-featured-visual {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	align-self: center;
	gap: 16px;
}

.about-voice-featured-illust-wrap {
	position: relative;
	width: min(100%, 300px);
}

.about-voice-featured-bubble {
	position: absolute;
	top: -8px;
	right: 8px;
	z-index: 2;
	margin: 0;
	padding: 12px 16px;
	background: #fff;
	border: 2px solid #d8ecf7;
	border-radius: 18px;
	box-shadow: 0 4px 12px rgba(79, 163, 213, 0.12);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.55;
	color: #4a5562;
	text-align: center;
}

.about-voice-featured-bubble::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -10px;
	width: 16px;
	height: 16px;
	background: #fff;
	border-right: 2px solid #d8ecf7;
	border-bottom: 2px solid #d8ecf7;
	transform: translateX(-50%) rotate(45deg);
}

.about-voice-featured-bubble-em {
	font-size: 18px;
	color: #4fa3d5;
}

.about-voice-featured-illust {
	display: block;
	width: 100%;
	height: auto;
}

.about-voice-featured-profile {
	display: flex;
	align-items: center;
	gap: 12px;
	width: min(100%, 260px);
	padding: 12px 16px;
	background: #eef8fd;
	border: 2px solid #b8dce8;
	border-radius: 10px;
	position: relative;
	margin-top: 50px;
}

.about-voice-featured-profile::after {
	content: "";
	position: absolute;
	top: -6px;
	right: -10px;
	width: 24px;
	height: 24px;
	background:
		linear-gradient(45deg, transparent 46%, #b8e4f7 46%, #b8e4f7 54%, transparent 54%) 0 0 / 12px 12px no-repeat,
		linear-gradient(-45deg, transparent 46%, #b8e4f7 46%, #b8e4f7 54%, transparent 54%) 6px 3px / 12px 12px no-repeat;
	pointer-events: none;
}

.about-voice-featured-profile-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: #4fa3d5;
	position: relative;
}

.about-voice-featured-profile-icon::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 50%;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	transform: translateX(-50%);
}

.about-voice-featured-profile-icon::after {
	content: "";
	position: absolute;
	bottom: 8px;
	left: 50%;
	width: 24px;
	height: 12px;
	border-radius: 12px 12px 0 0;
	background: #fff;
	transform: translateX(-50%);
}

.about-voice-featured-profile-text p {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	color: #4fa3d5;
}

.about-voice-featured-profile-text p + p {
	margin-top: 2px;
	font-size: 13px;
	font-weight: 500;
}

@media screen and (max-width: 1024px) {
	.page-about .about-voice-section {
		padding: 40px 0 0px;
		margin-top: -1px;
	}

	.about-voice-title {
		font-size: 30px;
	}

	.about-voice-heading {
		gap: 14px;
	}
}

@media screen and (max-width: 640px) {
	.about-voice-label {
		font-size: 16px;
	}

	.about-voice-heading {
		display: block;
	}

	.about-voice-heading::before,
	.about-voice-heading::after {
		display: none;
	}

	.about-voice-title {
		font-size: 28px;
	}

	.about-voice-lead {
		font-size: 15px;
		margin: 20px 0 0;
	}

	.about-voice-card {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 18px 16px;
	}

	.about-voice-avatar {
		margin: 0 auto;
	}

	.about-voice-featured {
		padding: 20px 16px 24px;
		display: flex;
		flex-direction: column;
	}

	.about-voice-featured-body {
		display: contents;
	}

	.about-voice-featured-visual {
		display: contents;
	}

	.about-voice-featured-head {
		order: 1;
	}

	.about-voice-featured-illust-wrap {
		order: 2;
		width: min(100%, 280px);
		margin: 0 auto 20px;
	}

	.about-voice-featured-text {
		order: 3;
	}

	.about-voice-featured-profile {
		order: 4;
		width: min(100%, 280px);
		margin: 20px auto 0;
	}
}

/* ----- Contact ページ ----- */

.contact-section {
	padding: 0;
	background: url("../images/bg-concept-2.png");
	background-size: contain;
}

.contact-section-inner {
	max-width: 720px;
	margin: 0 auto;
	padding: 50px 28px 60px;
}

.contact-panel {
	background: #fff;
	border-radius: 12px;
	padding: 34px 22px 40px;
	box-shadow: 0 8px 24px rgba(65, 112, 140, 0.08);
}

.contact-panel-header {
	text-align: center;
}

.contact-panel-label {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #45b5df;
	letter-spacing: 0.08em;
}

.contact-panel-lead {
	margin: 12px 0 0;
	font-size: 15px;
	line-height: 1.85;
	color: #4e5866;
}

.contact-panel-body {
	margin: 28px 0 0;
	font-size: 15px;
	line-height: 1.85;
	color: #4e5866;
}

.contact-panel-body p {
	margin: 0 0 1em;
	color: #4e5866;
}

.contact-panel-body p:last-child {
	margin-bottom: 0;
}

.contact-panel-body a {
	color: #45b5df;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.contact-panel-body a:hover {
	opacity: 0.85;
}

@media screen and (max-width: 640px) {
	.contact-section-inner {
		padding: 28px 14px 44px;
	}

	.contact-panel {
		padding: 26px 16px 32px;
		border-radius: 10px;
	}

	.contact-panel-label {
		font-size: 18px;
	}

	.contact-panel-lead {
		font-size: 14px;
		text-align: left;
	}
}

/* ----- QA ページ ----- */

.qa-section {
	padding: 0 0;
	background:  url("../images/bg-concept-2.png") ;
	background-size: cover;
    background-repeat: no-repeat;
}

.qa-section-inner {
	max-width: 900px;
	margin: 0 auto;
	padding: 50px 28px;
}

.qa-panel {
	background: #ffffff;
	border-radius: 12px;
	padding: 34px 18px 30px;
}

.qa-panel-header {
	text-align: center;
}

.qa-panel-label {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #45b5df;
	letter-spacing: 0.08em;
}

.qa-panel-title {
	margin: 8px 0 0;
	font-size: 40px;
	line-height: 1.35;
	letter-spacing: 0.02em;
	color: #4b5563;
}

.qa-list {
	margin: 30px 0 0;
	display: grid;
	gap: 18px;
}

.qa-item-card {
	background: #fff;
	border: 2px solid #58b8dd;
	border-radius: 16px;
	overflow: hidden;
}

.qa-item-question,
.qa-item-answer {
	display: grid;
	grid-template-columns: 22px 1fr;
	align-items: start;
	gap: 10px;
	padding: 12px 18px 12px 14px;
}

.qa-item-question {
	background: #58b8dd;
	align-items: center;
}

.qa-item-answer {
	background: #fff;
}

.qa-item-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	font-family: "Zen Maru Gothic", "Noto Serif JP", serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	color: #58b8dd;
}

.qa-item-question-text {
	margin: 0;
	padding-top: 2px;
	font-family: "Zen Maru Gothic", "Noto Serif JP", serif;
	font-size: 19px;
	line-height: 1.5;
	font-weight: 700;
	color: #fff;
}

.qa-item-answer-text {
	margin: 0;
	font-family: "Zen Maru Gothic", "Noto Serif JP", serif;
	font-size: 15px;
	line-height: 1.85;
	color: #4e5866;
}

@media screen and (max-width: 1024px) {
	.qa-panel {
		padding: 28px 14px 22px;
	}

	.qa-panel-title {
		font-size: 42px;
	}

	.qa-item-question-text {
		font-size: 16px;
	}

	.qa-item-answer-text {
		font-size: 14px;
	}
}

@media screen and (max-width: 640px) {
	.page-qa {
		padding-top: 12px;
	}

	.qa-section-inner {
		padding: 0 12px;
	}

	.qa-panel {
		border-radius: 10px;
		padding: 22px 10px 16px;
	}

	.qa-panel-label {
		font-size: 12px;
	}

	.qa-panel-title {
		font-size: 30px;
	}

	.qa-list {
		margin-top: 18px;
		gap: 12px;
	}

	.qa-item-card {
		border-width: 1.5px;
		border-radius: 12px;
	}

	.qa-item-question,
	.qa-item-answer {
		grid-template-columns: 20px 1fr;
		gap: 13px;
		padding: 10px 10px;
	}

	.qa-item-badge {
		width: 25px;
        height: 25px;
        font-size: 17px;
	}

	.qa-item-question-text {
		font-size: 15px;
	}

	.qa-item-answer-text {
		font-size: 15px;
		line-height: 1.7;
	}
}

/* ----- Blog 下層ページ ----- */
.page-blog {
	background: #dff2fb url("../images/bg-concept.png") ;
	margin-top: -30px;
}

.blog-archive-inner {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0px 22px 100px;
}

.blog-archive-header {
	text-align: center;
}

.blog-archive-label {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #47b6df;
}

.blog-archive-title {
	margin: 8px 0 0;
	font-size: 52px;
	line-height: 1.35;
	letter-spacing: 0.02em;
	color: #4f5a67;
}

.blog-archive-grid {
    margin: 0px auto 0;
    max-width: 1060px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 50px 0;
}

/* ブログ下層ページ：TOP「ブログ」と同一カード・グリッド */
.blog-archive-section .blog-card-grid.blog-archive-grid {
	max-width: 960px;
	gap: 18px;
	padding: 50px 0 0;
	margin: 0 auto;
}

.blog-archive-card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(84, 125, 149, 0.08);
}

.blog-archive-card-link {
	display: block;
	color: inherit;
}

.blog-archive-card-image-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.blog-archive-card-image-wrap .blog-archive-card-image {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-archive-card-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.blog-archive-card-body {
	padding: 12px 12px 14px;
}

.blog-archive-card-title {
	margin: 0;
	font-size: 20px;
	line-height: 1.3;
	color: #58bbe2;
	font-weight: 700;
}

.blog-archive-grid-extra {
	margin-top: 16px;
}

.blog-archive-grid-extra[hidden],
.blog-archive-more[hidden] {
	display: none !important;
}

.blog-archive-empty {
	margin: 28px 0 0;
	text-align: center;
	font-size: 14px;
	color: #5e6975;
}

.blog-archive-more {
	margin-top: 42px;
	display: flex;
	justify-content: center;
}

.blog-archive-more-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	min-width: 220px;
	height: 42px;
	padding: 0 26px;
	border-radius: 999px;
	background: #f1c85f;
	color: #4d5865;
	font-size: 16px;
	font-weight: 700;
}

.blog-archive-more-link span {
	font-size: 18px;
	line-height: 1;
}

@media screen and (max-width: 1024px) {
	.blog-archive-title {
		font-size: 38px;
	}

	.blog-archive-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 760px;
	}

	/* TOPブログセクションと同じ：タブレット以下は1列 */
	.blog-archive-section .blog-card-grid.blog-archive-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
	}
}

@media screen and (max-width: 640px) {
	.page-blog {
		padding-top: 12px;
		background-size: contain;
		margin-top: -1px;
	}

	.blog-archive-inner {
		padding: 0 12px;
        margin-bottom: 50px;
	}

	.blog-archive-title {
		font-size: 30px;
	}

	.blog-archive-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.blog-archive-card-title {
		font-size: 18px;
	}

	.blog-archive-more {
		margin: 30px 0 50px;
	}
}

/* ----- Being ページ（Philosophy / 5カード） ----- */
.page-being .about-concept-next-content .about-concept-intro-text {
	margin: 28px 0 0;
	font-size: 17px;
	line-height: 1.85;
	color: #3f4a57;
	text-align: center;
}

.page-being .about-concept-next-grid {
	display: grid;
	margin-top: 48px;
	width: 100%;
	max-width: 100%;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px 12px;
}

.page-being .about-concept-next-number {
	display: none;
}

.page-being .about-concept-next-item {
	grid-column: span 1;
	background: #eef6f8;
	border-radius: 14px;
	padding: 22px 10px 26px;
	margin-bottom: 0;
	align-items: center;
}

.page-being .about-concept-next-image-wrap {
	width: auto;
    height: 90px;
}

.page-being .about-concept-next-image {
	aspect-ratio: 1 / 1;
	object-fit: contain;
	border-radius: 12px;
}

.page-being .about-concept-next-item-title {
	margin-top: 14px;
	font-size: 15px;
	line-height: 1.5;
}

.page-being .about-concept-next-grid + .about-concept-intro-text {
	position: relative;
	margin: 48px auto 0;
	max-width: 52em;
	padding-top: 36px;
	text-align: center;
}

.page-being .about-concept-next-grid + .about-concept-intro-text::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 11px solid transparent;
	border-right: 11px solid transparent;
	border-top: 14px solid #f28c38;
}

.page-being .being-callout {
	position: relative;
	margin: 40px auto 0;
	max-width: 52em;
	padding: 44px 28px 48px;
	background: #fff9e6;
	border-radius: 16px;
	overflow: hidden;
}

.page-being .being-callout::before,
.page-being .being-callout::after {
	content: "";
	position: absolute;
	z-index: 0;
	pointer-events: none;
	opacity: 0.88;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.page-being .being-callout::before {
	top: 6px;
	right: 4px;
	width: 120px;
	height: 120px;
	max-height: 120px;
	background-image: url("../images/being-callout-deco-tr.png");
}

.page-being .being-callout::after {
	bottom: 4px;
	left: 4px;
	width: 120px;
	height: 120px;
	max-height: 110px;
	background-image:  url("../images/being-callout-deco-bl.png");
}

.page-being .being-callout-text {
	margin: 0;
	text-align: center;
	position: relative;
	z-index: 1;
}

.page-being .being-outro-lines {
	margin: 48px 0 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.75;
	text-align: center;
	color: #40485a;
}

.page-being .being-marker {
	background: linear-gradient(transparent 58%, #fff3b0 58%, #fff3b0 92%, transparent 92%);
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	padding: 0 0.08em;
}

@media screen and (max-width: 1024px) {
	.page-being .about-concept-next-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.page-being .being-outro-lines {
		font-size: 18px;
		margin: 28px 0 0;
	}
}

@media screen and (max-width: 640px) {
	.page-being .about-concept-next-grid {
		grid-template-columns: 1fr;
	}

	.page-being .being-callout {
		padding: 50px 18px 50px;
	}

	.page-being .being-callout::before {
		width: min(88px, 34%);
		height: min(88px, 34vw);
		max-height: 88px;
		top: -10px;
	}

	.page-being .being-callout::after {
		width: min(80px, 32%);
		height: min(80px, 32vw);
		max-height: 80px;
		bottom: -15px;
	}
	.page-being .about-concept-next-item {
		width: 80%;
	}
	.page-being .about-concept-next-grid + .about-concept-intro-text {
		margin: 25px auto 0;
	}
}


/* ----- Being — 哲学カード（2×2・水色背景） ----- */
.page-being .about-voice-section {
	padding: 52px 0 0;
}

.page-being .about-voice-inner {
	max-width: 920px;
	margin: 0 auto;
	padding: 0 18px 56px;
}

.page-being .being-value-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 20px;
	margin: 34px 0 0;
}

.page-being .being-value-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 18px;
	min-height: 0;
	padding: 32px 26px 36px;
	background: #fff;
	border-radius: 26px;
	box-shadow: 0 8px 24px rgba(25, 90, 120, 0.12);
}

.page-being .being-value-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 76px;
	height: 76px;
	color: #4db3d9;
}

.page-being .being-value-icon img {
	display: block;
	width: 56px;
	height: 56px;
}

.page-being .being-value-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.85;
	letter-spacing: 0.02em;
	color: #3f4a57;
}

.page-being .being-value-em {
	font-weight: 700;
	color: #2d8fb5;
}

.page-being .being-value-footer {
	margin: 40px 0 0;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.55;
	color: #f9d066;
}

@media screen and (max-width: 640px) {
	.page-being .about-voice-section {
		margin-top: -1px;
	}

	.page-being .being-value-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.page-being .being-value-card {
		padding: 26px 18px 30px;
		border-radius: 22px;
	}

	.page-being .being-value-footer {
		font-size: 18px;
	}
}

/* ----- Being — 実績（Results） ----- */
.page-being .being-results-section {
	padding: 72px 0 50px;
	background: #f7fafc;
	background: url(../images/bg-concept.png);
}

.page-being .being-results-inner {
    max-width: 980px;
    margin: 0px auto;
    padding: 50px 18px;
    background-color: white;
    border-radius: 20px;
}

.page-being .being-results-header {
	text-align: center;
}

.page-being .being-results-label {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #59b5d5;
}

.page-being .being-results-title {
	margin: 0;
	font-size: 36px;
	line-height: 1.35;
	letter-spacing: 0.02em;
	color: #40485a;
}

.page-being .being-results-lead {
	margin: 28px 0 0;
	font-size: 17px;
	line-height: 1.85;
	letter-spacing: 0.02em;
	color: #3f4a57;
}

.page-being .being-results-stats {
	margin: 52px 0 0;
	text-align: center;
}

.page-being .being-results-stat-label {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 700;
	color: #4a5562;
}

.page-being .being-results-stat-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 108px;
}

.page-being .being-results-stat-icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5dd4f0;
	opacity: 0.38;
	pointer-events: none;
}

.page-being .being-results-stat-icon svg {
	width: min(100px, 90%);
	height: auto;
}

.page-being .being-results-stat-value {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: clamp(28px, 4.5vw, 44px);
	font-weight: 700;
	line-height: 1.15;
	color: #45c4eb;
}

.page-being .being-results-stat-value strong {
	font-weight: 800;
	letter-spacing: 0.02em;
}

.page-being .being-results-stat-unit {
	font-size: 0.62em;
	font-weight: 700;
	color: #45c4eb;
}

.page-being .being-results-sublead {
	margin: 48px 0 0;
	text-align: center;
	font-size: 16px;
	line-height: 1.85;
	color: #3f4a57;
}

.page-being .being-results-voices {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px 24px;
	align-items: start;
	margin: 40px 0 0;
}

.page-being .being-results-voice-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 320px;
	margin: 0 auto;
	width: 100%;
}

.page-being .being-results-avatar-wrap {
	position: relative;
	z-index: 2;
	flex-shrink: 0;
	width: 104px;
	height: 104px;
	margin: 0 0 -28px;
	padding: 6px;
	border-radius: 50%;
	box-sizing: border-box;
}

.page-being .being-results-avatar {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.page-being .being-results-quote-box {
	width: 100%;
	padding: 40px 0px 22px;
	background: #fffbeb;
	border-radius: 18px;
	box-shadow: 0 4px 14px rgba(65, 90, 110, 0.06);
}

.page-being .being-results-quote {
	margin: 0;
	text-align: center;
	font-size: 15px;
	line-height: 1.75;
	font-weight: 700;
	color: #3f4a57;
}

.page-being .being-results-close {
	margin: 48px 0 0;
	text-align: center;
	font-size: 16px;
	line-height: 1.9;
	color: #3f4a57;
}
.results-section-wave {
    position: relative;
    margin-top: 0px;
    height: 180px;
    background-image: url("../images/wave-white.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

@media screen and (max-width: 900px) {
	.page-being .being-results-inner {
		max-width: 85%;
	}
	
	.page-being .being-results-stats {
		grid-template-columns: 1fr;
		gap: 36px;
		max-width: 360px;
		margin-left: auto;
		margin-right: auto;
		margin: 20px 0 0;
	}

	.page-being .being-results-voices {
		grid-template-columns: 1fr;
		max-width: 360px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (max-width: 640px) {
	.page-being .being-results-section {
		padding: 48px 0 56px;
        background-size: contain;
        margin-top: -1px;
	}

	.page-being .being-results-title {
		font-size: 26px;
	}

	.page-being .being-results-br {
		display: none;
	}

	.page-being .being-results-close {
		font-size: 15px;
	}
	.results-section-wave {
		height: 45px;
	}
}

/* ----- Being — 約束（Promise） ----- */
.page-being .being-promise-section {
	padding: 0px 0 0;
	background: #fff;
}

.page-being .being-promise-inner {
	max-width: 920px;
	margin: 0 auto;
	padding: 0 18px;
}

.page-being .being-promise-header {
	text-align: center;
}

.page-being .being-promise-label {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #59b5d5;
}

.page-being .being-promise-title {
	margin: 0;
	font-size: 36px;
	line-height: 1.35;
	letter-spacing: 0.04em;
	color: #40485a;
}

.page-being .being-promise-block {
    position: relative;
    margin: 0px auto 20px;
    max-width: 720px;
    padding: 48px 0 56px;
}

.page-being .being-promise-illust {
	position: absolute;
	width: clamp(72px, 16vw, 112px);
	height: auto;
	object-fit: contain;
	pointer-events: none;
	user-select: none;
}

.page-being .being-promise-illust--tl {
	top: 0;
	left: 0;
	transform: translate(-8%, -12%);
}

.page-being .being-promise-illust--tr {
	top: 0;
	right: 0;
	transform: translate(8%, -12%);
}

.page-being .being-promise-illust--bl {
	bottom: 0;
	left: 0;
	transform: translate(-6%, 18%);
}

.page-being .being-promise-illust--br {
	bottom: 0;
	right: 0;
	transform: translate(6%, 18%);
}

.page-being .being-promise-body {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	max-width: 26em;
	text-align: center;
}

.page-being .being-promise-text {
	margin: 0;
	font-size: 17px;
	line-height: 2.15;
	letter-spacing: 0.02em;
	color: #3f4a57;
}

.page-being .being-promise-sign {
	margin-top: 44px;
}

.page-being .being-promise-role {
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1.6;
	color: #5a6570;
}

.page-being .being-promise-name {
	margin: 0;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	color: #40485a;
}

.page-being .being-promise-name-en {
	margin: 8px 0 0;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: #6d7784;
}

@media screen and (max-width: 768px) {
	.page-being .being-promise-block {
		min-height: 0;
		padding: 24px 8px 40px;
	}

	.page-being .being-promise-illust {
		width: clamp(56px, 22vw, 80px);
		opacity: 0.92;
	}

	.page-being .being-promise-illust--tl {
		transform: translate(0, -4%);
	}

	.page-being .being-promise-illust--tr {
		transform: translate(0, -4%);
	}

	.page-being .being-promise-illust--bl {
		transform: translate(0, 8%);
	}

	.page-being .being-promise-illust--br {
		transform: translate(0, 8%);
	}
}

@media screen and (max-width: 640px) {
	.page-being .being-promise-section {
		padding: 0;
	}

	.page-being .being-promise-title {
		font-size: 28px;
	}

	.page-being .being-promise-text {
		font-size: 16px;
		line-height: 2.05;
	}

	.page-being .being-promise-illust {
		display: none;
	}

	.page-being .being-promise-sign {
		margin-top: 36px;
	}
}


.contact-section-wave {
	position: relative;
	margin-top: -12px;
	height: 160px;
	background-image: url("../images/contact-section-wave.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}

/* ----- Contact：体験レッスン申込フォーム ----- */

.contact-trial-section {
	position: relative;
	padding: 0 20px 72px;
	background: #4DB6D8;
	overflow: hidden;
}

.contact-trial-curve {
	position: relative;
	width: 100%;
	height: clamp(56px, 10vw, 100px);
	margin-top: -2px;
	line-height: 0;
}

.contact-trial-curve-svg {
	display: block;
	width: 100%;
	height: 100%;
}

.contact-trial-inner {
	max-width: 720px;
	margin: 0 auto;
	padding-top: 8px;
}

.contact-trial-header {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 16px 24px;
	flex-wrap: wrap;
	margin-bottom: 70px;
	padding: 0 8px;
	text-align: center;
	position: relative;
	z-index: 0;
}

.contact-trial-header::before,
.contact-trial-header::after {
	content: "";
	position: absolute;
	z-index: 0;
	pointer-events: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.contact-trial-header::before {
	left: max(-4px, 0%);
	top: 50%;
	transform: translateY(-50%);
	width: clamp(72px, 14vw, 140px);
	height: clamp(86px, 17vw, 168px);
	background-image: url("../images/lesson-cta-2.png");
}

.contact-trial-header::after {
	right: max(-4px, 0%);
	bottom: 10%;
	width: clamp(78px, 15vw, 154px);
	height: clamp(68px, 13vw, 136px);
	background-image: url("../images/lesson-cta.png");
}

.contact-trial-illust {
	flex: 0 0 auto;
	width: clamp(72px, 18vw, 110px);
}

.contact-trial-illust-svg {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 4px 8px rgba(0, 70, 120, 0.12));
}

.contact-trial-heading-wrap {
	position: relative;
	z-index: 1;
	max-width: 520px;
}

.contact-trial-title {
	margin: 0;
	color: #ffffff;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 2px rgba(0, 60, 100, 0.15);
}

.contact-trial-lead {
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.95);
	font-size: 17px;
	line-height: 1.85;
	text-shadow: 0 1px 1px rgba(0, 60, 100, 0.12);
}

.contact-trial-card {
	background: #ffffff;
	border-radius: 20px;
	padding: clamp(28px, 5vw, 44px) clamp(20px, 4vw, 40px);
	box-shadow: 0 12px 40px rgba(30, 100, 140, 0.12);
}

.contact-trial-feedback {
	margin: 0 0 22px;
	padding: 14px 16px;
	border-radius: 12px;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.contact-trial-feedback--success {
	background: #e8f8f0;
	color: #1d5c3a;
}

.contact-trial-feedback--error {
	background: #fff0f0;
	color: #8b2e2e;
}

.contact-trial-field {
	margin-top: 22px;
}

.contact-trial-form .contact-trial-field:first-of-type {
	margin-top: 0;
}

.contact-trial-label-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.contact-trial-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	padding: 4px 10px;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
}

.contact-trial-badge--required {
	background: #45b5df;
	color: #ffffff;
}

.contact-trial-badge--optional {
	background: #c5cbd3;
	color: #ffffff;
}

.contact-trial-label {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #3d4a5a;
}

.contact-trial-input,
.contact-trial-textarea {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 14px 16px;
	border: 1px solid #d1d9e3;
	border-radius: 12px;
	background: #ffffff;
	font-family: inherit;
	font-size: 1rem;
	color: #2c3540;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-trial-input:focus,
.contact-trial-textarea:focus {
	outline: none;
	border-color: #45b5df;
	box-shadow: 0 0 0 3px rgba(69, 181, 223, 0.2);
}

.contact-trial-textarea {
	min-height: 140px;
	resize: vertical;
	line-height: 1.65;
}

.contact-trial-actions {
	margin-top: 32px;
	display: flex;
	justify-content: center;
}

.contact-trial-submit,
.contact-trial-card--cf7 input.wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: min(100%, 340px);
	padding: 16px 32px;
	border: none;
	border-radius: 999px;
	background: #f1cb67;
	color: #5a5d62;
	font-family: inherit;
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(200, 160, 50, 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-trial-submit:hover,
.contact-trial-submit:focus-visible,
.contact-trial-card--cf7 input.wpcf7-submit:hover,
.contact-trial-card--cf7 input.wpcf7-submit:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(200, 160, 50, 0.42);
}

.contact-trial-submit:focus-visible,
.contact-trial-card--cf7 input.wpcf7-submit:focus-visible {
	outline: 2px solid #45b5df;
	outline-offset: 3px;
}

.contact-trial-card--cf7 .wpcf7 {
	margin: 0;
}

.contact-trial-card--cf7 .wpcf7-response-output {
	margin: 0 0 22px;
	padding: 14px 16px;
	border-radius: 12px;
	border-width: 1px;
	font-size: 0.9375rem;
	line-height: 1.6;
}

.contact-trial-card--cf7 .wpcf7-mail-sent-ok {
	background: #e8f8f0;
	border-color: #b8dfc8;
	color: #1d5c3a;
}

.contact-trial-card--cf7 .wpcf7-validation-errors,
.contact-trial-card--cf7 .wpcf7-acceptance-missing {
	background: #fff0f0;
	border-color: #eec8c8;
	color: #8b2e2e;
}

.contact-trial-card--cf7 .wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 0.8125rem;
}

.contact-trial-field--consent .contact-trial-consent-lead {
	margin: 0 0 10px;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #3d4a5a;
}

.contact-trial-field--consent .contact-trial-consent-lead a {
	color: #45b5df;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.contact-trial-field--consent .contact-trial-consent-line {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #3d4a5a;
}

.contact-trial-card--cf7 .wpcf7-form-control-wrap.acceptance-privacy,
.contact-trial-card--cf7 .wpcf7-form-control-wrap.privacy-ok {
	display: block;
}

.contact-trial-card--cf7 .wpcf7-acceptance .wpcf7-list-item,
.contact-trial-card--cf7 .wpcf7-checkbox .wpcf7-list-item {
	margin: 0;
}

.contact-trial-card--cf7 .wpcf7-acceptance .wpcf7-list-item label,
.contact-trial-card--cf7 .wpcf7-checkbox .wpcf7-list-item label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: inherit;
	color: inherit;
}

.contact-trial-card--cf7 .wpcf7-acceptance input[type="checkbox"],
.contact-trial-card--cf7 .wpcf7-checkbox input[type="checkbox"] {
	width: 1.125rem;
	height: 1.125rem;
	min-width: 1.125rem;
	margin: 0.15em 0 0;
	padding: 0;
	flex-shrink: 0;
	accent-color: #45b5df;
	cursor: pointer;
	box-sizing: border-box;
	vertical-align: top;
}

.contact-trial-card--cf7 .wpcf7-acceptance .wpcf7-list-item-label,
.contact-trial-card--cf7 .wpcf7-checkbox .wpcf7-list-item-label {
	flex: 1;
	min-width: 0;
	line-height: 1.5;
}

.contact-trial-submit-chevron {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
	opacity: 0.85;
}

@media screen and (max-width: 640px) {
	.contact-trial-title {
		font-size: 24px;
	}
	.contact-trial-lead {
		font-size: 15px;
	}
	.contact-section-wave {
		height: 40px;
	}
	.contact-trial-section {
		padding: 0 14px 52px;
		margin-top: -1px;
	}

	.contact-trial-header {
		flex-direction: column;
		align-items: center;
		margin-bottom: 22px;
	}

	.contact-trial-header::before {
		left: 4px;
		top: auto;
		bottom: 0;
		transform: none;
		width: clamp(56px, 22vw, 88px);
		height: clamp(68px, 26vw, 104px);
	}

	.contact-trial-header::after {
		right: 4px;
		bottom: 0;
		width: clamp(60px, 23vw, 92px);
		height: clamp(52px, 20vw, 84px);
	}

	.contact-trial-illust--left {
		order: 2;
	}

	.contact-trial-heading-wrap {
		order: 1;
	}

	.contact-trial-illust--right {
		order: 3;
	}

	.contact-trial-illust {
		width: 88px;
	}

	.contact-trial-card {
		border-radius: 16px;
		padding: 24px 16px 28px;
	}

	.contact-trial-submit,
	.contact-trial-card--cf7 input.wpcf7-submit {
		width: 100%;
		min-width: 0;
		padding: 15px 24px;
		font-size: 1rem;
	}
}

/* ----- Contact Form 7：cp-cf7 共通行・同意チェック ----- */
.cp-cf7-row {
	margin-top: 22px;
}

.cp-cf7-row:first-child {
	margin-top: 0;
}

.cp-cf7-consent.cp-cf7-row {
	margin-top: 26px;
	padding: 18px 20px;
	background: linear-gradient(180deg, #f7fbfd 0%, #eef6fa 100%);
	border: 1px solid rgba(69, 181, 223, 0.35);
	border-radius: 14px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.cp-cf7-consent .wpcf7-form-control-wrap {
	display: block;
	margin: 0;
}

.cp-cf7-consent .wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

.cp-cf7-consent .wpcf7-acceptance .wpcf7-list-item label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0;
	cursor: pointer;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.55;
	color: #3d4a5a;
}

.cp-cf7-consent .wpcf7-acceptance input[type="checkbox"] {
	width: 1.2rem;
	height: 1.2rem;
	min-width: 1.2rem;
	margin: 0.12em 0 0;
	padding: 0;
	flex-shrink: 0;
	border-radius: 4px;
	vertical-align: top;
	cursor: pointer;
	accent-color: #45b5df;
	box-sizing: border-box;
	transition: transform 0.15s ease;
}

.cp-cf7-consent .wpcf7-acceptance input[type="checkbox"]:focus-visible {
	outline: 2px solid #45b5df;
	outline-offset: 2px;
}

.cp-cf7-consent .wpcf7-acceptance .wpcf7-list-item-label {
	flex: 1;
	min-width: 0;
	line-height: 1.55;
}

.cp-cf7-consent .wpcf7-list-item-label a {
	color: #2a9acb;
	text-decoration: underline;
	text-underline-offset: 2px;
	font-weight: 700;
}

.cp-cf7-consent .wpcf7-list-item-label a:hover {
	color: #2588b5;
}

.cp-cf7-consent .wpcf7-not-valid-tip {
	margin-top: 8px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #b42323;
}

@media screen and (max-width: 640px) {
	.cp-cf7-consent.cp-cf7-row {
		padding: 14px 16px;
		margin-top: 20px;
		border-radius: 12px;
	}

	.cp-cf7-consent .wpcf7-acceptance .wpcf7-list-item label {
		font-size: 0.875rem;
		gap: 10px;
	}
}

/* ----- 投稿シングル（ヒーロー：カテゴリー・タイトル・ギャラリー） ----- */

.works-single-page {
	background: #f8fafc;
}

.works-single-gallery {
	padding: 70px 20px 0px;
}

.works-single-gallery .works-single-inner {
	max-width: 960px;
	margin: 0 auto;
}

.works-single-head {
	margin-bottom: 24px;
	text-align: center;
}

.works-single-categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
}

.works-single-category-link {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(69, 181, 223, 0.12);
	color: #3a9ec8;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.works-single-category-link:hover {
	background: rgba(69, 181, 223, 0.22);
	color: #2d8bb8;
	opacity: 1;
}

.works-single-title {
	margin: 0;
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 700;
	line-height: 1.35;
	color: #4f5a67;
	letter-spacing: 0.02em;
}

.works-single-slider {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
}

.works-single-main {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	border-radius: 12px;
	background: #e8eef3;
}

.works-single-track {
	display: flex;
	width: 100%;
	transition: transform 0.35s ease;
}

.works-single-main-image {
	flex: 0 0 100%;
	width: 100%;
}

.works-single-main-img {
	display: block;
	width: 100%;
	height: auto;
	vertical-align: top;
}

.works-single-nav {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: #fff;
	color: #45b5df;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(70, 120, 150, 0.15);
}

.works-single-nav:hover {
	opacity: 0.9;
}

.works-single-thumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
}

.works-single-thumb {
	padding: 0;
	border: 3px solid transparent;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	background: none;
	opacity: 0.65;
	transition: opacity 0.2s ease, border-color 0.2s ease;
}

.works-single-thumb.is-active {
	opacity: 1;
	border-color: #59bce4;
}

.works-single-thumb-img {
	display: block;
	width: 72px;
	height: 54px;
	object-fit: cover;
	vertical-align: top;
}

.works-single-more-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	padding: 28px 24px 32px;
	background: #ffffff;
	border-radius: 16px;
}

.works-single-more-label {
	margin: 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: #47b6df;
	text-transform: uppercase;
}

.works-single-more-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 260px;
	padding: 16px 32px;
	border-radius: 999px;
	background: #f1cb67;
	color: #5a5d62;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(210, 175, 70, 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.works-single-more-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(210, 175, 70, 0.45);
	background: #f5d57a;
	opacity: 1;
}

.works-single-more-button:focus-visible {
	outline: 2px solid #45b5df;
	outline-offset: 3px;
}

.works-single-more-button-icon {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	opacity: 0.9;
}

.works-single-related {
	padding: 40px 20px 16px;
}

.works-single-related-inner {
	max-width: 1160px;
	margin: 0 auto;
}

.works-single-related-title {
	margin: 0 0 8px;
	text-align: center;
	font-size: clamp(1.25rem, 3vw, 1.625rem);
	font-weight: 700;
	color: #4f5a67;
	letter-spacing: 0.02em;
}

.works-single-related-grid.blog-archive-grid {
	padding: 24px 0 12px;
	margin-bottom: 0;
}

@media screen and (max-width: 640px) {
	.works-single-gallery {
		padding: 22px 14px 28px;
	}

	.works-single-nav {
		width: 36px;
		height: 36px;
		font-size: 22px;
	}

	.works-single-related {
		padding: 28px 14px 12px;
	}

	.works-single-related-grid.blog-archive-grid {
		padding: 16px 0 8px;
		gap: 12px;
	}

	.works-single-related-grid .blog-archive-card:nth-child(n + 4) {
		display: none;
	}

	.works-single-more {
		padding: 28px 14px 44px;
	}

	.works-single-more-wrap {
		padding: 22px 18px 26px;
		border-radius: 14px;
	}

	.works-single-more-button {
		min-width: 0;
		width: 100%;
		max-width: 320px;
		padding: 14px 22px;
		font-size: 16px;
	}
}

/* ----- 投稿シングル（本文：見出し・画像・段落） ----- */

.works-single-body {
	padding: 0 20px 150px;
	background: #f8fafc;
}

.works-single-entry {
	max-width: 720px;
	margin: 0 auto;
	padding: 36px 0 8px;
	font-size: 16px;
	line-height: 1.85;
	color: #3d4a57;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.works-single-entry .works-single-featured {
	margin: 0 0 1.75rem;
}

.works-single-entry .works-single-featured .works-single-featured-img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
	vertical-align: middle;
}

.works-single-entry > *:first-child {
	margin-top: 0;
}

.works-single-entry h2 {
	margin: 2.2em 0 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.35;
	color: #2c3540;
	border-bottom: 2px solid #59bce4;
	padding-bottom: 0.35em;
}

.works-single-entry h3 {
	margin: 1.75em 0 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	color: #3d4d5c;
}

.works-single-entry h4 {
	margin: 1.5em 0 0;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.45;
	color: #4a5868;
}

.works-single-entry h2 + *,
.works-single-entry h3 + *,
.works-single-entry h4 + * {
	margin-top: 0.65em;
}

.works-single-entry p {
	margin: 1em 0 0;
}

.works-single-entry ul,
.works-single-entry ol {
	margin: 1em 0 0;
	padding-left: 1.5em;
}

.works-single-entry li {
	margin: 0.35em 0;
}

.works-single-entry a {
	color: #45b5df;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.works-single-entry a:hover {
	opacity: 0.85;
}

.works-single-entry img,
.works-single-entry .wp-block-image img {
	height: auto;
	max-width: 100%;
	border-radius: 8px;
	vertical-align: middle;
}

.works-single-entry .wp-block-image {
	margin: 1.25em 0 0;
}

.works-single-entry figure {
	margin: 1.25em 0 0;
}

.works-single-entry figcaption {
	margin-top: 0.5em;
	font-size: 0.875rem;
	color: #6b7582;
	text-align: center;
	line-height: 1.5;
}

.works-single-entry blockquote {
	margin: 1.25em 0 0;
	padding: 14px 18px;
	border-left: 4px solid #59bce4;
	background: rgba(89, 188, 228, 0.08);
	color: #4e5866;
}

.works-single-entry .wp-block-embed {
	margin: 1.25em 0 0;
}

.works-single-entry .wp-block-embed__wrapper {
	position: relative;
}

.works-single-pages {
	margin-top: 2em;
	padding-top: 1em;
	border-top: 1px solid #e2e8f0;
	font-size: 14px;
	line-height: 1.6;
}

.works-single-pages .page-numbers {
	display: inline-block;
	margin-right: 0.5em;
}

@media screen and (max-width: 640px) {
	.works-single-body {
		padding: 0 14px 36px;
	}

	.works-single-entry {
		padding-top: 24px;
		font-size: 15px;
	}

	.works-single-entry h2 {
		font-size: 1.35rem;
	}
}