/* ============================================================
   CSS Reset & Variables
============================================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

Noto Sans CJK JP Regular {
	font-family: "noto-sans-cjk-jp", sans-serif;
	font-weight: 400;
	font-style: normal;
}

Noto Sans CJK JP Bold {
	font-family: "noto-sans-cjk-jp", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.hina-mincho {
	font-family: hina-mincho, sans-serif;
	font-weight: 400;
	font-style: normal;
}

.arsenica-variable {
	font-family: "arsenica-variable", sans-serif;
	font-variation-settings: "opsz" 100, "wght" 400;
}

:root {
	/* Colors */
	--color-main: #111111;
	--color-sub: #ffffff;
	--color-accent: #f4bbb5;
	--color-bg: #ffffff;
	--color-muted: #111;

	/* Typography */
	--font-mincho: 'hina-mincho', sans-serif;
	--font-sans: 'noto-sans-cjk-jp', sans-serif;
	--font-en: "arsenica-variable", sans-serif;

	/* Font sizes (rem base = 10px → 1rem = 10px) */
	--fs-hero: clamp(3.6rem, 7vw, 7.2rem);
	--fs-h2-en: clamp(3.2rem, 5vw, 6.0rem);
	--fs-h3: clamp(2.0rem, 3vw, 3.2rem);
	--fs-body: 1.6rem;
	--fs-small: 1.2rem;
	--fs-label: 1.6rem;

	/* Spacing */
	--section-pt: 100px;
	--section-pb: 80px;
	--container-max: 1200px;
	--container-px-pc: 30px;
	--container-px-sp: 10px;

	/* Misc */
	--radius-sm: 4px;
	--radius-md: 8px;
	--transition: 0.25s ease;
	--color-border: #ccc;
}

html {
	font-size: 62.5%;
	/* 1rem = 10px */
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-sans);
	font-size: var(--fs-body);
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.02em;
	color: var(--color-main);
	background: var(--color-bg);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

ul,
ol {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

address {
	font-style: normal;
}

/* ============================================================
   Utility
============================================================ */
.container {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-px-pc);
}

/* 汎用セクション eyebrow（英小文字ラベル） */
.section-eyebrow {
	font-family: var(--font-sans);
	font-size: var(--fs-label);
	letter-spacing: 0.12em;
	color: var(--color-muted);
	margin-bottom: 0.4em;
}

/* 英文大見出し */
.section-heading-en {
	font-family: "arsenica-variable", sans-serif;
	font-variation-settings: "opsz" 100, "wght" 300;
	font-size: 13.8rem;
	font-weight: 300;
	line-height: 1.1;
	margin-bottom: 0.3em;
}

.section-heading-en.report {
	font-size: 9.8rem;
}

.section-heading-en span {
	font-size: 70%;
}

/* 和文副見出し */
.section-heading-ja {
	font-family: var(--font-mincho);
	font-size: 5rem;
	font-weight: 400;
	margin-bottom: 2em;
}

/* ============================================================
   Buttons
============================================================ */
.btn-more {
	display: inline-block;
	width: 200px;
	background-image: url(../images/btn_bg_200.png);
	height: 61px;
	background-size: 100%;
	font-size: 1.6rem;
	font-family: var(--font-en);
	font-variation-settings: "opsz" 100, "wght" 400;
	font-weight: 400;
	color: #111;
	text-align: center;
	line-height: 58px;
}

.btn-more_sp {
	display: none;
}

.btn-accent {
	display: inline-block;
	width: 200px;
	background-image: url(../images/btn_bg_200.png);
	height: 61px;
	background-size: 100%;
	font-size: 1.6rem;
	font-family: var(--font-sans);
	color: #111;
	text-align: center;
	line-height: 58px;
}

.btn-accent:hover {
	opacity: 0.8;
}

.btn-line {
	display: flex;
	align-items: center;
	width: 500px;
	height: 86px;
	background-image: url(../images/line_btn_bg.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	gap: 10px;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
}

.contact_btn {
	display: flex;
	align-items: center;
	max-width: 400px;
	height: 60px;
	border: 1px solid #f38181;
	background-color: #f38181;
	gap: 10px;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	font-size: 1.6rem;
	border-radius: 9999px;
}

.contact_btn a {
	color: #fff !important;
}

.btn-line img {
	width: 40px;
}

.btn-line p {
	font-size: 1.8rem;
}

.btn-line:hover {
	opacity: 0.85;
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background-image: url(../images/h_bg02.png);
	background-position: top left;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	height: 100px;
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 2.4rem;
	height: 80px;
	padding: 0 3em;
}

.site-header__catch {
	width: 245px;
}

.site-header__nav {
	flex: 1;
}

.nav-list {
	display: flex;
	gap: 3rem;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.nav-list a {
	font-size: 1.4rem;
	letter-spacing: 0.04em;
	text-align: center;
	color: #fff;
}

.nav-list.blk a {
	color: #333;
}

.nav-list a:hover {
	opacity: 0.6;
}

.header-line-btn {
	display: flex;
	align-items: center;
	width: 350px;
	height: 60px;
	background-image: url(../images/line_btn_bg.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	gap: 10px;
	justify-content: center;
}

.header-line-btn img {
	width: 30px;
}

.header-line-btn p {
	font-size: 1.6rem;
}


/* ============================================================
   HERO
============================================================ */
.hero {
	position: relative;
	min-height: 100svh;
	overflow: hidden;
	display: flex;
	align-items: center;
}

/* 背景 */
.hero::before,
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	/* ← これ重要 */

	background-size: cover;
	background-repeat: no-repeat;
	background-position: right;

	will-change: opacity, transform;
}

.hero::before {
	background-image: url(../images/main.webp);
	animation:
		heroFade01 16s ease-in-out infinite,
		heroZoom 16s ease-in-out infinite;
}

.hero::after {
	background-image: url(../images/main02.webp);
	animation:
		heroFade02 16s ease-in-out infinite,
		heroZoom 16s ease-in-out infinite;
}


/* 中身を前面へ */
.hero__media,
.hero__content,
.hero__cities {
	position: relative;
	z-index: 1;
}

/* フェード */
@keyframes heroFade01 {

	0%,
	40% {
		opacity: 1;
	}

	50%,
	90% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes heroFade02 {

	0%,
	40% {
		opacity: 0;
	}

	50%,
	90% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

/* ゆっくりズーム */

@keyframes heroZoom {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.04);
	}

	100% {
		transform: scale(1);
	}
}

.hero__photo-placeholder {
	width: 100%;
	height: 100%;
}

.hero__content {
	display: flex;
}

.hero__title {
	display: flex;
	flex-direction: column;
	gap: 0.3em;
	padding-left: 1.5em;
}

.hero__title-main {
	font-family: var(--font-mincho);
	font-size: 13.2rem;
	font-weight: 400;
	line-height: 1.0;
	color: #fff;
	letter-spacing: -.08em;
	text-shadow: 2px 2px 10px #bad4e1, -2px 2px 10px #bad4e1, 2px -2px 10px #bad4e1, -2px -2px 10px #bad4e1;
}

.hero__title-sub {
	font-family: var(--font-mincho);
	font-size: 5rem;
	font-weight: 400;
	margin-top: 0.5em;
	color: #fff;
	padding-left: 15px;
	text-shadow: 2px 2px 10px #bad4e1, -2px 2px 10px #bad4e1, 2px -2px 10px #bad4e1, -2px -2px 10px #bad4e1;
}

/* 自治体ロゴ帯 */
.hero__cities {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 1);
	padding: 1.6rem 3em;
	border-bottom: 1px solid #ccc;
	overflow: hidden;
}

p.txt_h1 {
	font-size: 1.6rem;
	margin-bottom: 30px;
	font-family: var(--font-sans);
}

/* スクロール領域 */
.city-logos-wrap {
	display: flex;
	width: max-content;
	animation: cityScroll 40s linear infinite;
}

/* ロゴ群 */
.city-logos {
	display: flex;
	align-items: center;
	gap: 0 5rem;
	padding-right: 5rem;
	flex-shrink: 0;
}

/* ロゴサイズ */
.city-logos__link img {
	height: 56px;
	width: auto;
	display: block;
}

/* 無限スクロール */
@keyframes cityScroll {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* ============================================================
   NEWS
============================================================ */
.news {
	max-width: 920px;
	margin: 0 auto;
	padding: var(--section-pt) 0;
}

.section-label {
	font-family: var(--font-sans);
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 0.5em;
}

.news__category-tab {
	display: inline-block;
	font-size: 13.8rem;
	margin-bottom: 0;
	font-family: var(--font-en);
	font-variation-settings: "opsz" 100, "wght" 300;
	font-weight: 300;
	line-height: .8;
	color: #f2f2f2;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	border-top: 1px solid var(--color-border);
	margin-top: -5px;
}

.news-list__item {
	border-bottom: 1px solid var(--color-border);
}

.news-card__link {
	display: flex;
	align-items: center;
	gap: 2.4rem;
	padding: 2.0rem 0;
	transition: opacity var(--transition);
}

.news-card__link:hover {
	opacity: 0.7;
}

.news-card__thumb {
	width: 200px;
	height: 110px;
	flex-shrink: 0;
	overflow: hidden;
	background-color: #f4bbb5;
}

.news-card__thumb-placeholder {
	width: 100%;
	height: 100%;
}

.news-card__body {
	flex: 1;
	min-width: 0;
}

.news-card__date {
	display: block;
	font-size: 1.6rem;
	color: var(--color-muted);
	margin-bottom: 1em;
	font-weight: 500;
	font-family: outfit, sans-serif;
}

.news-card__title {
	font-size: 1.4rem;
	line-height: 1.4;
}

.news-card__title span {
	display: block;
	font-family: var(--font-mincho);
	font-size: 2rem;
	margin-bottom: 1.0rem;
}

.news__more {
	margin-top: 3.2rem;
	max-width: 200px;
	margin-left: auto;
	margin-right: auto;
}

.news-list__item {
	border-bottom: 1px solid var(--color-border);
	opacity: 0;
	transform: translateX(-100px);
	transition:
		opacity 0.8s ease,
		transform 0.8s ease;
}



.fade-slide {
	opacity: 0;
	transform: translate(-40px, -20px);
	transition:
		opacity 1s ease,
		transform 1s ease;
	will-change: transform, opacity;
}

.fade-slide.is-show {
	opacity: 1;
	transform: translate(0, 0);
}

/* ============================================================
   EVENT
============================================================ */
.event {
	position: relative;
	overflow: hidden;
}

.event__bg-photo {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.event__intro {
	position: relative;
	z-index: 1;
	padding: var(--section-pt) 0 500px;
	text-align: center;
	color: var(--color-sub);
	background-image: url(../images/bg_event.webp);
	background-size: cover;
}

.event__intro .section-eyebrow {
	color: rgba(255, 255, 255, 0.8);
}

.event__intro .section-heading-en,
.event__intro .section-heading-ja {
	color: var(--color-sub);
}

.event__description {
	max-width: 1100px;
	margin-inline: auto;
	font-size: 2.1rem;
	line-height: 1.9;
	text-align: center;
	font-family: var(--font-mincho);
}

.event__description p:first-child {
	margin-bottom: 2em;
	font-size: 3rem;
}

.event__description p+p {
	margin-top: 1.2em;
}

.event__area-note {
	font-size: var(--fs-small);
	color: rgba(255, 255, 255, 0.85);
	margin-top: 2.0em;
}

/* Event Information カード */
.event-info {
	position: relative;
	z-index: 1;
	padding-bottom: var(--section-pb);
	margin-top: -60px;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}

.event-info__card {
	display: flex;
	gap: 0;
	background-image: url(../images/bg_eventinfo.webp);
	background-size: cover;
	background-repeat: no-repeat;
}


.event-info__text-col {
	flex: 1;
	padding: 10rem 8rem;
}

.event-info__title {
	font-family: var(--font-en);
	font-variation-settings: "opsz" 100, "wght" 300;
	font-weight: 300;
	font-size: 5.5rem;
	margin-bottom: 0.5em;
	line-height: 1;
}

.event-info__desc {
	font-size: 1.4rem;
	margin-bottom: 5.0rem;
	color: var(--color-muted);
}

.event-info__notes {
	margin-top: 2.0rem;
	padding-left: 1.2em;
}

.event-info__notes li {
	font-size: 1.2rem;
	color: var(--color-muted);
	line-height: 1.6;
	padding-left: 1.0em;
	position: relative;
}

.event-info__notes li::before {
	content: '・';
	position: absolute;
	left: 0;
}

.event-info__notes li+li {
	margin-top: 0.6em;
}

.fade-up {
	opacity: 0;
	transform: translateY(60px);
	transition:
		opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
		transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.fade-up.is-show {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================================
   EVENT REPORT
============================================================ */
.event-report {
	padding: 50px 0 var(--section-pb);
}

.event-report__inner {
	display: flex;
	gap: 6.0rem;
}

.event-report__photo-col {
	width: 42%;
	flex-shrink: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.event-report__photo-placeholder {
	width: 100%;
	height: 100%;
}

.event-report__photo-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.event-report__text-col {
	flex: 1;
}

.event-report__subtitle {
	font-family: var(--font-mincho);
	font-size: 3.8rem;
	margin-bottom: 1.2em;
}

.event-report__desc {
	font-size: 1.5rem;
	line-height: 1.9;
	color: var(--color-muted);
	margin-bottom: 2.4rem;
	font-family: var(--font-sans);
}

.event-report__desc span {
	display: block;
	font-family: var(--font-mincho);
	font-size: 3.0rem;
}

.report-slide-photo {
	opacity: 0;
	transform: translate(-50px, -40px);
	transition:
		opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
		transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.report-slide-text {
	opacity: 0;
	transform: translate(60px, -30px);
	transition:
		opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: 0.35s;
}

.report-slide-photo.is-show,
.report-slide-text.is-show {
	opacity: 1;
	transform: translate(0, 0);
}

/* ============================================================
   SUPPORT AND ADVICE
============================================================ */
.support {
	padding: var(--section-pt) 0 0;
}

.support .section-eyebrow {
	margin-bottom: 0.4em;
}

.support__card-wrap {
	margin-top: 4.0rem;
	background-image: url(../images/bg_support.png);
	background-size: cover;
}

.support__card {
	display: flex;
	gap: 4.0rem;
	padding-bottom: 3em;
}

.support__card-text {
	flex: 1;
	padding: 4.0rem;
}

.support__card-title {
	font-family: var(--font-mincho);
	font-size: 6rem;
	font-weight: 400;
	margin-bottom: 0.3em;
}

.support__card-desc {
	font-size: 1.6rem;
	line-height: 1.9;
	margin-bottom: 4rem;
}

.support__card-note::after {
	content: "";
	position: absolute;
	top: 0;
	right: 40%;
	width: 50px;
	height: 50px;
	background-image: url(../images/fukidashi_three.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.support__card-note {
	margin-top: 2rem;
	font-size: 2.4rem;
	color: var(--color-muted);
	line-height: 1.7;
	font-family: var(--font-mincho);
	letter-spacing: -0.01em;
}

.support__card-photo {
	width: 40%;
	flex-shrink: 0;
}


/* ============================================================
   CONNECT / LINE
============================================================ */
.connect {
	padding: var(--section-pt) 0 150px;
}

.connect__inner {
	display: flex;
	gap: 6.0rem;
	margin-top: 3.2rem;
}

.connect__text-col {
	flex: 1;
	text-align: center;
}

.connect__line-logo {
	display: flex;
	align-items: center;
	gap: 1.0rem;
	margin-bottom: 1.6rem;
	width: 500px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.connect__line-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.connect__line-label {
	font-size: 1.8rem;
	font-weight: 500;
}

.connect__desc {
	font-size: 1.4rem;
	line-height: 1.6;
	margin-bottom: 1.6rem;
	width: 500px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.connect__feature {
	display: flex;
	align-items: center;
	gap: 0.6em;
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 2.0rem;
	font-family: var(--font-mincho);
}

.connect__feature {
	align-items: center;
	display: flex;
	justify-content: center;
	font-size: 3rem;
	margin-top: 3rem;
}

.connect__feature::before,

.connect__feature::after {
	background-color: #111;
	border-radius: 1px;
	content: "";
	height: 1px;
	width: 50px;
}

.connect__feature::before {
	margin-right: 5px;
	transform: rotate(50deg);
}

.connect__feature::after {
	margin-left: 5px;
	transform: rotate(-50deg);
}

.connect__note {
	margin-top: 1.2rem;
	font-size: 1.4rem;
	color: var(--color-muted);
}

.connect__phone-col {
	width: 280px;
	flex-shrink: 0;
}

.connect__phone-placeholder {
	width: 100%;
}

/* ============================================================
   PARTNER CITIES AND TOWNS
============================================================ */
.partners {
	position: relative;
	overflow: hidden;
	background-image: url(../images/bg_partner.webp);
	background-size: cover;
}

.partners__bg-photo {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.partners__inner {
	position: relative;
	z-index: 1;
	padding-top: var(--section-pt);
	padding-bottom: 6.0rem;
}

.partners__eyebrow {
	color: rgba(255, 255, 255, 0.8);
}

.partners__heading {
	font-family: var(--font-en);
	font-size: 14.5rem;
	font-weight: 300;
	line-height: 1.15;
	color: var(--color-sub);
	font-variation-settings: "opsz" 100, "wght" 300;
}

.partners__logos-wrap {
	position: relative;
	z-index: 1;
	padding: 0 0 8rem 0;
}

.partner-logos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem 7rem;
	margin-left: auto;
	margin-right: auto;
}


.partner-logos__link:hover {
	border-color: var(--color-main);
}

.partner_text {
	text-align: left;
	color: #fff;
	font-size: 1.6rem;
	font-family: var(--font-sans);
	margin-bottom: 4em;
}

/* ============================================================
   FOOTER CATCH
============================================================ */
.footer-catch__title {
	font-size: 10.8vw;
	color: #fff;
	font-family: var(--font-mincho);
	text-align: center;
	letter-spacing: -0.1em;
	line-height: 1;
}


.footer-catch__sub {
	font-size: 5rem;
	color: #fff;
	font-family: var(--font-mincho);
	text-align: center;
	letter-spacing: -0.1em;
	line-height: 1;
	width: 100%;
	margin-bottom: 4rem;
}

.footer-catch {
	position: relative;
	z-index: 10;
	overflow: visible;
}

.footer-catch__title.fade-up {
	opacity: 0;
	transform: translateY(24px);
}

.footer-catch__title.fade-up.is-show {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================================
   SITE FOOTER
============================================================ */
.site-footer {
	padding: 0 0 4rem 0;
	background: #b3b3b3;
	color: #111;
}

.site-footer__inner {
	display: flex;
	gap: 4.0rem;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}

.site-footer__catch {
	font-family: var(--font-mincho);
	font-size: 1.3rem;
	line-height: 1.6;
	color: var(--color-sub);
	margin-bottom: 1.6rem;
}

.footer-line-btn {
	display: flex;
	align-items: center;
	width: 350px;
	height: 60px;
	background-image: url(../images/line_btn_bg.png);
	background-repeat: no-repeat;
	background-size: 100% auto;
	gap: 10px;
	justify-content: center;
}

.footer-line-btn img {
	display: inline-block;
	width: 30px;
}

.footer-line-btn:hover {
	opacity: 0.85;
}

.f-fukidashi {
	align-items: center;
	display: flex;
	justify-content: center;
	font-size: 1.4rem;
	margin-top: 3em;
	margin-bottom: 1.5rem;
}

.f-fukidashi::before,
.f-fukidashi::after {
	background-color: #111;
	border-radius: 1px;
	content: "";
	height: 1px;
	width: 20px;
}

.f-fukidashi::before {
	margin-right: 3px;
	transform: rotate(60deg);
}

.f-fukidashi::after {
	margin-left: 3px;
	transform: rotate(-60deg);
}

.site-footer__address {
	font-size: 1.2rem;
	line-height: 1.9;
	margin-bottom: 1.6rem;
}

.site-footer__brand {
	width: 30%;
	text-align: center;
}

.site-footer__copyright {
	font-size: 1.2rem;
	display: block;
	text-align: left;
	margin-top: 8rem;
}

br.sp {
	display: none;
}

br.pc {
	display: block;
}

.news-card__thumb-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ============================================================
   RESPONSIVE — 1024px 以下
============================================================ */
.archive-news {
	padding-top: 8em;
	padding-bottom: 8em;
}


#ttl-second {
	text-align: center;
	padding-top: 4em;
	padding-bottom: 3em;
	margin-bottom: 3em;
	border-bottom: 1px solid #ccc;
	width: 100%;
	display: flex;
	align-items: center;
}

#ttl-second h2 {
	width: 100%;
	text-align: center;
	font-size: 7rem;
	line-height: 1.6;
	font-weight: 500;
	font-family: var(--font-mincho);
}

.single-news {
	padding: 120px 0;
}

.single-news__title {
	font-size: 4rem;
	line-height: 1.6;
	font-weight: 500;
	font-family: var(--font-mincho);
}

.single-news__date {
	display: block;
	margin-top: 20px;
	font-size: 1.4rem;
	font-variation-settings: "opsz" 100, "wght" 600;
	font-family: var(--font-en);
	font-weight: 600;
}

.single-news__content {
	margin-top: 30px;
	font-family: var(--font-sans);
	font-size: 1.6rem;
}

.single-news__thumb {
	margin-bottom: 50px;
}

.single-news__thumb-img {
	max-width: 100%;
	height: auto;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.single-news__body {
	line-height: 2;
}

.single-news__body p {
	margin-bottom: 1.8em;
}

.single-news__body p a {
	display: inline-block;
	border-radius: 999999px;
	padding: .5em 4em;
	text-align: center;
	color: #f4bbb5;
	border: 1px solid #f4bbb5;
}

.single-news__pager {
	margin-top: 80px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	gap: 20px;
}

.single-news__pager-item {
	background-image: url(../images/btn_bg_200.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	height: 60px;
	width: 200px;
	font-variation-settings: "opsz" 100, "wght" 400;
	font-family: var(--font-en);
	font-weight: 400;
	text-align: center;
	line-height: 58px;
	margin-left: auto;
	margin-right: auto;
}

.single-news__pager-back {
	background-image: url(../images/line_btn_bg.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	height: 60px;
	width: 350px;
	font-variation-settings: "opsz" 100, "wght" 400;
	font-family: var(--font-en);
	font-weight: 400;
	text-align: center;
	line-height: 58px;
	margin-left: auto;
	margin-right: auto;
}

.single-news__body img {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin-top: 5px;
	margin-bottom: 5px;
}

.single-news__pager a {
	text-decoration: none;
	display: block;
}

.blogimage {
	display: flex;
	gap: 30px;
}

.tabledesign {
	width: 100%;
	margin-top: 3em;
	border: 6px solid #f4bbb5;
	padding: 2em 3em 3em 3em;
}

.tabledesign th {
	width: 20%;
	text-align: left;
	padding-bottom: 1em;
	padding-top: 1em;
	vertical-align: top;
}

.tabledesign th p {
	background-color: #f7a9a1;
	text-align: center;
	border-radius: 99999px;
	display: block;
	font-size: 1.4rem;
	height: 36px;
	color: #fff;
	line-height: 34px;
}

.tabledesign td {
	width: 76%;
	text-align: left;
	padding-bottom: 1em;
	padding-top: 1em;
	font-size: 1.5rem;
	padding-left: 1em;
}

.oubohouhoukakunin {
	border: 5px dashed #81cde4;
	padding: .5em;
	text-align: center;
	line-height: 1.8em;
	color: #333;
	height: auto;
	opacity: 1;
	margin-top: 60px;
	margin-bottom: 70px;
	font-size: 1.8rem;
	display: block;
}

#oubohouhou {
	padding: 0 30px;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	display: block;
	box-sizing: border-box;
	transition: all 0.4s ease-out;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
	border: 1px solid transparent;
}

#oubohouhou.checkblock {
	border: 1px solid #333;
	padding: 25px 30px;
	text-align: left;
	line-height: 1.8em;
	color: #333;
	max-height: 2000px;
	opacity: 1;
	margin-top: 30px;
}

#oubohouhou.checkblock a {
	color: #f7a9a1;
}

h4 {
	font-size: 1.6rem;
	letter-spacing: 0.15em;
	font-weight: 600;
	color: #555;
	margin-bottom: 1em;
}

#checkarea {
	border: dashed #333 2px;
	padding: 20px;
	width: 100%;
	box-sizing: border-box;
}

input[type="checkbox"] {
	border: 1px solid #bbbbbb;
}

.wpcf7-list-item.first label,
.wpcf7-list-item.last label {
	display: flex;
}

input[type="radio"] {
	display: inline-block;
	width: 16px !important;
	margin-right: 5px;
}

.wpcf7-list-item-label {
	width: 60px;
}

#checkarea a {
	color: #f7a9a1;
	text-decoration: underline !important;
}

ul.caution {
	margin-top: 40px;
	width: 100%;
	text-align: left;
	margin-bottom: 5em;
}

ul.caution li {
	line-height: 1.8em;
	font-size: 1.6rem;
	text-indent: -1em;
	padding-left: 1em;
	margin-bottom: 10px;
}

.detail span {
	border-radius: 9999px;
	background: #ccc;
	text-align: center;
	padding: .5em 1.5em;
	margin-right: 10px;
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1;
}

span.bosyu {
	background-color: #f38181;
	color: #fff;
}

span.timeday {
	background-color: #ffc654;
	color: #fff;
}

span.chiiki {
	background-color: #95e1d3;
	color: #fff;
}

span.e-name {
	display: inline-block;
	color: #fff;
	background-color: #999;
	text-align: center;
	padding: .5em 1.5em;
	margin-right: 10px;
	font-family: var(--font-sans);
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1;
}

/* --- お問い合わせフォーム --- */
/*ContactForm7カスタマイズ*/
table.CF7_table {
	width: 100%;
	margin: 0 auto;
	border: 3px solid #e5e5e5;
}

table.CF7_table tr {
	border-top: 1px solid #e5e5e5;
}

.CF7_table th {
	background-color: #ebedf5;
}

table.CF7_table th,
table.CF7_table td {
	font-size: 1.4rem;
	font-weight: 400;
	font-family: var(--font-sans);
	text-align: left;
	padding: 1em;
}

.single-news__body table.CF7_table th p,
.single-news__body table.CF7_table td p {
	margin-bottom: 0em;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table {
	display: table;
}

/*入力欄*/
.CF7_table input,
.CF7_table textarea {
	border: 1px solid #d8d8d8;
	padding: .5em 1em;
	width: 100%;
}

.CF7_table input[type="checkbox"] {
	width: 25px;
}

.CF7_table input[type="text"],
.CF7_table input[type="email"],
.CF7_table input[type="date"] {
	height: 40px;
}

.CF7_table input[type="text"].age {
	width: 70px;
	margin-top: 10px;
	margin-right: 10px;
}

.CF7_table ::placeholder {
	color: #797979;
}

/*「必須」文字*/
.CF7_req {
	font-size: 1.2rem;
	padding: 5px 15px;
	background: #f79034;
	/*オレンジ*/
	color: #fff;
	border-radius: 9999px;
	margin-right: 1em;
}

/*「任意」文字*/
.CF7_unreq {
	font-size: 1.2rem;
	padding: 5px 15px;
	text-align: center;
	background: #bdbdbd;
	color: #fff;
	border-radius: 9999px;
	margin-right: 1em;
}


/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
	background-color: #555;
	border: 0;
	border-radius: 99999px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	margin: 0 auto;
	padding: 1.5em 8.5em;
	text-align: center;
	cursor: pointer;
}

.CF7_btn {
	text-align: center;
	margin-top: 20px;
}

.wpcf7-spinner {
	width: 0;
	margin: 0;
}

.wpcf7-spinner {
	display: none !important;
}

.cf7-readonly {
	background-color: #f2f2f2;
	color: #777;
	cursor: not-allowed;
	pointer-events: none;
}

@media screen and (max-width: 1139px) {
	br.pc {
		display: none;
	}
}

@media screen and (max-width: 1024px) {

	.CF7_table input[type="checkbox"] {
		width: 35px;
	}

	table.CF7_table th,
	table.CF7_table td,
	.CF7_table ::placeholder,
	.wpcf7 input.wpcf7-submit {
		font-size: 2.4rem;
	}

	.CF7_table th {
		width: 35%;
	}

	.CF7_req,
	.CF7_unreq {
		font-size: 1.8rem;
		padding: 5px 15px 7px;
	}

	.CF7_table input[type="text"],
	.CF7_table input[type="email"],
	.CF7_table input[type="date"] {
		height: 60px;
	}
}


/* レスポンシブ */
@media screen and (max-width: 768px) {

	.CF7_table tr,
	.CF7_table td,
	.CF7_table th {
		display: block;
		width: 100%;
		line-height: 2.5em;
	}

}

/* レスポンシブ */
@media screen and (max-width: 540px) {
	.wpcf7-checkbox {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}

	table.CF7_table td {
		font-size: 2.4rem;
		padding: 1.5em 1em;
		line-height: 1.0em;
	}

	table.CF7_table th {
		font-size: 2.4rem;
		padding: 1.2em 1em;
		line-height: 1.0em;
	}

	.CF7_table ::placeholder,
	.wpcf7 input.wpcf7-submit {
		font-size: 2.2rem;
		padding: 1.0em 3.5em;
	}

	.CF7_btn {
		text-align: center;
		margin-top: 2em;
		width: 100%;
	}
}

@media screen and (max-width: 450px) {

	table.CF7_table td {
		font-size: 1.5rem;
	}

	table.CF7_table th {
		font-size: 1.5rem;
	}

	.CF7_table ::placeholder,
	.wpcf7 input.wpcf7-submit {
		font-size: 1.5rem;
	}

	.CF7_req,
	.CF7_unreq {
		font-size: 1.5rem;
		padding: 3px 15px 5px;
	}

	.CF7_table input[type="checkbox"] {
		width: 24px;
	}
}

@media screen and (max-width: 1024px) {
	.single-news {
		padding: 80px 0;
	}

	.single-news__pager {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.single-news__pager-item--next {
		text-align: center;
	}
}


@media (max-width:1366px) {
	.hero {
		background-position: -100px;
	}
}

@media (max-width: 1024px) {
	br.sp {
		display: block;
	}

	.hero__cities {
		padding: 1.6rem 1.5em;
	}

	.hero::before {
		background-image: url(../images/main_sp.png);
	}

	.hero::after {
		background-image: url(../images/main02_sp.png);
	}

	.hero::before,
	.hero::after {
		background-position: bottom 200px center;
		background-size: 100% auto;
	}

	.hero__content {
		padding-bottom: 0;
		padding-top: 0px;
	}

}

.menu-btn,
.sp-menu,
.support__card-photo,
.btn-accent_sp,
.sp-menu__line {
	display: none;
}

@media screen and (max-width: 1200px) {
	.site-header__inner {
		gap: 1.4rem;
		padding: 0 1.5em;
	}

	.nav-list {
		gap: 1.5rem;
	}
}

@media screen and (max-width: 1024px) {
	:root {
		--fs-body: 2.6rem;
		--fs-small: 2rem;
		--fs-label: 2.6rem;
		--section-pt: 5em;
		--section-pb: 80px;
		--container-max: 1200px;
		--container-px-pc: 30px;
		--container-px-sp: 1.5em;
	}

	.container {
		padding-inline: var(--container-px-sp);
	}

	.site-header {
		height: 160px;
	}

	.site-header__inner {
		height: 160px;
		padding: 20px 24px;
		justify-content: space-between;
	}

	.site-header__inner.second {
		border-bottom: 1px solid #efefef;
		background-color: #fff;
	}

	.site-header__catch {
		width: 360px;
		margin-top: 1.3rem;
		margin-left: 1rem;
		margin-bottom: .5rem;
		align-items: center;
	}

	#ttl-second {
		padding-top: 5em;
	}

	.site-header__nav,
	.header-line-btn {
		display: none;
	}

	.menu-btn {
		display: block;
		border: none;
		background: transparent;
		font-family: serif;
		font-size: 5vw;
		color: #fff;
		border-bottom: 1px solid #fff;
		padding: 0 0 3px;
		cursor: pointer;
	}

	.menu-btn.blk {
		border-bottom: 1px solid #333;
		color: #333;
	}

	.sp-menu {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 999;
		background: #fff;
		padding: 20px 24px;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.4s ease, visibility 0.4s ease;
	}

	.sp-menu.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.sp-menu__head {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 55px;
	}

	.sp-menu__logo {
		width: 360px;
		margin-top: 1.3rem;
		margin-left: 1rem;
		align-items: center;
	}

	.menu-close {
		border: none;
		background: transparent;
		font-family: serif;
		font-size: 5vw;
		color: #333;
		border-bottom: 1px solid #333;
		padding: 0 0 3px;
		cursor: pointer;
	}

	.sp-menu__nav {
		display: flex;
		flex-direction: column;
		gap: 50px;
		padding-left: 1rem;
		margin-bottom: 6em;
	}

	.sp-menu__nav a {
		display: block;
		font-family: var(--font-en);
		font-variation-settings: "opsz" 100, "wght" 300;
		font-weight: 300;
		font-size: 8vw;
		line-height: 1;
		color: #333;
	}

	.sp-menu__nav a span {
		display: block;
		font-family: var(--font-sans);
		font-size: 2.5vw;
		margin-bottom: 10px;
	}

	.sp-menu__line {
		width: 100%;
		height: auto;
		margin-left: auto;
		margin-right: auto;
		display: block;
		margin-top: 1rem;
	}

	.sp-menu__line img {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}


	.sp-menu__logos {
		margin-top: 60px;
		text-align: center;
	}

	.sp-menu__logos img {
		width: 100%;
		max-width: 410px;
	}

	.city-logos-wrap {
		display: block;
		width: 100%;
		animation: none;
	}

	.city-logos-wrap .city-logos:nth-of-type(2) {
		display: none;
	}

	.city-logos {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5em 5em;
		padding-right: 0;
		width: 100%;
		align-items: center;
	}

	.city-logos__item {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.city-logos__link img {
		width: 100%;
		max-width: 100%;
		height: auto;
		margin-left: auto;
		margin-right: auto;
	}

	p.txt_h1 {
		font-size: 2.4rem;
		line-height: 1.4;
		margin-left: 1rem;
	}

	.hero__title {
		padding-left: 0.5em;
	}

	.hero__title-main {
		font-size: 17vw;
	}

	.hero__title-sub {
		font-size: 7vw;
	}

	.news__category-tab {
		font-size: 20vw;
		font-variation-settings: "opsz" 100, "wght" 400;
		font-weight: 400;
	}

	.news-card__link {
		align-items: start;
		gap: 3.5rem;
	}

	.news-card__thumb {
		width: 45%;
		height: 260px;
	}

	.section-label {
		font-size: 2.4rem;
		padding-left: 1rem;
	}

	.news-card__date {
		font-size: 2.6rem;
		margin-bottom: .5em;
	}

	.news-card__title {
		font-size: 2.6rem;
	}

	.news-card__link {
		gap: 2.4rem;
		padding: 5rem 0;
	}

	.news-card__title span {
		font-size: 3rem;
		margin-bottom: 1.0rem;
	}


	.event-report {
		padding: 70px 0;
	}

	.event-report__inner {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.event-report__text-col {
		display: contents;
	}

	.section-eyebrow {
		order: 1;
	}

	.section-heading-en.report {
		order: 2;
		font-size: 20vw;
		line-height: 0.9;
		margin-bottom: .5em;
	}

	.event-info__card {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		background-image: url(../images/bg_eventinfo_sp.webp);
		background-size: cover;
		background-position: center;
	}

	.event-info__text-col {
		flex: 1;
		padding: 18rem 8rem;
	}

	.event-info__title {
		font-size: 10vw;
	}

	.event-info__desc {
		font-size: 2.6rem;
	}

	.event-report__subtitle {
		order: 3;
		font-size: 5.8vw;
		line-height: 1.4;
		margin-bottom: .5em;
	}

	.event-report__photo-col {
		order: 4;
		width: 100%;
		aspect-ratio: auto;
		margin-bottom: 24px;
	}

	.event-report__photo-placeholder img {
		width: 100%;
		height: auto;
		object-fit: contain;
	}

	.event-report__desc {
		order: 5;
		font-size: 2.6rem;
		line-height: 1.9;
		margin-bottom: 36px;
	}

	.event-report__desc span {
		font-size: 6vw;
		margin-bottom: .2em;
	}

	.btn-more {
		display: none;
	}

	button.btn-more {
		display: block;
		font-size: 2.6rem;
		margin-left: auto;
		margin-right: auto;
	}

	.btn-more_sp {
		display: block;
		order: 6;
		width: 50%;
		margin: 0 auto;
	}

	.btn-accent_sp {
		display: block;
		order: 6;
		width: 60%;
		margin: 0 auto 2em 0;
	}

	.section-heading-en {
		font-size: 20vw;
	}

	.section-heading-ja {
		font-size: 6vw;
	}

	.event__description p:first-child {
		margin-bottom: 2em;
		font-size: 6vw;
	}

	.event__description {
		font-size: 4.5vw;
	}

	.section-eyebrow {
		margin-bottom: 0;
	}

	.news__more {
		margin-top: 8.2rem;
		max-width: 100%;
		margin-bottom: 6rem;
	}

	.btn-more_sp img {
		width: 100%;
	}

	.support {
		padding: 80px 0 0;
		overflow: hidden;
	}

	.support .section-eyebrow {
		margin-bottom: 12px;
		text-align: center;
	}

	.support .section-heading-en {
		font-size: 20vw;
		line-height: 1;
		letter-spacing: 0em;
		margin-bottom: .5em;
		text-align: center;
	}

	.support .section-heading-en span {
		display: inline-block;
		margin-left: 0.05em;
	}

	.support__card-wrap {
		margin-top: 0;
		background-image: none;
	}

	.support__card {
		display: flex;
		flex-direction: column;
		gap: 0;
		padding-bottom: 0;
	}

	.support__card-text {
		order: 1;
		padding: 0;
	}

	.support__card-title {
		font-size: 6vw;
		line-height: 1.5;
		margin-bottom: .5em;
	}

	.support__card-desc {
		font-size: 2.6rem;
		line-height: 1.9;
		margin-bottom: 32px;
	}

	.btn-accent {
		width: 220px;
		height: 64px;
		font-size: 2.6rem;
		margin-bottom: 28px;
	}

	.support__card-note {
		position: relative;
		font-size: 3.4vw;
		line-height: 1.8;
		margin-top: 0;
		margin-bottom: 36px;
		padding-right: 40px;
	}

	.support__card-note::after {
		content: "";
		position: absolute;
		top: 40px;
		right: 55px;
		width: 50px;
		height: 50px;
		background-image: url(../images/fukidashi_three.png);
		background-size: contain;
		background-repeat: no-repeat;
	}

	.support__card-photo {
		display: block;
		order: 2;
		width: 100vw;
		margin-left: calc(50% - 50vw);
	}

	.support__card-photo img {
		width: 100%;
		height: auto;
		display: block;
	}

	.connect {
		padding: 80px 0 70px;
	}

	.connect__inner {
		display: flex;
		flex-direction: column;
		gap: 4em;
		margin-top: 0;
	}

	.connect__text-col {
		text-align: left;
	}

	.connect .section-eyebrow {
		text-align: center;
		margin-bottom: 10px;
	}

	.connect .section-heading-en {
		text-align: center;
		font-size: 20vw;
		line-height: .6;
		margin-bottom: 0.5em;
	}

	.connect__line-logo {
		width: 100%;
		margin-bottom: 2em;
		justify-content: center;
	}

	.connect__line-logo img {
		width: 100%;
		max-width: 76%;
	}

	.connect__desc {
		width: 70%;
		font-size: 2.6rem;
		line-height: 1.8;
		margin-bottom: 1.5em;
		text-align: center;
	}

	.connect__feature {
		font-size: 5vw;
		margin: 30px 0 24px;
		justify-content: center;
	}

	.connect__feature::before,
	.connect__feature::after {
		width: 34px;
	}

	.btn-line,
	.footer-line-btn,
	.btn-accent {
		display: none;
	}

	.connect__note {
		font-size: 2.6rem;
		line-height: 1.8;
		margin-top: 2em;
		text-align: center;
	}

	.connect__phone-col {
		width: 100%;
		text-align: center;
	}

	.connect__phone-placeholder {
		width: 100%;
		max-width: 45%;
		margin: 0 auto 3em auto;
	}

	.connect__phone-placeholder img {
		width: 100%;
		height: auto;
		display: block;
	}

	.partners__heading {
		font-size: 15vw;
		font-weight: 300;
	}

	.partner_text {
		font-size: 2.6rem;
		margin-bottom: 4em;
	}

	.site-footer__inner {
		flex-direction: column;
	}

	.site-footer__brand {
		width: 100%;
		text-align: center;
	}

	.site-footer__catch {
		text-align: center;
	}

	.site-footer__catch img {
		margin-left: auto;
		margin-right: auto;
	}

	.f-fukidashi {
		font-size: 4vw;
		margin-top: 2em;
	}

	.f-fukidashi::before,
	.f-fukidashi::after {
		width: 50px;
	}

	.site-footer__address {
		font-size: 2.6rem;
		margin-bottom: 1.6rem;
	}

	.site-footer__inner {
		gap: 9rem;
	}

	.site-footer__copyright {
		font-size: 2.4rem;
		display: block;
		text-align: center;
		margin-top: 8rem;
	}

	.site-footer__info {
		width: 85%;
		margin-left: auto;
		margin-right: auto;
	}

	.footer-catch__sub {
		font-size: 6vw;
	}

	.partner-logos {
		gap: 4rem 4rem;
	}

	#ttl-second h2 {
		font-size: 8vw;
	}

	.single-news__title {
		font-size: 5vw;
	}

	.single-news__date {
		font-size: 2.3rem;
	}

	.single-news__content {
		font-size: 2.6rem;
	}

	.tabledesign {
		width: 100%;
		margin-top: 3em;
		border: 6px solid #f4bbb5;
		padding: 1em 1.5em 1.5em 1.5em;
	}

	.tabledesign td,
	.tabledesign th {
		font-size: 2.3rem;
	}

	h4,
	#checkarea,
	#oubohouhou,
	ul.caution li {
		font-size: 2.6rem;
	}

	.detail span,
	span.e-name {
		font-size: 2rem;
	}

	.contact_btn {
		font-size: 2.6rem;
	}
}

@media screen and (max-width: 768px) {
	.site-header__inner {
		height: 145px;
	}
}

button {
	background-color: #fff;
	border: none;
}

@media (max-width: 540px) {
	.archive-news {
		padding-top: 1.5em;
		padding-bottom: 2em;
	}

	.single-news__thumb {
		margin-bottom: 30px;
	}

	.site-header {
		height: 80px;
	}

	.site-header__inner {
		height: 80px;
	}

	.site-header__catch,
	.sp-menu__logo {
		width: 220px;
		margin-left: 0;
	}

	#ttl-second {
		padding-top: 1em;
		padding-bottom: 2em;
		margin-bottom: 2em;
	}

	.hero::before,
	.hero::after {
		background-position: bottom 0px center;
		background-size: cover;
	}

	.hero__cities {
		padding: 1.6rem 1.0em;
	}

	.city-logos {
		gap: .5em 1.5em;
	}

	.hero__content {
		padding-bottom: 50px;
	}

	p.txt_h1 {
		font-size: 1.4rem;
	}

	.news-card__date,
	.news-card__title,
	.section-label,
	.event-info__desc,
	.section-eyebrow,
	.event-report__desc,
	.support__card-desc,
	.connect__desc,
	.connect__note,
	.partner_text,
	.site-footer__address,
	.single-news__content,
	button.btn-more,
	.contact_btn {
		font-size: 1.8rem;
	}

	.site-footer__copyright,
	.single-news__date {
		font-size: 1.4rem;
	}

	.detail span,
	span.e-name {
		font-size: 1.4rem !important;
	}

	.detail span {
		margin-right: 0px;
	}

	span.e-name {
		padding: .3em 0.6em .4em;
		margin-right: 5px;
	}

	.blogimage {
		display: block;
	}

	.news-card__link {
		gap: 2.4rem;
		padding: 3rem 0;
	}

	.blogimage li {
		margin-bottom: 1.5em;
	}

	.tabledesign {
		padding: .5em 1.0em 1.0em 1.0em;
	}

	.tabledesign td,
	.tabledesign th {
		font-size: 1.6rem;
		width: 100%;
		display: block;
	}

	.tabledesign td {
		padding-bottom: .5em;
		padding-top: .5em;
		padding-left: .5em;
		padding-right: .5em;
	}

	h4,
	#checkarea,
	#oubohouhou,
	ul.caution li {
		font-size: 1.8rem;
	}

	.oubohouhoukakunin {
		padding: .5em;
		margin-top: 30px;
		margin-bottom: 30px;
		font-size: 1.7rem;
	}

	.f-fukidashi {
		font-size: 3.4vw;
	}

	.event-report__subtitle {
		font-size: 5.4vw;
	}

	.news-card__title span {
		font-size: 2.4rem;
	}

	.news-card__thumb {
		width: 40%;
		height: 180px;
	}

	.event-info__text-col {
		padding: 5rem 4rem;
	}

	.site-footer__info {
		width: 90%;
	}

	.site-footer__inner {
		gap: 3rem;
	}

	.support__card-note {
		background-position: right 2% top 0%;
	}

	.partners__logos-wrap {
		position: relative;
		z-index: 1;
		padding: 0 0 6rem 0;
	}

	.support__card-note::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		background-image: url(../images/fukidashi_three.png);
		background-size: contain;
		background-repeat: no-repeat;
	}

	.support__card-note {
		letter-spacing: -0.05em;
	}
}

.br_sp450 {
	display: none;
}

@media (max-width: 450px) {
	:root {
		--fs-body: 1.8rem;
		--fs-small: 2rem;
		--fs-label: 1.8rem;
		--section-pt: 5em;
		--section-pb: 80px;
		--container-px-sp: 1.0em;
	}

	.site-header__inner {
		height: 65px;
	}

	.site-header__catch,
	.sp-menu__logo {
		width: 200px;
	}

	.hero {
		align-items: flex-start;
	}

	.hero {
		background-position: top center;
	}

	.hero__title-sub {
		font-size: 6.5vw;
		padding-left: 10px;
	}

	.hero__content {
		padding-bottom: 0px;
	}

	.hero__content {
		padding-bottom: 0px;
		padding-top: 100px;
	}

	.site-header__inner {
		padding: 5px 15px 10px 10px;
		align-items: center;
	}

	.sp-menu__head {
		align-items: center;
	}

	.sp-menu {
		padding: 5px 15px 10px 10px;
	}

	.news-card__link {
		gap: 2.4rem;
		padding: 3rem 0;
	}

	.news-card__title span {
		font-size: 2.4rem;
	}

	.news-card__thumb {
		height: 150px;
	}

	.btn-more_sp {
		width: 60%;
	}

	.btn-more_sp.eventinfo {
		width: 90%;
	}

	.connect__desc {
		width: 90%;
	}

	p.txt_h1,
	.news-card__date,
	.news-card__title,
	.section-label,
	.event-info__desc,
	.section-eyebrow,
	.event-report__desc,
	.support__card-desc,
	.connect__desc,
	.connect__note,
	.partner_text,
	.site-footer__address,
	.single-news__content,
	button.btn-more,
	.contact_btn {
		font-size: 1.5rem;
	}

	.detail span,
	span.e-name {
		font-size: 1.5rem !important;
	}

	.detail span {
		padding: .5em 1.0em;
	}

	span.e-name {
		padding: .3em 0.4em .4em;
		display: inline-block;
	}

	.tabledesign td,
	.tabledesign th {
		font-size: 1.5rem;
		width: 100%;
		display: block;
	}

	h4,
	#checkarea,
	#oubohouhou,
	ul.caution li {
		font-size: 1.5rem;
	}

	p.txt_h1 {
		margin-bottom: 10px;
	}

	.partner-logos {
		gap: 1rem 1rem;
	}

	.event-report {
		padding: 0px 0;
	}

	p.txt_h1 {
		margin-left: 0;
		font-size: 1.3rem;
	}

	.br_sp450 {
		display: block;
	}

	.site-footer__info {
		width: 100%;
	}

	.support__card-note::after {
		right: 20px;
	}
}

@media (max-width: 450px) {
	.support__card-note {
		font-size: 3.3vw;
	}


	.f-fukidashi::before,
	.f-fukidashi::after {
		width: 30px;
	}
}