/* reset */
*,
::before,
::after {
	box-sizing: border-box;
}

:root {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	overflow-wrap: anywhere;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

img,
video {
	max-inline-size: 100%;
	block-size: auto;
}

a {
	color: inherit;
}

ul,
ol {
	padding-inline-start: 1.5em;
}

/* base */
html {
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	min-height: 100dvh;
	background: linear-gradient(183deg, #3DB4CD 15.97%, #00A5E1 25.13%, #009FE8 84.03%);
	color: #212121;
	font-family: "Noto Sans JP", "YuGothic", "Yu Gothic", sans-serif;
	font-size: 16px;
	line-height: 1.8;
	position: relative;
	overflow-x: hidden;
}

strong {
	font-weight: 600;
}

/* ========================================
   Layout
   ======================================== */

/* ========================================
   Utility
   ======================================== */

/* u-wbr: wbrタグによる折り返し制御 */
.u-wbr {
	word-break: keep-all;
	overflow-wrap: anywhere;
}

/* ========================================
   Component
   ======================================== */

/* c-catch */
.c-catch {
	display: inline;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
	font-size: 36px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #000;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-color: #fff;
	text-decoration-thickness: 20px;
	text-underline-offset: -6px;
	text-decoration-skip-ink: none;
}

@media (min-width: 961px) {
	.c-catch + .c-catch {
		margin-left: -1px;
	}
}

/* c-heading */
.c-heading {
	display: inline;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #000;
	text-align: center;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-color: rgba(0, 160, 232, 0.7);
	text-decoration-thickness: 16px;
	text-underline-offset: -6px;
	text-decoration-skip-ink: none;
}

/* c-badge */
.c-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: linear-gradient(to bottom, #fff 67.788%, #cce3eb);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
	color: #000;
	text-align: center;
	letter-spacing: 0.5px;
}

.c-badge__label {
	font-size: 24px;
	line-height: 1.5;
}

.c-badge__value {
	font-size: 30px;
	line-height: 1.3;
}

.c-badge__value--large {
	font-size: 40px;
}

/* c-label-deco */
.c-label-deco {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #212121;
	white-space: nowrap;
}

.c-label-deco::before {
	content: "＼";
}

.c-label-deco::after {
	content: "／";
}

/* c-btn */
.c-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border-radius: 40px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: opacity 0.3s, transform 0.3s;
}

@media (any-hover: hover) {
	.c-btn:hover {
		opacity: 0.85;
		transform: translateY(-2px);
	}
}

.c-btn--secondary {
	padding: 12px 40px;
	background: #b9e7fc;
	color: #212121;
}

/* TODO: 当日配信開始時に削除する */
.c-btn-disabled-wrapper {
	position: relative;
	display: inline-flex;
	border-radius: calc(infinity * 1px);
	overflow: hidden;
}

.c-btn-disabled-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.50);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	pointer-events: auto;
	cursor: default;
}

.c-btn-disabled-wrapper .c-btn {
	pointer-events: none;
	opacity: 0.20;
}

.c-btn--primary {
	gap: 16px;
	padding: 12px 16px 12px 24px;
	background: #00a5e1;
	border: 6px solid #b9e7fc;
	border-radius: calc(infinity * 1px);
	color: #fff;
}

.c-btn__badge {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 8px;
	background: #fff125;
	border-radius: 40px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #000;
}

.c-btn__text {
	font-size: 22px;
	line-height: 1.3;
	letter-spacing: 0.5px;
}

.c-btn__icon-play {
	width: 30px;
	height: auto;
}

.c-btn__arrow {
	display: flex;
	align-items: center;
	padding: 8px 13px;
	flex-shrink: 0;
}

.c-btn__arrow img {
	width: 12px;
	height: 21px;
}

/* ========================================
   Project
   ======================================== */

/* p-fv */
.p-fv {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-fv__hero {
	position: relative;
	width: 100%;
}

.p-fv__hero-img {
	display: block;
	width: 100%;
	height: auto;
}

.p-fv__content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: -23px;
}

.p-fv__content-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 100%;
}

.p-fv__speech {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.p-fv__speech-text {
	width: 800px;
	height: auto;
}

.p-fv__speech-arrow {
	width: 41px;
	height: auto;
}

.p-fv__title {
	width: 100%;
	padding: 0 100px;
}

.p-fv__title img {
	display: block;
	width: 100%;
	max-width: 657px;
	height: auto;
}

.p-fv__catch {
	display: flex;
	align-items: flex-start;
}

.p-fv__badges {
	display: flex;
	gap: 40px;
	justify-content: center;
	padding-top: 40px;
	padding-bottom: 80px;
	width: 100%;
}

/* p-info */
.p-info {
	position: relative;
}

.p-info__illust {
	position: absolute;
	top: -36px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	display: flex;
	align-items: flex-end;
}

.p-info__illust-pencil {
	width: 58px;
	height: auto;
	transform: rotate(-28.62deg);
}

.p-info__illust-bulb {
	width: 91px;
	height: auto;
	margin-left: 20px;
}

.p-info__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	padding-top: 100px;
	padding-bottom: 40px;
	background: #fff;
	border-radius: 700px 700px 0 0;
}

.p-info__block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.p-info__block--place {
	padding-bottom: 80px;
	background: #fff;
	margin-top: -1px;
}

.p-info__place-detail {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.p-info__text-bold {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.4;
	letter-spacing: 0.5px;
	color: #000;
	text-align: center;
}

.p-info__datetime {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.p-info__datetime-date {
	display: flex;
	align-items: flex-end;
	gap: 8px;
}

.p-info__datetime-year {
	padding-bottom: 12px;
}

.p-info__datetime-year img {
	display: block;
	width: 81px;
	height: auto;
}

.p-info__datetime-date > img {
	display: block;
	width: 201px;
	height: auto;
}

.p-info__datetime-time {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-info__datetime-time img {
	display: block;
}

.p-info__datetime-time img:first-child {
	width: 187px;
	height: auto;
}

.p-info__datetime-note {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #000;
	text-align: center;
}

.p-info__address {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.7;
	letter-spacing: 0.5px;
	color: #000;
	text-align: center;
}

.p-info__maps-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.p-info__maps {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.p-info__map-photo {
	width: 245px;
	height: 320px;
	object-fit: cover;
}

.p-info__map-image {
	width: 349px;
	height: 320px;
	object-fit: cover;
}

.p-info__note {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.5px;
	color: #000;
	text-align: center;
}

/* p-cta */
.p-cta {
	background: #fff;
	border-top: 12px solid #b9e7fc;
	border-bottom: 12px solid #b9e7fc;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	padding: 80px 0 40px;
}

.p-cta__block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 40px 0;
}

.p-cta__block--pattern {
	padding: 0 12px 12px 0;
	background: url("../img/cta-pattern.png") top left / 92px 92px repeat;
}

.p-cta__block-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 0 160px 40px;
	background: #fff;
}

.p-cta__block-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.p-cta__label {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.5px;
	color: #212121;
	text-align: center;
	margin-bottom: 4px;
}

.p-cta__note {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.5px;
	color: #000;
	text-align: center;
}

/* p-feature */
.p-feature {
	padding: 40px 0;
}

.p-feature__pattern-top {
	height: 24px;
	background: #00a0e8 url("../img/pattern-blue.png") top left / 92px 92.5px repeat;
}

.p-feature__body {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 120px 0 80px;
	background: #fff;
}

.p-feature__illust {
	position: absolute;
	top: -36px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	display: flex;
	align-items: flex-end;
}

.p-feature__illust-pencil {
	width: 58px;
	height: auto;
	transform: rotate(-28.62deg);
}

.p-feature__illust-bulb {
	width: 91px;
	height: auto;
	margin-left: 20px;
}

.p-feature__cards {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	width: 100%;
	padding: 72px 240px 0;
}

/* c-feature-card */
.c-feature-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 8px;
	width: 100%;
	background-size: 92px 92.5px;
	background-position: top left;
}

.c-feature-card--green {
	background-image: url("../img/pattern-green.png");
}

.c-feature-card--blue {
	background-image: url("../img/pattern-blue-alt.png");
}

.c-feature-card__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 100%;
	background: #fff;
}

.c-feature-card__head {
	display: flex;
	align-items: center;
	gap: 16px;
}

.c-feature-card__number {
	font-family: "Barlow", sans-serif;
	font-weight: 600;
	font-size: 34px;
	line-height: 1;
	-webkit-text-stroke: 2px #231815;
	paint-order: stroke fill;
}

.c-feature-card__number--green {
	color: #009844;
}

.c-feature-card__number--blue {
	color: #009fe8;
}

.c-feature-card__title {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #212121;
}

.c-feature-card__text {
	padding: 0 80px 24px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.7;
	letter-spacing: 0.5px;
	color: #212121;
	text-align: center;
}

/* p-area */
.p-area__pattern-top {
	height: 24px;
	background: #00a0e8 url("../img/pattern-blue.png") top left / 92px 92.5px repeat;
}

.p-area__body {
	background: #fff;
	padding: 80px 0;
}

.p-area__section {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-area__meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding-inline: 20px;
	margin-top: 32px;
}

.p-area__time {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #212121;
}

.p-area__desc {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.4;
	letter-spacing: 0.5px;
	color: #212121;
	text-align: center;
}

.p-area__cards {
	display: flex;
	gap: 40px;
	justify-content: center;
	max-width: 1120px;
	margin: 56px auto 0;
}

/* c-area-heading */
.c-area-heading {
	display: inline-flex;
	align-items: center;
	gap: 24px;
	padding: 12px 32px;
	border: 3px solid #000;
	border-radius: 80px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
	font-size: 28px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #000;
}

.c-area-heading__title {
	flex: 1;
}

.c-area-heading__divider {
	display: block;
	width: 2px;
	height: 30px;
	background: #000;
}

/* c-school-card */
.c-school-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	flex: 1;
}

.c-school-card__img {
	width: 100%;
	aspect-ratio: 1920 / 1080;
	overflow: hidden;
}

.c-school-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.c-school-card__logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 50px;
}

.c-school-card__logo img {
	height: 40px;
	width: auto;
}

.c-school-card__text {
	font-weight: 500;
	font-size: 17px;
	line-height: 1.5;
	letter-spacing: 0.3px;
	color: #000;
	text-align: left;
}

/* p-seminar */
.p-seminar__list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	max-width: 1120px;
	margin: 56px auto 0;
}

/* c-seminar */
.c-seminar {
	display: flex;
	gap: 40px;
	align-items: flex-start;
	justify-content: center;
	background: #f1f1f1;
	padding: 32px 40px;
}

.c-seminar__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	border-left: 1px solid #000;
	padding-left: 24px;
	padding-right: 80px;
	padding-bottom: 24px;
}

.c-seminar__time {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #212121;
}

.c-seminar__content {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.c-seminar__titles {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.c-seminar__subtitle {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #212121;
}

.c-seminar__title {
	display: inline;
	width: fit-content;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #212121;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-thickness: 8px;
	text-underline-offset: -4px;
	text-decoration-skip-ink: none;
}

.c-seminar__title--blue {
	text-decoration-color: rgba(0, 160, 232, 0.7);
}

.c-seminar__title--green {
	text-decoration-color: rgba(0, 153, 68, 0.6);
}

.c-seminar__desc {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 17px;
	line-height: 1.7;
	letter-spacing: 0.5px;
	color: #212121;
}

.c-seminar__speaker {
	margin-top: 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.c-seminar__speaker-head {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.c-seminar__speaker-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 2px 12px 2px;
	border: 1.5px solid #000;
	border-radius: 40px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	color: #212121;
	flex-shrink: 0;
}

.c-seminar__speaker-name {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.5px;
	color: #212121;
}

.c-seminar__speaker-bio {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.5px;
	color: #212121;
}

.c-seminar__photo {
	flex-shrink: 0;
	width: 243px;
	height: 271px;
	overflow: hidden;
}

.c-seminar__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

/* p-consultation */
.p-consultation {
	display: flex;
	gap: 56px;
	align-items: flex-start;
	justify-content: center;
	padding: 40px 160px 0;
	margin-top: 16px;
	flex-wrap: wrap;
}

.p-consultation__examples {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 24px;
}

.p-consultation__examples-heading {
	display: inline-block;
	padding-bottom: 4px;
	border-bottom: 2px solid #009fe8;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	color: #009fe8;
	width: fit-content;
}

.p-consultation__examples-list {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.6;
	letter-spacing: 0.5px;
	color: #212121;
}

.p-consultation__photo {
	flex-shrink: 0;
	width: 472px;
	height: auto;
	aspect-ratio: 472 / 271;
	position: relative;
}

.p-consultation__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
}

/* l-footer */
.l-footer {
	background: #00a0e8;
	padding: 0 80px 56px;
}

.l-footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 40px;
	max-width: 1280px;
	margin: 0 auto;
}

/* p-footer */
.p-footer__copyright {
	font-weight: 500;
	font-size: 12px;
	line-height: 1.33;
	letter-spacing: 0.4px;
	color: #fff;
	white-space: nowrap;
}

.p-footer__links {
	display: flex;
	align-items: flex-end;
	gap: 24px;
}

.p-footer__company {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding-right: 16px;
}

.p-footer__label {
	font-weight: 500;
	font-size: 11px;
	line-height: 1.45;
	letter-spacing: 0.5px;
	color: #fff;
	white-space: nowrap;
}

.p-footer__logo {
	display: block;
	width: 180px;
	height: auto;
	transition: opacity 0.3s;
}

.p-footer__link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 500;
	font-size: 11px;
	line-height: 1.45;
	letter-spacing: 0.5px;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.3s;
}

.p-footer__link::after {
	content: "";
	display: inline-block;
	width: 9px;
	height: 13px;
	flex-shrink: 0;
	background: url("../img/icon-chevron-right.svg") no-repeat center / contain;
}

@media (any-hover: hover) {
	.p-footer__link:hover {
		opacity: 0.7;
	}

	.p-footer__company a:hover .p-footer__logo {
		opacity: 0.7;
	}
}

/* l-bottom-nav */
.l-bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99;
	pointer-events: none;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.l-bottom-nav.is-visible {
	transform: translateY(0);
}

.l-bottom-nav__inner {
	display: flex;
	gap: 16px;
	justify-content: center;
	pointer-events: auto;
}

/* c-bottom-nav-btn */
.c-bottom-nav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	width: 240px;
	padding: 12px 16px 12px 32px;
	background: #fff;
	border: 3px solid #000;
	border-bottom: none;
	border-radius: 30px 30px 0 0;
	box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
	color: #000;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.3s;
}

@media (any-hover: hover) {
	.c-bottom-nav-btn:hover {
		background: #f0f0f0;
	}
}

.c-bottom-nav-btn__text {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.c-bottom-nav-btn__arrow {
	width: 12px;
	height: 21px;
	transform: rotate(90deg);
	flex-shrink: 0;
}

/* ========================================
   Responsive (down to ~740px)
   ======================================== */

@media (max-width: 1200px) {
	/* p-fv */
	.p-fv__speech-text {
		width: min(800px, 90vw);
	}

	.p-fv__title {
		padding: 8px 40px 0;
	}

	.p-fv__badges {
		gap: 24px;
	}

	.c-badge {
		width: 150px;
		height: 150px;
	}

	.c-badge__label {
		font-size: 20px;
	}

	.c-badge__value {
		font-size: 26px;
	}

	.c-badge__value--large {
		font-size: 34px;
	}

	/* p-info */
	.p-info__inner {
		border-radius: 500px 500px 0 0;
		padding-top: 80px;
	}

	.p-info__maps {
		padding: 0 24px;
	}

	.p-info__map-photo {
		width: 200px;
		height: 260px;
	}

	.p-info__map-image {
		width: 290px;
		height: 260px;
	}

	.p-area__body {
		padding-inline: 20px;
	}

	/* p-cta */
	.p-cta__block-inner {
		padding: 40px 60px;
	}

	.c-btn__text {
		font-size: 24px;
	}

	/* p-feature */
	.p-feature__cards {
		padding: 32px 80px 0;
	}

	.c-feature-card__text {
		padding: 0 40px 24px;
	}

	/* p-area */
	.p-area__cards {
		max-width: 100%;
		padding: 0 40px;
	}

	/* p-seminar */
	.p-seminar__list {
		max-width: 100%;
	}

	.c-seminar__body {
		padding-right: 40px;
	}

	/* p-consultation */
	.p-consultation {
		padding: 40px 40px 0;
		gap: 32px;
	}

	.p-consultation__photo {
		width: 360px;
		height: auto;
	}

	/* l-footer */
	.l-footer {
		padding: 0 40px 40px;
	}

	/* l-bottom-nav */
	.c-bottom-nav-btn {
		width: 200px;
		gap: 24px;
		padding: 10px 12px 10px 24px;
	}

	.c-bottom-nav-btn__text {
		font-size: 18px;
	}
}

@media (max-width: 960px) {
	/* p-fv */
	.p-fv__catch {
		flex-direction: column;
		align-items: center;
	}

	.c-catch {
		font-size: 28px;
	}

	.p-fv__badges {
		gap: 16px;
	}

	.c-badge {
		width: 130px;
		height: 130px;
	}

	.c-badge__label {
		font-size: 16px;
	}

	.c-badge__value {
		font-size: 22px;
	}

	.c-badge__value--large {
		font-size: 28px;
	}

	/* p-info */
	.p-info__inner {
		border-radius: 350px 350px 0 0;
		padding-top: 60px;
	}

	/* p-feature */
	.p-feature__cards {
		padding: 32px 40px 0;
	}

	.c-feature-card__text {
		padding: 0 24px 24px;
	}

	/* p-area cards */
	.p-area__cards {
		padding: 0 24px;
		gap: 24px;
	}

	/* p-seminar */
	.p-seminar__list {
		padding: 0;
	}

	.c-seminar__body {
		padding-left: 16px;
		padding-right: 16px;
		padding-bottom: 0;
	}

	.c-seminar__photo {
		width: 180px;
		height: 200px;
	}

	/* p-consultation */
	.p-consultation {
		padding: 40px 24px 0;
	}

	.p-consultation__photo {
		width: 280px;
	}

	/* c-btn */
	.c-btn__text {
		font-size: 20px;
	}

	/* l-footer */
	.l-footer {
		padding: 0 24px 32px;
	}

	.l-footer__inner {
		flex-direction: column;
		gap: 16px;
	}

	/* l-bottom-nav */
	.c-bottom-nav-btn {
		width: 170px;
		gap: 16px;
		padding: 8px 10px 8px 20px;
	}

	.c-bottom-nav-btn__text {
		font-size: 15px;
	}

	.c-bottom-nav-btn__arrow {
		width: 10px;
		height: 17px;
	}
}

@media (max-width: 640px) {
	body {
		background: linear-gradient(183deg, #3DB4CD 15.97%, #00A5E1 25.13%, #009FE8 84.03%);
	}

	/* 共通：左右20px余白 */
	.p-fv__content,
	.p-info__inner,
	.p-info__block--place,
	.p-cta,
	.p-feature__body,
	.p-area__body {
		padding-left: 20px;
		padding-right: 20px;
	}

	/* p-fv */
	.p-fv__content {
		margin-top: -12px;
	}

	.p-fv__content-top {
		padding: 0;
	}

	.p-fv__speech-text {
		width: 100%;
	}

	.p-fv__speech-arrow {
		width: 20px;
		height: 14px;
	}

	.p-fv__title {
		padding: 0;
	}

	.p-fv__title img {
		width: 100%;
		max-width: none;
	}

	.p-fv__catch {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
		padding: 0;
	}

	.c-catch {
		font-size: 24px;
		text-decoration-thickness: 12px;
		text-underline-offset: -4px;
	}

	.p-fv__badges {
		flex-wrap: wrap;
		gap: 0;
		padding-top: 24px;
		padding-bottom: 60px;
		padding-right: 8px;
		justify-content: center;
	}

	.c-badge {
		width: 120px;
		height: 120px;
		margin-right: -8px;
	}

	.c-badge__label {
		font-size: 15px;
	}

	.c-badge__value {
		font-size: 20px;
	}

	.c-badge__value--large {
		font-size: 32px;
	}

	/* p-info */
	.p-info__inner {
		border-radius: 300px 300px 0 0;
		padding-top: 60px;
		padding-bottom: 32px;
		gap: 32px;
	}

	.p-info__block--place {
		padding-bottom: 60px;
	}

	.p-info__illust {
		top: -36px;
		left: 50%;
		transform: translateX(-50%);
	}

	.p-info__datetime-year img {
		width: 64px;
	}

	.p-info__datetime-date > img {
		width: 160px;
	}

	.p-info__datetime-time img:first-child {
		width: 160px;
	}

	.p-info__maps {
		padding-inline: 0;
		flex-direction: row;
		gap: 8px;
	}

	.p-info__map-photo {
		width: calc(40% - 4px);
		height: auto;
		aspect-ratio: 150 / 196;
	}

	.p-info__map-image {
		width: calc(60% - 4px);
		height: auto;
		aspect-ratio: 200 / 196;
	}

	/* p-cta */
	.p-cta {
		padding: 60px 0 12px;
		gap: 40px;
	}

	.p-cta__block--pattern {
		padding: 40px 0 12px 0;
		width: 100%;
	}

	.p-cta__block-inner {
		width: 100%;
		padding: 0 10px 40px;
	}

	.p-cta__note {
		padding-inline: 20px;
	}

	.p-cta__block {
		padding: 0 0 12px;
	}

	.c-btn__text {
		font-size: 22px;
		white-space: normal;
		text-align: center;
	}

	.c-btn--primary {
		border-radius: 80px;
	}

	.c-label-deco {
		font-size: 19px;
	}

	/* p-feature */
	.p-feature__pattern-top {
		height: 16px;
	}

	.p-feature__body {
		padding: 80px 20px 60px;
	}

	.p-feature__cards {
		padding: 48px 0 0;
	}

	.c-feature-card__head {
		padding: 0;
	}

	.c-feature-card__text {
		padding: 0 0 16px;
		font-size: 17px;
	}

	.c-heading {
		font-size: 28px;
		line-height: 1.4;
		text-align: center;
		white-space: normal;
		text-decoration-thickness: 12px;
    text-underline-offset: -4px;
	}

	.p-feature {
		padding-block: 24px;
	}

	.p-feature__illust {
		top: -36px;
	}

	/* p-area */
	.p-area__body {
		padding-block: 60px;
	}

	.p-area__section {
	}

	.p-area__pattern-top {
		height: 16px;
	}

	.c-area-heading {
		width: 100%;
		font-size: 22px;
		padding: 12px 32px;
		gap: 24px;
	}

	.p-area__cards {
		flex-direction: column;
		padding: 0;
		gap: 40px;
	}

	.c-area-heading__floor {
		width: fit-content;
		flex-shrink: 0;
	}

	.c-area-heading__title {
		white-space: normal;
		text-align: center;
		line-height: 1.4;
	}

	.p-area__time {
		font-size: 22px;
	}

	.p-area__desc {
		font-size: 17px;
		line-height: 1.6;
	}

	.p-info__text-bold {
		font-size: 22px;
	}

	.p-area__meta {
		gap: 16px;
		padding-inline: 0;
		margin-top: 32px;
	}

	.p-area__cards {
		margin-top: 40px;
	}

	.c-school-card {
		text-align: center;
	}

	.c-school-card__logo {
		justify-content: center;
	}

	.c-school-card__logo img {
		height: 50px;
	}

	/* p-seminar */
	.p-seminar__list {
		padding: 0;
		gap: 24px;
	}

	.c-seminar {
		flex-direction: column;
		padding: 24px 16px;
		gap: 24px;
	}

	.c-seminar__body {
		padding-right: 0;
	}

	.c-seminar__time {
		font-size: 24px;
	}

	.c-seminar__titles {
		gap: 10px;
	}

	.c-seminar__subtitle {
		font-size: 17px;
		line-height: 1.4;
	}

	.c-seminar__title {
		font-size: 22px;
		line-height: 1.4;
		text-underline-offset: -2px;
	}

	.c-seminar__speaker {
		margin-top: 8px;
	}

	.c-seminar__desc {
		font-size: 17px;
	}

	.c-seminar__photo {
		display: block;
		margin-inline: auto;
		width: 243px;
		height: auto;
		aspect-ratio: 242 / 271;
	}

	.c-seminar__content {
		margin-top: 16px;
	}

	/* p-consultation */
	.p-consultation {
		flex-direction: column;
		align-items: center;
		padding: 24px 0 0;
		gap: 24px;
		margin-top: 16px;
	}

	.p-consultation__examples {
		padding-top: 8px;
		align-items: center;
	}

	.p-consultation__photo {
		width: 100%;
		height: auto;
		order: 1;
	}

	.p-consultation__examples-heading {
		font-size: 24px;
	}

	.p-consultation__examples-list {
		font-size: 16px;
	}

	/* l-footer */
	.l-footer {
		padding: 0 20px 24px;
	}

	.l-footer__inner {
		padding-top: 16px;
		flex-direction: column;
		gap: 24px;
	}

	.p-footer__links {
		flex-direction: row;
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 8px;
	}

	.p-footer__company {
		order: 1;
	}

	/* l-bottom-nav */
	.l-bottom-nav__inner {
		gap: 0;
		padding: 0;
	}

	.c-bottom-nav-btn {
		flex: 1;
		width: auto;
		flex-direction: column;
		gap: 4px;
		padding: 10px 8px 8px;
		border-radius: 30px 30px 0 0;
		margin-left: -6px;
	}

	.c-bottom-nav-btn:first-child {
		margin-left: 0;
	}

	.c-bottom-nav-btn__text {
		font-size: 16px;
		text-align: center;
		min-height: 40px;
		display: grid;
		place-items: center;
	}

	.c-bottom-nav-btn__arrow {
		flex-shrink: 0;
		width: 6px;
		height: auto;
		transform: rotate(90deg);
	}
}

/* form */
.smf-progress-tracker {
	justify-content: center;
	margin-top: 60px;
	margin-bottom: 25px;
}

.smf-progress-tracker__item {
	flex-grow: 0;
	flex-shrink: 1;
	width: auto;
	flex-direction: row;
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 55px;
	padding: 0 0 10px;
	font-size: 22px;
	border-bottom: #555b71 solid 1px;
}

.smf-progress-tracker__item[aria-current="false"] {
	opacity: 0.6;
}

.smf-progress-tracker__item::after {
	border: 0;
	background: url(/fair/img/icon_arrowc.svg) no-repeat center center;
	background-size: contain;
	width: 20px;
	height: 20px;
	left: initial;
	right: -65px;
	inset-block: 0;
	margin-block: auto;
}

.smf-progress-tracker__item::before {
	display: none;
}

.smf-progress-tracker__item[aria-current="true"] .smf-progress-tracker__item__number {
	background-color: transparent;
	font-weight: 400;
	color: #000;
}

.smf-progress-tracker__item__number {
	display: flex;
	align-items: center;
	line-height: 1.06509;
	background-color: transparent;
	font-weight: normal;
	color: #000;
	width: auto;
	height: auto;
	font-family: "Barlow", sans-serif;
	font-size: 16.9px;
	letter-spacing: 0.4px;
	overflow: visible;
}

.smf-progress-tracker__item__number::before {
	content: "Step 0";
	display: inline;
	font-family: "Barlow", sans-serif;
	color: #000;
	text-align: center;
	font-size: 16.9px;
	font-weight: 400;
	line-height: 1.06509;
	letter-spacing: 0.4px;
}

.smf-progress-tracker__item__text {
	margin: 0 !important;
	color: #000;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.13636;
}

.smf-item__label__text {
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%;
	letter-spacing: 0.9px;
}

.smf-item__label__text em {
	color: #C1212B;
	font-family: "Noto Sans JP";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 22.4px */
	letter-spacing: 0.8px;
	position: relative;
	padding-left: 5px;
	margin-right: 10px;
}

.smf-item__label__text em::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 4px;
	display: inline-block;
	background-color: #c1212b;
}

.smf-item__label__text strong {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	padding-left: 5px;
	margin-right: 10px;
}

.smf-form input::placeholder,
.smf-form textarea::placeholder {
	color: #909090;
}

.smf-form .smf-item__col--label {
	margin-bottom: 16px;
}

.smf-form .smf-select-control {
	width: 100%;
}

.smf-form .smf-select-control::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	margin-top: -1px;
	width: 0;
	height: 0;
	border-bottom: 5px solid transparent;
	border-left: 7px solid #131313;
	border-top: 5px solid transparent;
	transform: rotate(90deg);
	z-index: 2;
}

.smf-form .smf-select-control .smf-select-control__control {
	color: #909090;
	width: 100%;
	appearance: none;
	border: none;
	background: #fff;
	padding: 21px 52px 22px 22px;
	font-size: 15px;
	line-height: 2;
}

.smf-form .smf-select-control .smf-select-control__control.has-value {
	color: #131313;
}

.smf-form .smf-select-control .smf-select-control__control option {
	color: #131313;
}

.smf-form .smf-text-control .smf-text-control__control {
	width: 100%;
	border: none;
	background: #fff;
	padding: 21px 22px 22px;
	font-size: 15px;
	line-height: 2;
}

.smf-form .smf-item + .smf-item {
	margin-top: 56px;
}

.smf-form .smf-item__controls p {
	margin: 30px 0 15px;
}

.smf-form .smf-item__description {
	margin-top: 10px;
	font-size: 15px;
	color: #131313;
}

.smf-form .smf-item__description a {
	color: #1136e6;
	text-decoration: underline;
}

.smf-form .smf-radio-button-control {
	align-items: center;
	gap: 8px;
}

.smf-form .smf-radio-button-control__control {
	margin-top: 0;
	border-color: #1d1e22;
}

.smf-form .smf-checkbox-control {
	color: #131313;
	align-items: center;
	gap: 8px;
}

.smf-form .smf-checkbox-control__control {
	border-color: #1d1e22;
	margin: 0;
	border-radius: 0;
}

.smf-form .p-consensus {
	margin-top: 30px;
}

.smf-form .custom-error-message {
	color: #cc3033;
	line-height: 28px;
	margin-top: var(--_margin-2);
}

.smf-action {
	background-color: #f0f0f0;
	text-align: center;
	padding: 0 0 60px;
}

.smf-action .smf-button-control {
	display: block;
	width: 340px;
	max-width: calc(100% - 40px);
	display: grid;
	margin-inline: auto;
}

.smf-action .smf-button-control__control {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	color: #fff;
	padding: 24px 20px;
	border: none;
	outline: none;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 2.25;
	letter-spacing: 0.7px;
	cursor: pointer;
	border-radius: 3px;
	background: #00A0E9;
}

.smf-action .smf-button-control__control:hover {
	border: none;
	opacity: 0.8;
	transition: opacity 0.3s;
}

.smf-action .smf-button-control__control[disabled] {
	opacity: 0.3;
	color: #fff;
	cursor: not-allowed;
}

.smf-action .smf-submit-guide {
	color: #cc3033;
	font-size: 14px;
	margin-top: 16px;
}

.smf-action .smf-button-control__control::after {
	content: "";
	display: inline-block;
	position: relative;
	width: 7px;
	height: 10px;
	background: #fff;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	z-index: 2;
}

.smf-complete-content {
	text-align: left;
}

.smf-complete-content .wp-block-heading {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 40px;
	text-align: center;
}

.smf-complete-content p {
	font-size: 15px;
	margin: 20px 0 0;
}

/* form responsive */
@media (max-width: 999px) {
	.smf-progress-tracker__item {
		margin: 0 30px;
		font-size: 20px;
		flex-direction: column;
	}

	.smf-progress-tracker__item::after {
		width: 20px;
		height: 20px;
		right: -40px;
	}

	.smf-item__label__text {
		display: flex;
	}

	.smf-item__label__text em {
		flex-shrink: 0;
		margin-right: 20px;
	}

	.smf-item__label__text strong {
		flex-shrink: 0;
		margin-right: 20px;
	}
}

.p-fair-form {
	border-top: 24px solid #009FE8;
	background: #fff;
	padding-block: 80px;
}

.p-fair-form__container {
	width: 920px;
	max-width: 100%;
	margin-inline: auto;
	padding-inline: 20px;
}

.p-form-inner {
	background-color: #f0f0f0;
	padding: 60px 80px 20px;
}

@media (max-width: 999px) {
	.p-form-inner {
		padding: 60px 20px 10px;
	}
}

.p-fair-form__title {
	color: #252B2A;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 28px;
	font-weight: 900;
	line-height: 1.4;
	letter-spacing: 0.5px;
}

.smf-form :where(.wp-block-columns) {
	margin-bottom: 0;
}

.smf-form :where(.wp-block-columns.is-layout-flex) {
	gap: 16px;
}

@media (max-width: 640px) {
	.smf-form :where(.wp-block-columns.is-layout-flex) {
		gap: 8px;
	}	

	.smf-complete-content .wp-block-heading {
		margin-bottom: 24px;
	}
}

.smf-form .smf-radio-button-control__control:checked {
	background-color: #00A5E1;
	border-color: #1d1e22;
}

.smf-form .smf-checkbox-control__control:checked {
	background-color: #00A5E1;
	border-color: #1d1e22;
}