/**
 * Bootstrap 5.3 使用クラスのみコンパイル（index.html ベース）
 * 元: bootstrap@5.3.0
 */

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bs-blue: #0d6efd;
	--bs-secondary: #6c757d;
	--bs-d-navy: #424D5D;
	--bs-light: #f8f9fa;
	--bs-dark: #212529;
	--bs-body-color: #212529;
	--bs-body-bg: #fff;
	--bs-border-color: #dee2e6;
	--bs-border-radius: 0.375rem;
	--bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
	--bs-font-monospace: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
	--bs-body-font-size: 1rem;
	--bs-body-font-weight: 400;
	--bs-body-line-height: 1.5;
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--bs-font-sans-serif);
	font-size: var(--bs-body-font-size);
	font-weight: var(--bs-body-font-weight);
	line-height: var(--bs-body-line-height);
	color: var(--bs-body-color);
	background-color: var(--bs-body-bg);
	-webkit-text-size-adjust: 100%;
}

img,
svg {
	vertical-align: middle;
}

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

a:hover {
	color: inherit;
}

p {
	margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
}

[hidden] {
	display: none !important;
}

/* Container */
.container-fluid {
	width: 100%;
	padding-right:0.75rem;
	padding-left:0.75rem;
}

/* Row & Grid */
.row {
	display: flex !important;
	flex-wrap: wrap;
}

.row>* {
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
}

.col {
	flex: 0 0 auto;
	width: auto;
}


.col-4 {
	flex: 0 0 auto;
	width: 33.33333333%;
}


.col-6 {
	flex: 0 0 auto;
	width: 50%;
}

.col-8 {
	flex: 0 0 auto;
	width: 66.66666667%;
}

.col-12 {
	flex: 0 0 auto;
	width: 100%;
}

@media (min-width: 576px) {
	.col-sm-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-sm-5 {
		flex: 0 0 auto;
		width: 41.66666667%;
	}

	.col-sm-6 {
		flex: 0 0 auto;
		width: 50%;
	}

	.col-sm-7 {
		flex: 0 0 auto;
		width: 58.33333333%;
	}

	.col-sm-8 {
		flex: 0 0 auto;
		width: 66.66666667%;
	}

	.col-sm-12 {
		flex: 0 0 auto;
		width: 100%;
	}
}

@media (min-width: 768px) {
	.col-md-3 {
		flex: 0 0 auto;
		width: 25%;
	}

	.col-md-12 {
		flex: 0 0 auto;
		width: 100%;
	}
}

@media (min-width: 992px) {
	.col-lg-4 {
		flex: 0 0 auto;
		width: 33.33333333%;
	}

	.col-lg-10 {
		flex: 0 0 auto;
		width: 83.33333333%;
	}
}

/* Gutters */
.g-0 {
	--bs-gutter-x: 0;
	--bs-gutter-y: 0;
}

.g-3 {
	--bs-gutter-x: 1rem;
	--bs-gutter-y: 1rem;
}

/* Grid gap (for d-grid) */
.gap-3 {
	gap: 1rem;
}

.gap-4 {
	gap: 1.5rem;
}

/* Grid columns (fr = fractional units, responsive) */
.g-cols-1 {
	grid-template-columns: 1fr;
}


@media (min-width: 576px) {
	.g-cols-sm-fr-1-1-1 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 768px) {
	.g-cols-md-fr-1-1 {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 992px) {
	.g-cols-lg-fr-1-1-1 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1025px) {
	.g-cols-lg-fr-1-1-1-1 {
		grid-template-columns: repeat(4, 1fr);
	}

	.g-cols-lg-fr-5-375-375 {
		grid-template-columns: 5fr 3.75fr 3.75fr;
	}
}


/* Display */
.d-none {
	display: none !important;
}

.d-block {
	display: block !important;
}

.d-inline-block {
	display: inline-block !important;
}

.d-flex {
	display: flex !important;
}

.d-grid {
	display: grid !important;
}


@media (min-width: 576px) {
	.d-sm-none {
		display: none !important;
	}

	.d-sm-block {
		display: block !important;
	}

	.d-sm-inline {
		display: inline !important;
	}

	.d-sm-flex {
		display: flex !important;
	}
}

@media (min-width: 992px) {
	.d-lg-none {
		display: none !important;
	}

	.d-lg-block {
		display: block !important;
	}
}

/* Flex */
.flex-wrap {
	flex-wrap: wrap !important;
}

.justify-content-between {
	justify-content: space-between !important;
}

.justify-content-center {
	justify-content: center !important;
}

.align-items-center {
	align-items: center !important;
}

.align-items-end {
	align-items: flex-end !important;
}

.align-content-between {
	align-content: space-between !important;
}

.order-5 {
	order: 5 !important;
}

.order-sm-1 {
	order: 1 !important;
}

@media (min-width: 576px) {
	.order-sm-1 {
		order: 1 !important;
	}
	.order-sm-2 {
		order: 2 !important;
	}
}

/* Position */


.position-relative {
	position: relative !important;
}

.position-absolute {
	position: absolute !important;
}


.top-0 {
	top: 0 !important;
}

.start-0 {
	left: 0 !important;
}

.end-0 {
	right: 0 !important;
}

.bottom-0 {
	bottom: 0 !important;
}

/* Spacing: m-* p-* 0-5 + auto (Bootstrap 5.3) */
/* 0=0, 1=0.25rem, 2=0.5rem, 3=1rem, 4=1.5rem, 5=3rem */
.m-0 {
	margin: 0 !important;
}


.m-auto {
	margin: auto !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-1 {
	margin-top: 0.25rem !important;
}

.mt-2 {
	margin-top: 0.5rem !important;
}

.mt-3 {
	margin-top: 1rem !important;
}

.mt-4 {
	margin-top: 1.5rem !important;
}

.mt-5 {
	margin-top: 3rem !important;
}


.mb-0 {
	margin-bottom: 0 !important;
}

.mb-1 {
	margin-bottom: 0.25rem !important;
}

.mb-2 {
	margin-bottom: 0.5rem !important;
}

.mb-3 {
	margin-bottom: 1rem !important;
}

.mb-4 {
	margin-bottom: 1.5rem !important;
}

.mb-5 {
	margin-bottom: 3rem !important;
}


.ms-1 {
	margin-left: 0.25rem !important;
}

.ms-2 {
	margin-left: 0.5rem !important;
}

.ms-3 {
	margin-left: 1rem !important;
}


.me-1 {
	margin-right: 0.25rem !important;
}


.mx-1 {
	margin-left: 0.25rem !important;
	margin-right: 0.25rem !important;
}


.mx-auto {
	margin-left: auto !important;
	margin-right: auto !important;
}


.my-3 {
	margin-top: 1rem !important;
	margin-bottom: 1rem !important;
}

.my-4 {
	margin-top: 1.5rem !important;
	margin-bottom: 1.5rem !important;
}


.p-0 {
	padding: 0 !important;
}


.p-3 {
	padding: 1rem !important;
}

.p-4 {
	padding: 1.5rem !important;
}

.p-45 {
	padding: 2rem !important;
}

.py-45 {
	padding-top: 2rem !important;
	padding-bottom: 2rem !important;
}


.pt-0 {
	padding-top: 0 !important;
}

.pt-1 {
	padding-top: 0.25rem !important;
}


.pt-3 {
	padding-top: 1rem !important;
}

.pt-4 {
	padding-top: 1.5rem !important;
}

.pt-5 {
	padding-top: 3rem !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.pb-1 {
	padding-bottom: 0.25rem !important;
}

.pb-2 {
	padding-bottom: 0.5rem !important;
}

.pb-3 {
	padding-bottom: 1rem !important;
}

.pb-4 {
	padding-bottom: 1.5rem !important;
}

.pb-5 {
	padding-bottom: 3rem !important;
}

.ps-0 {
	padding-left: 0 !important;
}

.ps-1 {
	padding-left: 0.25rem !important;
}

.ps-2 {
	padding-left: 0.5rem !important;
}

.ps-3 {
	padding-left: 1rem !important;
}

.ps-4 {
	padding-left: 1.5rem !important;
}


.ps-160 {
	padding-left: 8rem !important;
}

.pe-160 {
	padding-right: 8rem !important;
}

.pe-0 {
	padding-right: 0 !important;
}


.pe-2 {
	padding-right: 0.5rem !important;
}

.pe-3 {
	padding-right: 1rem !important;
}

.pe-4 {
	padding-right: 1.5rem !important;
}


.px-0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}


.px-2 {
	padding-left: 0.5rem !important;
	padding-right: 0.5rem !important;
}

.px-3 {
	padding-left: 1rem !important;
	padding-right: 1rem !important;
}

.px-4 {
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}


.py-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.py-1 {
	padding-top: 0.25rem !important;
	padding-bottom: 0.25rem !important;
}

.py-2 {
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
}

.py-3 {
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}

.py-4 {
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
}

.py-5 {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

.py-6 {
	padding-top: 5rem !important;
	padding-bottom: 5rem !important;
}

.pt-6 {
	padding-top: 5rem !important;
}

.pb-6 {
	padding-bottom: 5rem !important;
}

@media (max-width: 1024px) {
	.py-6 {
		padding-top: 4rem !important;
		padding-bottom: 4rem !important;
	}

	.pt-6 {
		padding-top: 4rem !important;
	}

	.pb-6 {
		padding-bottom: 4rem !important;
	}
}

@media (max-width: 568px) {
	.py-6 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}

	.pt-6 {
		padding-top: 3rem !important;
	}

	.pb-6 {
		padding-bottom: 3rem !important;
	}
}

/* Spacing: sm (≥576px) */
@media (min-width: 576px) {
	

	

	

	

	

	

	

	

	

	.mt-sm-3 {
		margin-top: 1rem !important;
	}

	

	

	.mb-sm-0 {
		margin-bottom: 0 !important;
	}

	

	

	

	.mb-sm-4 {
		margin-bottom: 1.5rem !important;
	}

	.mb-sm-5 {
		margin-bottom: 3rem !important;
	}

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	.p-sm-0 {
		padding: 0 !important;
	}

	

	.p-sm-2 {
		padding: 0.5rem !important;
	}

	

	.p-sm-4 {
		padding: 1.5rem !important;
	}

	.p-sm-5 {
		padding: 3rem !important;
	}

	

	

	.pt-sm-2 {
		padding-top: 0.5rem !important;
	}

	

	

	.pt-sm-5 {
		padding-top: 3rem !important;
	}

	.pb-sm-0 {
		padding-bottom: 0 !important;
	}

	

	

	.pb-sm-3 {
		padding-bottom: 1rem !important;
	}

	

	

	.ps-sm-0 {
		padding-left: 0 !important;
	}

	.ps-sm-1 {
		padding-left: 0.25rem !important;
	}

	

	.ps-sm-3 {
		padding-left: 1rem !important;
	}

	.ps-sm-4 {
		padding-left: 1.5rem !important;
	}

	.ps-sm-5 {
		padding-left: 3rem !important;
	}

	.pe-sm-0 {
		padding-right: 0 !important;
	}

	

	

	.pe-sm-3 {
		padding-right: 1rem !important;
	}

	.pe-sm-4 {
		padding-right: 1.5rem !important;
	}

	.pe-sm-5 {
		padding-right: 3rem !important;
	}

	.px-sm-0 {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	

	.px-sm-2 {
		padding-left: 0.5rem !important;
		padding-right: 0.5rem !important;
	}

	.px-sm-3 {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}

	.px-sm-4 {
		padding-left: 1.5rem !important;
		padding-right: 1.5rem !important;
	}

	

	.py-sm-0 {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	

	

	

	

	.py-sm-5 {
		padding-top: 3rem !important;
		padding-bottom: 3rem !important;
	}
}

/* Spacing: md (≥768px) */
@media (min-width: 768px) {
	

	

	

	

	

	

	

	

	

	

	

	

	.mb-md-0 {
		margin-bottom: 0 !important;
	}

	

	

	

	

	.mb-md-5 {
		margin-bottom: 3rem !important;
	}

	

	

	

	

	.my-md-4 {
		margin-top: 1.5rem !important;
		margin-bottom: 1.5rem !important;
	}

	

	

	

	

	

	

	

	

	

	

	

	.pt-md-4 {
		padding-top: 1.5rem !important;
	}

	.pt-md-5 {
		padding-top: 3rem !important;
	}

	

	

	

	

	.pb-md-4 {
		padding-bottom: 1.5rem !important;
	}

	

	.ps-md-0 {
		padding-left: 0 !important;
	}

	

	

	.ps-md-3 {
		padding-left: 1rem !important;
	}

	.ps-md-4 {
		padding-left: 1.5rem !important;
	}

	.ps-md-5 {
		padding-left: 3rem !important;
	}

	.pe-md-0 {
		padding-right: 0 !important;
	}

	

	

	.pe-md-3 {
		padding-right: 1rem !important;
	}

	

	.pe-md-5 {
		padding-right: 3rem !important;
	}

	.pe-md-6 {
		padding-right: 5rem !important;
	}

	.px-md-0 {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	

	.px-md-2 {
		padding-left: 0.5rem !important;
		padding-right: 0.5rem !important;
	}

	.px-md-3 {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}

	.px-md-4 {
		padding-left: 1.5rem !important;
		padding-right: 1.5rem !important;
	}

	.px-md-5 {
		padding-left: 3rem !important;
		padding-right: 3rem !important;
	}

	

	

	

	

	.py-md-4 {
		padding-top: 1.5rem !important;
		padding-bottom: 1.5rem !important;
	}

	
}

/* Spacing: lg (≥992px) */
@media (min-width: 992px) {
	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	.mb-lg-5 {
		margin-bottom: 3rem !important;
	}

	

	

	

	

	

	

	

	

	

	

	

	.p-lg-5 {
		padding: 3rem !important;
	}

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	

	.ps-lg-3 {
		padding-left: 1rem !important;
	}

	

	

	

	

	

	

	

	

	.px-lg-0 {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	

	

	

	.px-lg-4 {
		padding-left: 1.5rem !important;
		padding-right: 1.5rem !important;
	}

	

	

	

	

	

	

	
}

/* Spacing: xl (≥1200px) */


/* Spacing: xxl (≥1400px) */


/* Sizing */
.w-100 {
	width: 100% !important;
}

.d-grid>.w-100 {
	grid-column: 1 / -1;
}

.h-100 {
	height: 100% !important;
}

/* Text */
.text-start {
	text-align: left !important;
}

.text-center {
	text-align: center !important;
}

.text-end {
	text-align: right !important;
}

.text-decoration-none {
	text-decoration: none !important;
}

.text-muted {
	color: #6c757d !important;
}

.text-white {
	color: #fff !important;
}

.fw-bold {
	font-weight: 700 !important;
}

.fst-italic {
	font-style: italic !important;
}

.ff-noto-serif {
	font-family: 'Noto Serif JP', serif !important;
}

.small {
	font-size: 0.875em !important;
}

.fs-3 {
	font-size: 1rem !important;
}

.fs-5 {
	font-size: 1.25rem !important;
}

.fs-6 {
	font-size: 1rem !important;
}

.lh-lg {
	line-height: 1.75 !important;
}

.text-sm-nowrap {
	white-space: nowrap !important;
}

@media (min-width: 576px) {
	.text-sm-nowrap {
		white-space: nowrap !important;
	}

	.text-sm-end {
		text-align: right !important;
	}
}

/* Display typography */
.display-6 {
	font-size: calc(1.375rem + 1.5vw);
	font-weight: 300;
	line-height: 1.2;
}

@media (min-width: 1200px) {
	.display-6 {
		font-size: 2.5rem;
	}
}

/* Z-index */
.z-1 {
	z-index: 1 !important;
}

.z-2 {
	z-index: 2 !important;
}


.bg-d-navy {
	background-color: var(--bs-d-navy) !important;
}

.bg-secondary {
	background-color: var(--bs-secondary) !important;
}

.bg-light {
	background-color: var(--bs-light) !important;
}

.bg-white {
	background-color: #fff !important;
}

.bg-black {
	background-color: #000 !important;
}

.bg-wine-red {
	background-color: #cf2030 !important;
}

.bg-pink {
	background-color: #FAE7E8 !important;
}

.bg-grey {
	background-color: #F2F2F2 !important;
}

/* Text color */
.text-black {
	color: #1E1E23 !important;
}

.text-wine-red {
	color: #cf2030 !important;
}

.text-d-navy {
	color: #424D5D !important;
}

.text-grey {
	color: #F2F2F2 !important;
}

/* Border */
.border-wine-red {
	border-color: #cf2030 !important;
	border-top-color: #cf2030 !important;
}

.border-white {
	border-top-width: 0.175rem !important;
	border-top-color: #fff !important;
}

.border-left {
	border-left: solid 0.175rem;
}

.border-end {
	border-right: 1px solid var(--bs-border-color, #dee2e6) !important;
}

.border-wine-red.pb-1 {
	border-bottom: solid 0.15rem #CF2030;
}

/* Font size (fs-*) */


.fs-14 {
	font-size: 0.7rem !important;
	line-height: unset !important;
}

.fs-16 {
	font-size: 0.8rem !important;
	line-height: unset !important;
}

.fs-18 {
	font-size: 0.9rem !important;
	line-height: unset !important;
}

.fs-24 {
	font-size: 1.2rem !important;
	line-height: unset !important;
}

.fs-27 {
	font-size: 1.35rem !important;
	line-height: unset !important;
}

.fs-32 {
	font-size: 1.6rem !important;
	line-height: unset !important;
}
.fs-32.ps-160,
.fs-32.pe-160 {
	font-size: 1rem !important;
}

.fs-36 {
	font-size: 1.8rem !important;
	line-height: unset !important;
}
@media (max-width: 576px) {
	.fs-32 {
		font-size: 1.2rem !important;
		line-height: unset !important;
	}
	.fs-36 {
		font-size: 1.3rem !important;
		line-height: unset !important;
	}
	.fs-75 {
		font-size: 2.75rem !important;
		line-height: unset !important;
	}
	.fs-100 {
		font-size: 3.75rem !important;
		line-height: unset !important;
	}
}

.fs-50 {
	font-size: 2.5rem !important;
	line-height: unset !important;
}

.fs-60 {
	font-size: 3rem !important;
	line-height: 100%;
}

.fs-75 {
	font-size: 3.75rem;
	line-height: unset !important;
}

.fs-80 {
	font-size: 4rem;
	line-height: 100%;
}

.fs-100 {
	font-size: 5rem;
	line-height: unset !important;
}

/* Line height / letter-spacing */
.lh-110 {
	line-height: 110% !important;
}

.ls-n-05 {
	letter-spacing: -0.04rem;
}

/* Max width (mw-*) */


.mw-100 {
	max-width: 100% !important;
}

.mw-25p {
	max-width: 25% !important;
}

.mw-65p {
	max-width: 65% !important;
}

.mw-490 {
	max-width: 24.5rem;
}

.mw-980 {
	max-width: 49rem;
}

.mw-650 {
	max-width: 32.5rem;
}

.mw-1200 {
	max-width: 60rem !important;
	margin: auto;
}

@media (max-width: 576px) {
	.ps-160{
		padding-left: 0 !important;
	}
	.pe-160{
		padding-right: 0 !important;
	}

	h3.ps-160 {
		padding-left: 4rem !important;
	}

	h3.pe-160 {
		padding-right: 0 !important;
	}

	.mw-65p {
		max-width: 72% !important;
	}
}

@media (min-width: 577px) {
	.text-sm-nowrap {
		white-space: nowrap;
	}
}

/* Flex */
.flex-column {
	flex-direction: column !important;
}

/* Font */
.ff-arial {
	font-family: Arial, sans-serif;
}

.font-black {
	font-family: 'Arial Black', 'Arial', 'Verdana Bold', 'Trebuchet MS Bold', 'Helvetica Bold', 'Geneva Bold', sans-serif !important;
}

/* Sizing */
.w-250 {
	width: 38.46%;
	max-width: 100%;
}

/* Misc utilities */
.mt-n-5 {
	margin-top: -2rem;
}

.under-line-red {
	border-bottom: solid 0.1rem #cf2030;
}

.under-line-white {
	border-bottom: solid 0.1rem white;
}

@media only screen and (max-device-width: 767px) and (-webkit-device-pixel-ratio: 2) {
	.font-black {
		font-family: arial !important;
		-webkit-text-stroke-width: 0.1rem;
		text-stroke-width: 0.1rem;
		font-weight: bolder !important;
	}
}

/* Border */


.rounded-top {
	border-top-left-radius: var(--bs-border-radius) !important;
	border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-end {
	border-top-right-radius: var(--bs-border-radius) !important;
	border-bottom-right-radius: var(--bs-border-radius) !important;
}


.rounded-pill {
	border-radius: 50rem !important;
}

/* Shadow */
.shadow-sm {
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

/* Ratio */
.ratio {
	position: relative;
	width: 100%;
}

.ratio::before {
	display: block;
	padding-top: var(--bs-aspect-ratio);
	content: "";
}

.ratio>* {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ratio-16x9 {
	--bs-aspect-ratio: 56.25%;
}

/* Align */
.align-bottom {
	vertical-align: bottom !important;
}

/* col-xs-12, col-sm-12, col-md-12 (BS4 compat) */
.col-xs-12,
.col-sm-12,
.col-md-12 {
	flex: 0 0 auto;
	width: 100%;
}

/* Bootstrap Icons - box-arrow-up-right のみ（bi bi-box-arrow-up-right）currentColor継承 */
.bi {
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: -0.125em;
	background-color: currentColor;
	mask-size: 1em 1em;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: 1em 1em;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.bi-box-arrow-up-right {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='black' fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5'/%3E%3Cpath fill='black' fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='black' fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5'/%3E%3Cpath fill='black' fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h3.793L6.146 9.146a.5.5 0 1 0 .708.708L15 1.707V5.5a.5.5 0 0 0 1 0z'/%3E%3C/svg%3E");
}
.bi-check2-square {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M3 14.5A1.5 1.5 0 0 1 1.5 13V3A1.5 1.5 0 0 1 3 1.5h8a.5.5 0 0 1 0 1H3a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V8a.5.5 0 0 1 1 0v5a1.5 1.5 0 0 1-1.5 1.5z'/%3E%3Cpath fill='black' d='m8.354 10.354 7-7a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M3 14.5A1.5 1.5 0 0 1 1.5 13V3A1.5 1.5 0 0 1 3 1.5h8a.5.5 0 0 1 0 1H3a.5.5 0 0 0-.5.5v10a.5.5 0 0 0 .5.5h10a.5.5 0 0 0 .5-.5V8a.5.5 0 0 1 1 0v5a1.5 1.5 0 0 1-1.5 1.5z'/%3E%3Cpath fill='black' d='m8.354 10.354 7-7a.5.5 0 0 0-.708-.708L8 9.293 5.354 6.646a.5.5 0 1 0-.708.708l3 3a.5.5 0 0 0 .708 0'/%3E%3C/svg%3E");
}

/* Collaboration Partners: ロゴは正方形エリア（グリッド本体は d-grid + gap-3 + g-cols-*） */
.collab-partner-logo-wrap {
	background-color: #eaeaea;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	width: 100%;
	box-sizing: border-box;
}

.collab-partner-logo-img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}