@charset "UTF-8";

.text-green {
   color: var(--key-grn);
}

.text-blue {
   color: var(--key-blue) !important;
}

/* ============================================================ 

# ルール

クラス名は、Tailswind.cssに合わせる

https://tailwindcss.com/docs/installation/using-vite

これにより、CSSの命名ルールを統一する

欲しいユーティリティがTailswind.cssにない場合は、Bootstrapに合わせる

============================================================ */

:root {
  /* スペーシング基準 (1 = 0.25rem = 4px) */
  --spacing: 0.25rem;
}

/* ============================================================
   レイアウト
   ============================================================ */

/* Display */
.block       { display: block !important; }
.inline-block { display: inline-block !important; }
.inline      { display: inline !important; }
.flex        { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.grid        { display: grid !important; }
.inline-grid { display: inline-grid !important; }
.hidden      { display: none !important; }

/* Flexbox */
.flex-row         { flex-direction: row !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-col         { flex-direction: column !important; }
.flex-col-reverse { flex-direction: column-reverse !important; }

.flex-wrap         { flex-wrap: wrap !important; }
.flex-nowrap       { flex-wrap: nowrap !important; }
.flex-wrap-reverse { flex-wrap: wrap-reverse !important; }

.flex-1      { flex: 1 1 0% !important; }
.flex-auto   { flex: 1 1 auto !important; }
.flex-none   { flex: none !important; }
.flex-shrink { flex-shrink: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-grow   { flex-grow: 1 !important; }
.flex-grow-0 { flex-grow: 0 !important; }

/* Justify Content */
.justify-start   { justify-content: flex-start !important; }
.justify-end     { justify-content: flex-end !important; }
.justify-center  { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-around  { justify-content: space-around !important; }
.justify-evenly  { justify-content: space-evenly !important; }

/* Align Items */
.items-start    { align-items: flex-start !important; }
.items-end      { align-items: flex-end !important; }
.items-center   { align-items: center !important; }
.items-baseline { align-items: baseline !important; }
.items-stretch  { align-items: stretch !important; }

/* Align Self */
.self-auto    { align-self: auto !important; }
.self-start   { align-self: flex-start !important; }
.self-end     { align-self: flex-end !important; }
.self-center  { align-self: center !important; }
.self-stretch { align-self: stretch !important; }

/* Align Content */
.content-start   { align-content: flex-start !important; }
.content-end     { align-content: flex-end !important; }
.content-center  { align-content: center !important; }
.content-between { align-content: space-between !important; }
.content-around  { align-content: space-around !important; }

/* Gap */
.gap-0   { gap: 0 !important; }
.gap-1   { gap: 0.25rem !important; }
.gap-2   { gap: 0.5rem !important; }
.gap-3   { gap: 0.75rem !important; }
.gap-4   { gap: 1rem !important; }
.gap-5   { gap: 1.25rem !important; }
.gap-6   { gap: 1.5rem !important; }
.gap-8   { gap: 2rem !important; }
.gap-10  { gap: 2.5rem !important; }
.gap-12  { gap: 3rem !important; }
.gap-16  { gap: 4rem !important; }
.gap-20  { gap: 5rem !important; }
.gap-24  { gap: 6rem !important; }
.gap-x-0  { column-gap: 0 !important; }
.gap-x-1  { column-gap: 0.25rem !important; }
.gap-x-2  { column-gap: 0.5rem !important; }
.gap-x-3  { column-gap: 0.75rem !important; }
.gap-x-4  { column-gap: 1rem !important; }
.gap-x-6  { column-gap: 1.5rem !important; }
.gap-x-8  { column-gap: 2rem !important; }
.gap-y-0  { row-gap: 0 !important; }
.gap-y-1  { row-gap: 0.25rem !important; }
.gap-y-2  { row-gap: 0.5rem !important; }
.gap-y-3  { row-gap: 0.75rem !important; }
.gap-y-4  { row-gap: 1rem !important; }
.gap-y-6  { row-gap: 1.5rem !important; }
.gap-y-8  { row-gap: 2rem !important; }

/* Grid */
.grid-cols-1  { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.grid-cols-5  { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
.grid-cols-6  { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }
.grid-cols-none { grid-template-columns: none !important; }

.col-auto      { grid-column: auto !important; }
.col-span-1    { grid-column: span 1 / span 1 !important; }
.col-span-2    { grid-column: span 2 / span 2 !important; }
.col-span-3    { grid-column: span 3 / span 3 !important; }
.col-span-4    { grid-column: span 4 / span 4 !important; }
.col-span-6    { grid-column: span 6 / span 6 !important; }
.col-span-full { grid-column: 1 / -1 !important; }

.grid-rows-1 { grid-template-rows: repeat(1, minmax(0, 1fr)) !important; }
.grid-rows-2 { grid-template-rows: repeat(2, minmax(0, 1fr)) !important; }
.grid-rows-3 { grid-template-rows: repeat(3, minmax(0, 1fr)) !important; }
.grid-rows-4 { grid-template-rows: repeat(4, minmax(0, 1fr)) !important; }

.row-span-1    { grid-row: span 1 / span 1 !important; }
.row-span-2    { grid-row: span 2 / span 2 !important; }
.row-span-3    { grid-row: span 3 / span 3 !important; }
.row-span-full { grid-row: 1 / -1 !important; }

/* Position */
.static   { position: static !important; }
.fixed    { position: fixed !important; }
.absolute { position: absolute !important; }
.relative { position: relative !important; }
.sticky   { position: sticky !important; }

/* Inset */
.inset-0    { top: 0; right: 0; bottom: 0; left: 0 !important; }
.inset-auto { top: auto; right: auto; bottom: auto; left: auto !important; }
.inset-x-0  { left: 0; right: 0 !important; }
.inset-y-0  { top: 0; bottom: 0 !important; }
.top-0      { top: 0 !important; }
.top-auto   { top: auto !important; }
.right-0    { right: 0 !important; }
.right-auto { right: auto !important; }
.bottom-0   { bottom: 0 !important; }
.bottom-auto { bottom: auto !important; }
.left-0     { left: 0 !important; }
.left-auto  { left: auto !important; }

/* Z-index */
.z-0    { z-index: 0 !important; }
.z-10   { z-index: 10 !important; }
.z-20   { z-index: 20 !important; }
.z-30   { z-index: 30 !important; }
.z-40   { z-index: 40 !important; }
.z-50   { z-index: 50 !important; }
.z-auto { z-index: auto !important; }

/* Overflow */
.overflow-auto    { overflow: auto !important; }
.overflow-hidden  { overflow: hidden !important; }
.overflow-visible { overflow: visible !important; }
.overflow-scroll  { overflow: scroll !important; }
.overflow-x-auto  { overflow-x: auto !important; }
.overflow-x-hidden { overflow-x: hidden !important; }
.overflow-y-auto  { overflow-y: auto !important; }
.overflow-y-hidden { overflow-y: hidden !important; }
.overflow-y-scroll { overflow-y: scroll !important; }




/* ============================================================
   スペーシング（Margin / Padding）
   ============================================================ */

/* Margin */
.m-0    { margin: 0 !important; }
.m-1    { margin: 0.25rem !important; }
.m-2    { margin: 0.5rem !important; }
.m-3    { margin: 0.75rem !important; }
.m-4    { margin: 1rem !important; }
.m-5    { margin: 1.25rem !important; }
.m-6    { margin: 1.5rem !important; }
.m-8    { margin: 2rem !important; }
.m-10   { margin: 2.5rem !important; }
.m-12   { margin: 3rem !important; }
.m-16   { margin: 4rem !important; }
.m-20   { margin: 5rem !important; }
.m-24   { margin: 6rem !important; }
.m-auto { margin: auto !important; }

.mx-0    { margin-left: 0; margin-right: 0 !important; }
.mx-1    { margin-left: 0.25rem; margin-right: 0.25rem !important; }
.mx-2    { margin-left: 0.5rem; margin-right: 0.5rem !important; }
.mx-3    { margin-left: 0.75rem; margin-right: 0.75rem !important; }
.mx-4    { margin-left: 1rem; margin-right: 1rem !important; }
.mx-6    { margin-left: 1.5rem; margin-right: 1.5rem !important; }
.mx-8    { margin-left: 2rem; margin-right: 2rem !important; }
.mx-auto { margin-left: auto; margin-right: auto !important; }

.my-0    { margin-top: 0; margin-bottom: 0 !important; }
.my-1    { margin-top: 0.25rem; margin-bottom: 0.25rem !important; }
.my-2    { margin-top: 0.5rem; margin-bottom: 0.5rem !important; }
.my-3    { margin-top: 0.75rem; margin-bottom: 0.75rem !important; }
.my-4    { margin-top: 1rem; margin-bottom: 1rem !important; }
.my-6    { margin-top: 1.5rem; margin-bottom: 1.5rem !important; }
.my-8    { margin-top: 2rem; margin-bottom: 2rem !important; }
.my-auto { margin-top: auto; margin-bottom: 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: 0.75rem !important; }
.mt-4    { margin-top: 1rem !important; }
.mt-5    { margin-top: 1.25rem !important; }
.mt-6    { margin-top: 1.5rem !important; }
.mt-8    { margin-top: 2rem !important; }
.mt-10   { margin-top: 2.5rem !important; }
.mt-12   { margin-top: 3rem !important; }
.mt-16   { margin-top: 4rem !important; }
.mt-20   { margin-top: 5rem !important; }
.mt-24   { margin-top: 6rem !important; }
.mt-auto { margin-top: auto !important; }

.mr-0    { margin-right: 0 !important; }
.mr-1    { margin-right: 0.25rem !important; }
.mr-2    { margin-right: 0.5rem !important; }
.mr-3    { margin-right: 0.75rem !important; }
.mr-4    { margin-right: 1rem !important; }
.mr-6    { margin-right: 1.5rem !important; }
.mr-8    { margin-right: 2rem !important; }
.mr-auto { margin-right: auto !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: 0.75rem !important; }
.mb-4    { margin-bottom: 1rem !important; }
.mb-5    { margin-bottom: 1.25rem !important; }
.mb-6    { margin-bottom: 1.5rem !important; }
.mb-8    { margin-bottom: 2rem !important; }
.mb-10   { margin-bottom: 2.5rem !important; }
.mb-12   { margin-bottom: 3rem !important; }
.mb-16   { margin-bottom: 4rem !important; }
.mb-auto { margin-bottom: auto !important; }

.ml-0    { margin-left: 0 !important; }
.ml-1    { margin-left: 0.25rem !important; }
.ml-2    { margin-left: 0.5rem !important; }
.ml-3    { margin-left: 0.75rem !important; }
.ml-4    { margin-left: 1rem !important; }
.ml-6    { margin-left: 1.5rem !important; }
.ml-8    { margin-left: 2rem !important; }
.ml-auto { margin-left: auto !important; }

/* Negative Margin */
.-m-1  { margin: -0.25rem !important; }
.-m-2  { margin: -0.5rem !important; }
.-m-4  { margin: -1rem !important; }
.-mt-1 { margin-top: -0.25rem !important; }
.-mt-2 { margin-top: -0.5rem !important; }
.-mt-4 { margin-top: -1rem !important; }
.-mb-1 { margin-bottom: -0.25rem !important; }
.-mb-2 { margin-bottom: -0.5rem !important; }
.-mb-4 { margin-bottom: -1rem !important; }
.-ml-1 { margin-left: -0.25rem !important; }
.-ml-2 { margin-left: -0.5rem !important; }
.-ml-4 { margin-left: -1rem !important; }
.-mr-1 { margin-right: -0.25rem !important; }
.-mr-2 { margin-right: -0.5rem !important; }
.-mr-4 { margin-right: -1rem !important; }

/* Padding */
.p-0   { padding: 0 !important; }
.p-1   { padding: 0.25rem !important; }
.p-2   { padding: 0.5rem !important; }
.p-3   { padding: 0.75rem !important; }
.p-4   { padding: 1rem !important; }
.p-5   { padding: 1.25rem !important; }
.p-6   { padding: 1.5rem !important; }
.p-8   { padding: 2rem !important; }
.p-10  { padding: 2.5rem !important; }
.p-12  { padding: 3rem !important; }
.p-16  { padding: 4rem !important; }
.p-20  { padding: 5rem !important; }
.p-24  { padding: 6rem !important; }

.px-0  { padding-left: 0; padding-right: 0 !important; }
.px-1  { padding-left: 0.25rem; padding-right: 0.25rem !important; }
.px-2  { padding-left: 0.5rem; padding-right: 0.5rem !important; }
.px-3  { padding-left: 0.75rem; padding-right: 0.75rem !important; }
.px-4  { padding-left: 1rem; padding-right: 1rem !important; }
.px-5  { padding-left: 1.25rem; padding-right: 1.25rem !important; }
.px-6  { padding-left: 1.5rem; padding-right: 1.5rem !important; }
.px-8  { padding-left: 2rem; padding-right: 2rem !important; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem !important; }
.px-12 { padding-left: 3rem; padding-right: 3rem !important; }

.py-0  { padding-top: 0; padding-bottom: 0 !important; }
.py-1  { padding-top: 0.25rem; padding-bottom: 0.25rem !important; }
.py-2  { padding-top: 0.5rem; padding-bottom: 0.5rem !important; }
.py-3  { padding-top: 0.75rem; padding-bottom: 0.75rem !important; }
.py-4  { padding-top: 1rem; padding-bottom: 1rem !important; }
.py-5  { padding-top: 1.25rem; padding-bottom: 1.25rem !important; }
.py-6  { padding-top: 1.5rem; padding-bottom: 1.5rem !important; }
.py-8  { padding-top: 2rem; padding-bottom: 2rem !important; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem !important; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem !important; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem !important; }

.pt-0  { padding-top: 0 !important; }
.pt-1  { padding-top: 0.25rem !important; }
.pt-2  { padding-top: 0.5rem !important; }
.pt-3  { padding-top: 0.75rem !important; }
.pt-4  { padding-top: 1rem !important; }
.pt-6  { padding-top: 1.5rem !important; }
.pt-8  { padding-top: 2rem !important; }
.pt-10 { padding-top: 2.5rem !important; }
.pt-12 { padding-top: 3rem !important; }
.pt-16 { padding-top: 4rem !important; }

.pr-0  { padding-right: 0 !important; }
.pr-1  { padding-right: 0.25rem !important; }
.pr-2  { padding-right: 0.5rem !important; }
.pr-3  { padding-right: 0.75rem !important; }
.pr-4  { padding-right: 1rem !important; }
.pr-6  { padding-right: 1.5rem !important; }
.pr-8  { padding-right: 2rem !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: 0.75rem !important; }
.pb-4  { padding-bottom: 1rem !important; }
.pb-6  { padding-bottom: 1.5rem !important; }
.pb-8  { padding-bottom: 2rem !important; }
.pb-10 { padding-bottom: 2.5rem !important; }
.pb-12 { padding-bottom: 3rem !important; }
.pb-16 { padding-bottom: 4rem !important; }

.pl-0  { padding-left: 0 !important; }
.pl-1  { padding-left: 0.25rem !important; }
.pl-2  { padding-left: 0.5rem !important; }
.pl-3  { padding-left: 0.75rem !important; }
.pl-4  { padding-left: 1rem !important; }
.pl-6  { padding-left: 1.5rem !important; }
.pl-8  { padding-left: 2rem !important; }


/* ============================================================
   サイズ（Width / Height）
   ============================================================ */

/* Width */
.w-0       { width: 0 !important; }
.w-px      { width: 1px !important; }
.w-0\.5    { width: 0.125rem !important; }
.w-1       { width: 0.25rem !important; }
.w-2       { width: 0.5rem !important; }
.w-3       { width: 0.75rem !important; }
.w-4       { width: 1rem !important; }
.w-5       { width: 1.25rem !important; }
.w-6       { width: 1.5rem !important; }
.w-8       { width: 2rem !important; }
.w-10      { width: 2.5rem !important; }
.w-12      { width: 3rem !important; }
.w-16      { width: 4rem !important; }
.w-20      { width: 5rem !important; }
.w-24      { width: 6rem !important; }
.w-32      { width: 8rem !important; }
.w-40      { width: 10rem !important; }
.w-48      { width: 12rem !important; }
.w-56      { width: 14rem !important; }
.w-64      { width: 16rem !important; }
.w-72      { width: 18rem !important; }
.w-80      { width: 20rem !important; }
.w-96      { width: 24rem !important; }
.w-auto    { width: auto !important; }
.w-1\/2    { width: 50% !important; }
.w-1\/3    { width: 33.333333% !important; }
.w-2\/3    { width: 66.666667% !important; }
.w-1\/4    { width: 25% !important; }
.w-2\/4    { width: 50% !important; }
.w-3\/4    { width: 75% !important; }
.w-1\/5    { width: 20% !important; }
.w-2\/5    { width: 40% !important; }
.w-3\/5    { width: 60% !important; }
.w-4\/5    { width: 80% !important; }
.w-full    { width: 100% !important; }
.w-screen  { width: 100vw !important; }
.w-min     { width: min-content !important; }
.w-max     { width: max-content !important; }
.w-fit     { width: fit-content !important; }

/* Min/Max Width */
.min-w-0      { min-width: 0 !important; }
.min-w-full   { min-width: 100% !important; }
.min-w-min    { min-width: min-content !important; }
.min-w-max    { min-width: max-content !important; }
.max-w-none   { max-width: none !important; }
.max-w-xs     { max-width: 20rem !important; }
.max-w-sm     { max-width: 24rem !important; }
.max-w-md     { max-width: 28rem !important; }
.max-w-lg     { max-width: 32rem !important; }
.max-w-xl     { max-width: 36rem !important; }
.max-w-2xl    { max-width: 42rem !important; }
.max-w-3xl    { max-width: 48rem !important; }
.max-w-4xl    { max-width: 56rem !important; }
.max-w-5xl    { max-width: 64rem !important; }
.max-w-6xl    { max-width: 72rem !important; }
.max-w-7xl    { max-width: 80rem !important; }
.max-w-full   { max-width: 100% !important; }
.max-w-screen { max-width: 100vw !important; }
.max-w-prose  { max-width: 65ch !important; }

/* Height */
.h-0       { height: 0 !important; }
.h-px      { height: 1px !important; }
.h-0\.5    { height: 0.125rem !important; }
.h-1       { height: 0.25rem !important; }
.h-2       { height: 0.5rem !important; }
.h-3       { height: 0.75rem !important; }
.h-4       { height: 1rem !important; }
.h-5       { height: 1.25rem !important; }
.h-6       { height: 1.5rem !important; }
.h-8       { height: 2rem !important; }
.h-10      { height: 2.5rem !important; }
.h-12      { height: 3rem !important; }
.h-16      { height: 4rem !important; }
.h-20      { height: 5rem !important; }
.h-24      { height: 6rem !important; }
.h-32      { height: 8rem !important; }
.h-40      { height: 10rem !important; }
.h-48      { height: 12rem !important; }
.h-56      { height: 14rem !important; }
.h-64      { height: 16rem !important; }
.h-auto    { height: auto !important; }
.h-1\/2    { height: 50% !important; }
.h-1\/3    { height: 33.333333% !important; }
.h-2\/3    { height: 66.666667% !important; }
.h-1\/4    { height: 25% !important; }
.h-3\/4    { height: 75% !important; }
.h-full    { height: 100% !important; }
.h-screen  { height: 100vh !important; }
.h-svh     { height: 100svh !important; }
.h-dvh     { height: 100dvh !important; }

/* Min/Max Height */
.min-h-0       { min-height: 0 !important; }
.min-h-full    { min-height: 100% !important; }
.min-h-screen  { min-height: 100vh !important; }
.min-h-svh     { min-height: 100svh !important; }
.min-h-dvh     { min-height: 100dvh !important; }
.max-h-full    { max-height: 100% !important; }
.max-h-screen  { max-height: 100vh !important; }

/* Aspect Ratio */
.aspect-auto    { aspect-ratio: auto !important; }
.aspect-square  { aspect-ratio: 1 / 1 !important; }
.aspect-video   { aspect-ratio: 16 / 9 !important; }


/* ============================================================
   タイポグラフィ
   ============================================================ */

/* Font Size */
.text-xs   { font-size: 0.75rem;  line-height: 1rem !important; }
.text-sm   { font-size: 0.875rem; line-height: 1.25rem !important; }
.text-base { font-size: 1rem;     line-height: 1.5rem !important; }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem !important; }
.text-xl   { font-size: 1.25rem;  line-height: 1.75rem !important; }
.text-2xl  { font-size: 1.5rem;   line-height: 2rem !important; }
.text-3xl  { font-size: 1.875rem; line-height: 2.25rem !important; }
.text-4xl  { font-size: 2.25rem;  line-height: 2.5rem !important; }
.text-5xl  { font-size: 3rem;     line-height: 1 !important; }
.text-6xl  { font-size: 3.75rem;  line-height: 1 !important; }
.text-7xl  { font-size: 4.5rem;   line-height: 1 !important; }
.text-8xl  { font-size: 6rem;     line-height: 1 !important; }
.text-9xl  { font-size: 8rem;     line-height: 1 !important; }

/* Font Weight */
.font-thin        { font-weight: 100 !important; }
.font-extralight  { font-weight: 200 !important; }
.font-light       { font-weight: 300 !important; }
.font-normal      { font-weight: 400 !important; }
.font-medium      { font-weight: 500 !important; }
.font-semibold    { font-weight: 600 !important; }
.font-bold        { font-weight: 700 !important; }
.font-extrabold   { font-weight: 800 !important; }
.font-black       { font-weight: 900 !important; }

/* Font Style */
.italic     { font-style: italic !important; }
.not-italic { font-style: normal !important; }

/* Line Height */
.leading-none     { line-height: 1 !important; }
.leading-tight    { line-height: 1.25 !important; }
.leading-snug     { line-height: 1.375 !important; }
.leading-normal   { line-height: 1.5 !important; }
.leading-relaxed  { line-height: 1.625 !important; }
.leading-loose    { line-height: 2 !important; }
.leading-3        { line-height: 0.75rem !important; }
.leading-4        { line-height: 1rem !important; }
.leading-5        { line-height: 1.25rem !important; }
.leading-6        { line-height: 1.5rem !important; }
.leading-7        { line-height: 1.75rem !important; }
.leading-8        { line-height: 2rem !important; }
.leading-9        { line-height: 2.25rem !important; }
.leading-10       { line-height: 2.5rem !important; }

/* Letter Spacing */
.tracking-tighter { letter-spacing: -0.05em !important; }
.tracking-tight   { letter-spacing: -0.025em !important; }
.tracking-normal  { letter-spacing: 0em !important; }
.tracking-wide    { letter-spacing: 0.025em !important; }
.tracking-wider   { letter-spacing: 0.05em !important; }
.tracking-widest  { letter-spacing: 0.1em !important; }

/* Text Align */
.text-left    { text-align: left !important; }
.text-center  { text-align: center !important; }
.text-right   { text-align: right !important; }
.text-justify { text-align: justify !important; }
.text-start   { text-align: start !important; }
.text-end     { text-align: end !important; }

/* Text Transform */
.uppercase   { text-transform: uppercase !important; }
.lowercase   { text-transform: lowercase !important; }
.capitalize  { text-transform: capitalize !important; }
.normal-case { text-transform: none !important; }

/* Text Decoration */
.underline         { text-decoration-line: underline !important; }
.overline          { text-decoration-line: overline !important; }
.line-through      { text-decoration-line: line-through !important; }
.no-underline      { text-decoration-line: none !important; }

/* Text Overflow */
.truncate          { overflow: hidden; text-overflow: ellipsis; white-space: nowrap !important; }
.text-ellipsis     { text-overflow: ellipsis !important; }
.text-clip         { text-overflow: clip !important; }
.overflow-ellipsis { text-overflow: ellipsis !important; }

/* Whitespace */
.whitespace-normal   { white-space: normal !important; }
.whitespace-nowrap   { white-space: nowrap !important; }
.whitespace-pre      { white-space: pre !important; }
.whitespace-pre-line { white-space: pre-line !important; }
.whitespace-pre-wrap { white-space: pre-wrap !important; }

/* Word Break */
.break-normal { overflow-wrap: normal; word-break: normal !important; }
.break-words  { overflow-wrap: break-word !important; }
.break-all    { word-break: break-all !important; }
.break-keep   { word-break: keep-all !important; }

/* Vertical Align */
.align-baseline    { vertical-align: baseline !important; }
.align-top         { vertical-align: top !important; }
.align-middle      { vertical-align: middle !important; }
.align-bottom      { vertical-align: bottom !important; }
.align-text-top    { vertical-align: text-top !important; }
.align-text-bottom { vertical-align: text-bottom !important; }


/* ============================================================
   ボーダー
   ============================================================ */

/* Border Width */
.border-0  { border-width: 0 !important; }
.border    { border-width: 1px !important; }
.border-2  { border-width: 2px !important; }
.border-4  { border-width: 4px !important; }
.border-8  { border-width: 8px !important; }

.border-t-0 { border-top-width: 0 !important; }
.border-t   { border-top-width: 1px !important; }
.border-t-2 { border-top-width: 2px !important; }
.border-t-4 { border-top-width: 4px !important; }

.border-r-0 { border-right-width: 0 !important; }
.border-r   { border-right-width: 1px !important; }
.border-r-2 { border-right-width: 2px !important; }

.border-b-0 { border-bottom-width: 0 !important; }
.border-b   { border-bottom-width: 1px !important; }
.border-b-2 { border-bottom-width: 2px !important; }
.border-b-4 { border-bottom-width: 4px !important; }

.border-l-0 { border-left-width: 0 !important; }
.border-l   { border-left-width: 1px !important; }
.border-l-2 { border-left-width: 2px !important; }
.border-l-4 { border-left-width: 4px !important; }

/* Border Style */
.border-solid  { border-style: solid !important; }
.border-dashed { border-style: dashed !important; }
.border-dotted { border-style: dotted !important; }
.border-double { border-style: double !important; }
.border-none   { border-style: none !important; }

/* Border Radius */
.rounded-none   { border-radius: 0 !important; }
.rounded-sm     { border-radius: 0.125rem !important; }
.rounded        { border-radius: 0.25rem !important; }
.rounded-md     { border-radius: 0.375rem !important; }
.rounded-lg     { border-radius: 0.5rem !important; }
.rounded-xl     { border-radius: 0.75rem !important; }
.rounded-2xl    { border-radius: 1rem !important; }
.rounded-3xl    { border-radius: 1.5rem !important; }
.rounded-full   { border-radius: 9999px !important; }

.rounded-t-none   { border-top-left-radius: 0; border-top-right-radius: 0 !important; }
.rounded-t-sm     { border-top-left-radius: 0.125rem; border-top-right-radius: 0.125rem !important; }
.rounded-t        { border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem !important; }
.rounded-t-md     { border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem !important; }
.rounded-t-lg     { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem !important; }
.rounded-t-xl     { border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem !important; }
.rounded-t-full   { border-top-left-radius: 9999px; border-top-right-radius: 9999px !important; }

.rounded-b-none   { border-bottom-left-radius: 0; border-bottom-right-radius: 0 !important; }
.rounded-b        { border-bottom-left-radius: 0.25rem; border-bottom-right-radius: 0.25rem !important; }
.rounded-b-lg     { border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem !important; }
.rounded-b-full   { border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px !important; }

.rounded-l-none   { border-top-left-radius: 0; border-bottom-left-radius: 0 !important; }
.rounded-l        { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem !important; }
.rounded-l-full   { border-top-left-radius: 9999px; border-bottom-left-radius: 9999px !important; }

.rounded-r-none   { border-top-right-radius: 0; border-bottom-right-radius: 0 !important; }
.rounded-r        { border-top-right-radius: 0.25rem; border-bottom-right-radius: 0.25rem !important; }
.rounded-r-full   { border-top-right-radius: 9999px; border-bottom-right-radius: 9999px !important; }

.rounded-tl-none  { border-top-left-radius: 0 !important; }
.rounded-tl       { border-top-left-radius: 0.25rem !important; }
.rounded-tl-lg    { border-top-left-radius: 0.5rem !important; }
.rounded-tl-full  { border-top-left-radius: 9999px !important; }
.rounded-tr-none  { border-top-right-radius: 0 !important; }
.rounded-tr       { border-top-right-radius: 0.25rem !important; }
.rounded-tr-lg    { border-top-right-radius: 0.5rem !important; }
.rounded-tr-full  { border-top-right-radius: 9999px !important; }
.rounded-bl-none  { border-bottom-left-radius: 0 !important; }
.rounded-bl       { border-bottom-left-radius: 0.25rem !important; }
.rounded-bl-lg    { border-bottom-left-radius: 0.5rem !important; }
.rounded-bl-full  { border-bottom-left-radius: 9999px !important; }
.rounded-br-none  { border-bottom-right-radius: 0 !important; }
.rounded-br       { border-bottom-right-radius: 0.25rem !important; }
.rounded-br-lg    { border-bottom-right-radius: 0.5rem !important; }
.rounded-br-full  { border-bottom-right-radius: 9999px !important; }

/* Outline */
.outline-none   { outline: 2px solid transparent; outline-offset: 2px !important; }
.outline        { outline-style: solid !important; }
.outline-dashed { outline-style: dashed !important; }
.outline-0      { outline-width: 0 !important; }
.outline-1      { outline-width: 1px !important; }
.outline-2      { outline-width: 2px !important; }
.outline-4      { outline-width: 4px !important; }

/* Ring */
.ring-0  { box-shadow: 0 0 0 0 rgb(59 130 246 / 0.5) !important; }
.ring-1  { box-shadow: 0 0 0 1px rgb(59 130 246 / 0.5) !important; }
.ring-2  { box-shadow: 0 0 0 2px rgb(59 130 246 / 0.5) !important; }
.ring-4  { box-shadow: 0 0 0 4px rgb(59 130 246 / 0.5) !important; }
.ring    { box-shadow: 0 0 0 3px rgb(59 130 246 / 0.5) !important; }


/* ============================================================
   背景
   ============================================================ */

/* Background Size */
.bg-auto    { background-size: auto !important; }
.bg-cover   { background-size: cover !important; }
.bg-contain { background-size: contain !important; }

/* Background Position */
.bg-center       { background-position: center !important; }
.bg-top          { background-position: top !important; }
.bg-right        { background-position: right !important; }
.bg-bottom       { background-position: bottom !important; }
.bg-left         { background-position: left !important; }
.bg-right-top    { background-position: right top !important; }
.bg-right-bottom { background-position: right bottom !important; }
.bg-left-top     { background-position: left top !important; }
.bg-left-bottom  { background-position: left bottom !important; }

/* Background Repeat */
.bg-repeat    { background-repeat: repeat !important; }
.bg-no-repeat { background-repeat: no-repeat !important; }
.bg-repeat-x  { background-repeat: repeat-x !important; }
.bg-repeat-y  { background-repeat: repeat-y !important; }

/* Background Attachment */
.bg-fixed   { background-attachment: fixed !important; }
.bg-local   { background-attachment: local !important; }
.bg-scroll  { background-attachment: scroll !important; }

/* Background Clip */
.bg-clip-border  { background-clip: border-box !important; }
.bg-clip-padding { background-clip: padding-box !important; }
.bg-clip-content { background-clip: content-box !important; }
.bg-clip-text    { background-clip: text; -webkit-background-clip: text !important; }

/* Gradient */
.bg-gradient-to-t   { background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important; }
.bg-gradient-to-tr  { background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important; }
.bg-gradient-to-r   { background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important; }
.bg-gradient-to-br  { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important; }
.bg-gradient-to-b   { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important; }
.bg-gradient-to-bl  { background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important; }
.bg-gradient-to-l   { background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important; }
.bg-gradient-to-tl  { background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important; }


/* ============================================================
   シャドウ
   ============================================================ */

.shadow-none { box-shadow: none !important; }
.shadow-sm   { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05) !important; }
.shadow      { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1) !important; }
.shadow-md   { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important; }
.shadow-lg   { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1) !important; }
.shadow-xl   { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1) !important; }
.shadow-2xl  { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25) !important; }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05) !important; }


/* ============================================================
   不透明度 / 可視性
   ============================================================ */

.opacity-0   { opacity: 0 !important; }
.opacity-5   { opacity: 0.05 !important; }
.opacity-10  { opacity: 0.1 !important; }
.opacity-20  { opacity: 0.2 !important; }
.opacity-25  { opacity: 0.25 !important; }
.opacity-30  { opacity: 0.3 !important; }
.opacity-40  { opacity: 0.4 !important; }
.opacity-50  { opacity: 0.5 !important; }
.opacity-60  { opacity: 0.6 !important; }
.opacity-70  { opacity: 0.7 !important; }
.opacity-75  { opacity: 0.75 !important; }
.opacity-80  { opacity: 0.8 !important; }
.opacity-90  { opacity: 0.9 !important; }
.opacity-95  { opacity: 0.95 !important; }
.opacity-100 { opacity: 1 !important; }

.visible   { visibility: visible !important; }
.invisible { visibility: hidden !important; }


/* ============================================================
   トランジション / アニメーション
   ============================================================ */

/* Transition Property */
.transition-none     { transition-property: none !important; }
.transition-all      { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms !important; }
.transition          { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms !important; }
.transition-colors   { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms !important; }
.transition-opacity  { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms !important; }
.transition-shadow   { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms !important; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms !important; }

/* Duration */
.duration-75   { transition-duration: 75ms !important; }
.duration-100  { transition-duration: 100ms !important; }
.duration-150  { transition-duration: 150ms !important; }
.duration-200  { transition-duration: 200ms !important; }
.duration-300  { transition-duration: 300ms !important; }
.duration-500  { transition-duration: 500ms !important; }
.duration-700  { transition-duration: 700ms !important; }
.duration-1000 { transition-duration: 1000ms !important; }

/* Easing */
.ease-linear  { transition-timing-function: linear !important; }
.ease-in      { transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important; }
.ease-out     { transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; }
.ease-in-out  { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; }

/* Delay */
.delay-75   { transition-delay: 75ms !important; }
.delay-100  { transition-delay: 100ms !important; }
.delay-150  { transition-delay: 150ms !important; }
.delay-200  { transition-delay: 200ms !important; }
.delay-300  { transition-delay: 300ms !important; }
.delay-500  { transition-delay: 500ms !important; }
.delay-700  { transition-delay: 700ms !important; }
.delay-1000 { transition-delay: 1000ms !important; }

/* Animation */
.animate-none    { animation: none !important; }
.animate-spin    { animation: spin 1s linear infinite !important; }
.animate-ping    { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important; }
.animate-pulse   { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important; }
.animate-bounce  { animation: bounce 1s infinite !important; }

@keyframes spin {
  to { transform: rotate(360deg) !important; }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0 !important; }
}
@keyframes pulse {
  0%, 100% { opacity: 1 !important; }
  50% { opacity: 0.5 !important; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1) !important; }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0, 0, 0.2, 1) !important; }
}


/* ============================================================
   トランスフォーム
   ============================================================ */

.scale-0     { transform: scale(0) !important; }
.scale-50    { transform: scale(0.5) !important; }
.scale-75    { transform: scale(0.75) !important; }
.scale-90    { transform: scale(0.9) !important; }
.scale-95    { transform: scale(0.95) !important; }
.scale-100   { transform: scale(1) !important; }
.scale-105   { transform: scale(1.05) !important; }
.scale-110   { transform: scale(1.1) !important; }
.scale-125   { transform: scale(1.25) !important; }
.scale-150   { transform: scale(1.5) !important; }

.rotate-0    { transform: rotate(0deg) !important; }
.rotate-1    { transform: rotate(1deg) !important; }
.rotate-2    { transform: rotate(2deg) !important; }
.rotate-3    { transform: rotate(3deg) !important; }
.rotate-6    { transform: rotate(6deg) !important; }
.rotate-12   { transform: rotate(12deg) !important; }
.rotate-45   { transform: rotate(45deg) !important; }
.rotate-90   { transform: rotate(90deg) !important; }
.rotate-180  { transform: rotate(180deg) !important; }
.-rotate-1   { transform: rotate(-1deg) !important; }
.-rotate-2   { transform: rotate(-2deg) !important; }
.-rotate-3   { transform: rotate(-3deg) !important; }
.-rotate-6   { transform: rotate(-6deg) !important; }
.-rotate-12  { transform: rotate(-12deg) !important; }
.-rotate-45  { transform: rotate(-45deg) !important; }
.-rotate-90  { transform: rotate(-90deg) !important; }
.-rotate-180 { transform: rotate(-180deg) !important; }

.translate-x-0    { transform: translateX(0) !important; }
.translate-x-1    { transform: translateX(0.25rem) !important; }
.translate-x-2    { transform: translateX(0.5rem) !important; }
.translate-x-4    { transform: translateX(1rem) !important; }
.translate-x-full { transform: translateX(100%) !important; }
.-translate-x-1    { transform: translateX(-0.25rem) !important; }
.-translate-x-2    { transform: translateX(-0.5rem) !important; }
.-translate-x-4    { transform: translateX(-1rem) !important; }
.-translate-x-full { transform: translateX(-100%) !important; }

.translate-y-0    { transform: translateY(0) !important; }
.translate-y-1    { transform: translateY(0.25rem) !important; }
.translate-y-2    { transform: translateY(0.5rem) !important; }
.translate-y-4    { transform: translateY(1rem) !important; }
.translate-y-full { transform: translateY(100%) !important; }
.-translate-y-1    { transform: translateY(-0.25rem) !important; }
.-translate-y-2    { transform: translateY(-0.5rem) !important; }
.-translate-y-4    { transform: translateY(-1rem) !important; }
.-translate-y-full { transform: translateY(-100%) !important; }

.skew-x-0  { transform: skewX(0deg) !important; }
.skew-x-1  { transform: skewX(1deg) !important; }
.skew-x-2  { transform: skewX(2deg) !important; }
.skew-x-3  { transform: skewX(3deg) !important; }
.skew-x-6  { transform: skewX(6deg) !important; }
.skew-x-12 { transform: skewX(12deg) !important; }
.skew-y-0  { transform: skewY(0deg) !important; }
.skew-y-1  { transform: skewY(1deg) !important; }
.skew-y-2  { transform: skewY(2deg) !important; }
.skew-y-3  { transform: skewY(3deg) !important; }
.skew-y-6  { transform: skewY(6deg) !important; }
.skew-y-12 { transform: skewY(12deg) !important; }

.transform-origin-center { transform-origin: center !important; }
.transform-origin-top    { transform-origin: top !important; }
.transform-origin-bottom { transform-origin: bottom !important; }
.transform-origin-left   { transform-origin: left !important; }
.transform-origin-right  { transform-origin: right !important; }


/* ============================================================
   フィルター
   ============================================================ */

.blur-none { filter: blur(0) !important; }
.blur-sm   { filter: blur(4px) !important; }
.blur      { filter: blur(8px) !important; }
.blur-md   { filter: blur(12px) !important; }
.blur-lg   { filter: blur(16px) !important; }
.blur-xl   { filter: blur(24px) !important; }
.blur-2xl  { filter: blur(40px) !important; }
.blur-3xl  { filter: blur(64px) !important; }

.brightness-0   { filter: brightness(0) !important; }
.brightness-50  { filter: brightness(0.5) !important; }
.brightness-75  { filter: brightness(0.75) !important; }
.brightness-90  { filter: brightness(0.9) !important; }
.brightness-95  { filter: brightness(0.95) !important; }
.brightness-100 { filter: brightness(1) !important; }
.brightness-105 { filter: brightness(1.05) !important; }
.brightness-110 { filter: brightness(1.1) !important; }
.brightness-125 { filter: brightness(1.25) !important; }
.brightness-150 { filter: brightness(1.5) !important; }
.brightness-200 { filter: brightness(2) !important; }

.grayscale-0 { filter: grayscale(0) !important; }
.grayscale   { filter: grayscale(1) !important; }

.invert-0 { filter: invert(0) !important; }
.invert   { filter: invert(1) !important; }

.saturate-0   { filter: saturate(0) !important; }
.saturate-50  { filter: saturate(0.5) !important; }
.saturate-100 { filter: saturate(1) !important; }
.saturate-150 { filter: saturate(1.5) !important; }
.saturate-200 { filter: saturate(2) !important; }

/* Backdrop Filter */
.backdrop-blur-none { backdrop-filter: blur(0) !important; }
.backdrop-blur-sm   { backdrop-filter: blur(4px) !important; }
.backdrop-blur      { backdrop-filter: blur(8px) !important; }
.backdrop-blur-md   { backdrop-filter: blur(12px) !important; }
.backdrop-blur-lg   { backdrop-filter: blur(16px) !important; }
.backdrop-blur-xl   { backdrop-filter: blur(24px) !important; }
.backdrop-blur-2xl  { backdrop-filter: blur(40px) !important; }
.backdrop-blur-3xl  { backdrop-filter: blur(64px) !important; }


/* ============================================================
   インタラクション
   ============================================================ */

/* Cursor */
.cursor-auto        { cursor: auto !important; }
.cursor-default     { cursor: default !important; }
.cursor-pointer     { cursor: pointer !important; }
.cursor-wait        { cursor: wait !important; }
.cursor-text        { cursor: text !important; }
.cursor-move        { cursor: move !important; }
.cursor-not-allowed { cursor: not-allowed !important; }
.cursor-grab        { cursor: grab !important; }
.cursor-grabbing    { cursor: grabbing !important; }
.cursor-none        { cursor: none !important; }
.cursor-crosshair   { cursor: crosshair !important; }
.cursor-help        { cursor: help !important; }
.cursor-zoom-in     { cursor: zoom-in !important; }
.cursor-zoom-out    { cursor: zoom-out !important; }

/* Pointer Events */
.pointer-events-none { pointer-events: none !important; }
.pointer-events-auto { pointer-events: auto !important; }

/* User Select */
.select-none  { user-select: none !important; }
.select-text  { user-select: text !important; }
.select-all   { user-select: all !important; }
.select-auto  { user-select: auto !important; }

/* Resize */
.resize-none { resize: none !important; }
.resize-y    { resize: vertical !important; }
.resize-x    { resize: horizontal !important; }
.resize      { resize: both !important; }

/* Scroll Behavior */
.scroll-auto   { scroll-behavior: auto !important; }
.scroll-smooth { scroll-behavior: smooth !important; }

/* Scroll Snap */
.snap-start     { scroll-snap-align: start !important; }
.snap-end       { scroll-snap-align: end !important; }
.snap-center    { scroll-snap-align: center !important; }
.snap-none      { scroll-snap-type: none !important; }
.snap-x         { scroll-snap-type: x mandatory !important; }
.snap-y         { scroll-snap-type: y mandatory !important; }
.snap-mandatory { scroll-snap-type: var(--tw-scroll-snap-strictness, mandatory) !important; }
.snap-proximity { scroll-snap-type: var(--tw-scroll-snap-strictness, proximity) !important; }

/* Appearance */
.appearance-none { appearance: none; -webkit-appearance: none !important; }
.appearance-auto { appearance: auto !important; }

/* Touch Action */
.touch-auto         { touch-action: auto !important; }
.touch-none         { touch-action: none !important; }
.touch-pan-x        { touch-action: pan-x !important; }
.touch-pan-y        { touch-action: pan-y !important; }
.touch-manipulation { touch-action: manipulation !important; }


/* ============================================================
   その他のユーティリティ
   ============================================================ */

/* Object Fit */
.object-contain    { object-fit: contain !important; }
.object-cover      { object-fit: cover !important; }
.object-fill       { object-fit: fill !important; }
.object-none       { object-fit: none !important; }
.object-scale-down { object-fit: scale-down !important; }

/* Object Position */
.object-center  { object-position: center !important; }
.object-top     { object-position: top !important; }
.object-right   { object-position: right !important; }
.object-bottom  { object-position: bottom !important; }
.object-left    { object-position: left !important; }

/* Float */
.float-right  { float: right !important; }
.float-left   { float: left !important; }
.float-none   { float: none !important; }
.clearfix::after { content: ""; display: table; clear: both !important; }
.clear-left  { clear: left !important; }
.clear-right { clear: right !important; }
.clear-both  { clear: both !important; }
.clear-none  { clear: none !important; }

/* Table */
.table-auto   { table-layout: auto !important; }
.table-fixed  { table-layout: fixed !important; }
.border-collapse  { border-collapse: collapse !important; }
.border-separate  { border-collapse: separate !important; }

/* List */
.list-none    { list-style-type: none !important; }
.list-disc    { list-style-type: disc !important; }
.list-decimal { list-style-type: decimal !important; }
.list-inside  { list-style-position: inside !important; }
.list-outside { list-style-position: outside !important; }

/* Columns */
.columns-1  { columns: 1 !important; }
.columns-2  { columns: 2 !important; }
.columns-3  { columns: 3 !important; }
.columns-4  { columns: 4 !important; }
.columns-auto { columns: auto !important; }

/* Box Sizing */
.box-border  { box-sizing: border-box !important; }
.box-content { box-sizing: content-box !important; }

/* Isolation */
.isolate        { isolation: isolate !important; }
.isolation-auto { isolation: auto !important; }

/* Mix Blend Mode */
.mix-blend-normal      { mix-blend-mode: normal !important; }
.mix-blend-multiply    { mix-blend-mode: multiply !important; }
.mix-blend-screen      { mix-blend-mode: screen !important; }
.mix-blend-overlay     { mix-blend-mode: overlay !important; }
.mix-blend-darken      { mix-blend-mode: darken !important; }
.mix-blend-lighten     { mix-blend-mode: lighten !important; }
.mix-blend-color-dodge { mix-blend-mode: color-dodge !important; }
.mix-blend-color-burn  { mix-blend-mode: color-burn !important; }
.mix-blend-hard-light  { mix-blend-mode: hard-light !important; }
.mix-blend-soft-light  { mix-blend-mode: soft-light !important; }
.mix-blend-difference  { mix-blend-mode: difference !important; }
.mix-blend-exclusion   { mix-blend-mode: exclusion !important; }

/* SR Only（スクリーンリーダー専用） */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}
.not-sr-only {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}


/* ============================================================
   ホバー / フォーカス / アクティブ 擬似クラス
   ============================================================ */

/* Hover */
.hover\:text-white:hover         { color: #ffffff !important; }
.hover\:text-black:hover         { color: #000000 !important; }
.hover\:text-gray-700:hover      { color: #374151 !important; }
.hover\:text-gray-900:hover      { color: #111827 !important; }
.hover\:text-blue-600:hover      { color: #2563eb !important; }
.hover\:text-blue-700:hover      { color: #1d4ed8 !important; }
.hover\:text-red-600:hover       { color: #dc2626 !important; }
.hover\:text-green-600:hover     { color: #16a34a !important; }

.hover\:bg-white:hover           { background-color: #ffffff !important; }
.hover\:bg-gray-50:hover         { background-color: #f9fafb !important; }
.hover\:bg-gray-100:hover        { background-color: #f3f4f6 !important; }
.hover\:bg-gray-200:hover        { background-color: #e5e7eb !important; }
.hover\:bg-gray-700:hover        { background-color: #374151 !important; }
.hover\:bg-gray-800:hover        { background-color: #1f2937 !important; }
.hover\:bg-blue-500:hover        { background-color: #3b82f6 !important; }
.hover\:bg-blue-600:hover        { background-color: #2563eb !important; }
.hover\:bg-blue-700:hover        { background-color: #1d4ed8 !important; }
.hover\:bg-red-600:hover         { background-color: #dc2626 !important; }
.hover\:bg-green-600:hover       { background-color: #16a34a !important; }

.hover\:border-gray-300:hover    { border-color: #d1d5db !important; }
.hover\:border-blue-500:hover    { border-color: #3b82f6 !important; }

.hover\:opacity-75:hover         { opacity: 0.75 !important; }
.hover\:opacity-90:hover         { opacity: 0.9 !important; }
.hover\:opacity-100:hover        { opacity: 1 !important; }

.hover\:shadow:hover             { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1) !important; }
.hover\:shadow-md:hover          { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important; }
.hover\:shadow-lg:hover          { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1) !important; }

.hover\:scale-105:hover          { transform: scale(1.05) !important; }
.hover\:scale-110:hover          { transform: scale(1.1) !important; }
.hover\:underline:hover          { text-decoration-line: underline !important; }
.hover\:no-underline:hover       { text-decoration-line: none !important; }

/* Focus */
.focus\:outline-none:focus       { outline: 2px solid transparent; outline-offset: 2px !important; }
.focus\:ring:focus               { box-shadow: 0 0 0 3px rgb(59 130 246 / 0.5) !important; }
.focus\:ring-2:focus             { box-shadow: 0 0 0 2px rgb(59 130 246 / 0.5) !important; }
.focus\:ring-blue-500:focus      { box-shadow: 0 0 0 3px rgb(59 130 246 / 0.5) !important; }
.focus\:border-blue-500:focus    { border-color: #3b82f6 !important; }
.focus\:bg-white:focus           { background-color: #ffffff !important; }

/* Active */
.active\:scale-95:active         { transform: scale(0.95) !important; }
.active\:opacity-80:active       { opacity: 0.8 !important; }
.active\:bg-gray-200:active      { background-color: #e5e7eb !important; }
.active\:bg-blue-700:active      { background-color: #1d4ed8 !important; }

/* Disabled */
.disabled\:opacity-50:disabled   { opacity: 0.5 !important; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed !important; }
.disabled\:pointer-events-none:disabled { pointer-events: none !important; }

/* Focus-visible */
.focus-visible\:outline-none:focus-visible  { outline: 2px solid transparent; outline-offset: 2px !important; }
.focus-visible\:ring-2:focus-visible        { box-shadow: 0 0 0 2px rgb(59 130 246 / 0.5) !important; }


/* ============================================================
   レスポンシブ ブレークポイント
   sm: 576px / md: 768px / lg: 1024px / xl: 1280px / 2xl: 1536px
   ============================================================ */

@media (width >  576.02px) {
  .sm\:block        { display: block !important; }
  .sm\:hidden       { display: none !important; }
  .sm\:flex         { display: flex !important; }
  .sm\:grid         { display: grid !important; }
  .sm\:inline       { display: inline !important; }
  .sm\:inline-block { display: inline-block !important; }
  .sm\:inline-flex  { display: inline-flex !important; }

  .sm\:flex-row     { flex-direction: row !important; }
  .sm\:flex-col     { flex-direction: column !important; }
  .sm\:flex-wrap    { flex-wrap: wrap !important; }
  .sm\:flex-nowrap  { flex-wrap: nowrap !important; }

  .sm\:grid-cols-1  { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .sm\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }

  .sm\:text-sm   { font-size: 0.875rem; line-height: 1.25rem !important; }
  .sm\:text-base { font-size: 1rem;     line-height: 1.5rem !important; }
  .sm\:text-lg   { font-size: 1.125rem; line-height: 1.75rem !important; }
  .sm\:text-xl   { font-size: 1.25rem;  line-height: 1.75rem !important; }
  .sm\:text-2xl  { font-size: 1.5rem;   line-height: 2rem !important; }
  .sm\:text-3xl  { font-size: 1.875rem; line-height: 2.25rem !important; }
  .sm\:text-4xl  { font-size: 2.25rem;  line-height: 2.5rem !important; }

  .sm\:p-4  { padding: 1rem !important; }
  .sm\:p-6  { padding: 1.5rem !important; }
  .sm\:p-8  { padding: 2rem !important; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem !important; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem !important; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem !important; }
  .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem !important; }
  .sm\:py-8 { padding-top: 2rem; padding-bottom: 2rem !important; }

  .sm\:mt-0  { margin-top: 0 !important; }
  .sm\:mt-4  { margin-top: 1rem !important; }
  .sm\:mt-8  { margin-top: 2rem !important; }
  .sm\:mb-0  { margin-bottom: 0 !important; }
  .sm\:mx-auto { margin-left: auto; margin-right: auto !important; }

  .sm\:w-auto  { width: auto !important; }
  .sm\:w-full  { width: 100% !important; }
  .sm\:w-1\/2  { width: 50% !important; }
  .sm\:w-1\/3  { width: 33.333333% !important; }
  .sm\:w-2\/3  { width: 66.666667% !important; }

  .sm\:items-center  { align-items: center !important; }
  .sm\:justify-center { justify-content: center !important; }
  .sm\:justify-between { justify-content: space-between !important; }

  .sm\:gap-4 { gap: 1rem !important; }
  .sm\:gap-6 { gap: 1.5rem !important; }
  .sm\:gap-8 { gap: 2rem !important; }

  .sm\:text-left   { text-align: left !important; }
  .sm\:text-center { text-align: center !important; }
  .sm\:text-right  { text-align: right !important; }
}

@media (width >  768.02px) {
  .md\:block        { display: block !important; }
  .md\:hidden       { display: none !important; }
  .md\:flex         { display: flex !important; }
  .md\:grid         { display: grid !important; }
  .md\:inline       { display: inline !important; }
  .md\:inline-block { display: inline-block !important; }
  .md\:inline-flex  { display: inline-flex !important; }

  .md\:flex-row     { flex-direction: row !important; }
  .md\:flex-col     { flex-direction: column !important; }
  .md\:flex-wrap    { flex-wrap: wrap !important; }
  .md\:flex-nowrap  { flex-wrap: nowrap !important; }

  .md\:grid-cols-1  { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .md\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .md\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .md\:grid-cols-6  { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }

  .md\:text-sm   { font-size: 0.875rem; line-height: 1.25rem !important; }
  .md\:text-base { font-size: 1rem;     line-height: 1.5rem !important; }
  .md\:text-lg   { font-size: 1.125rem; line-height: 1.75rem !important; }
  .md\:text-xl   { font-size: 1.25rem;  line-height: 1.75rem !important; }
  .md\:text-2xl  { font-size: 1.5rem;   line-height: 2rem !important; }
  .md\:text-3xl  { font-size: 1.875rem; line-height: 2.25rem !important; }
  .md\:text-4xl  { font-size: 2.25rem;  line-height: 2.5rem !important; }
  .md\:text-5xl  { font-size: 3rem;     line-height: 1 !important; }
  .md\:text-6xl  { font-size: 3.75rem;  line-height: 1 !important; }

  .md\:p-4   { padding: 1rem !important; }
  .md\:p-6   { padding: 1.5rem !important; }
  .md\:p-8   { padding: 2rem !important; }
  .md\:p-10  { padding: 2.5rem !important; }
  .md\:p-12  { padding: 3rem !important; }
  .md\:px-4  { padding-left: 1rem; padding-right: 1rem !important; }
  .md\:px-6  { padding-left: 1.5rem; padding-right: 1.5rem !important; }
  .md\:px-8  { padding-left: 2rem; padding-right: 2rem !important; }
  .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem !important; }
  .md\:px-12 { padding-left: 3rem; padding-right: 3rem !important; }
  .md\:py-4  { padding-top: 1rem; padding-bottom: 1rem !important; }
  .md\:py-6  { padding-top: 1.5rem; padding-bottom: 1.5rem !important; }
  .md\:py-8  { padding-top: 2rem; padding-bottom: 2rem !important; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem !important; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem !important; }

  .md\:mt-0  { margin-top: 0 !important; }
  .md\:mt-4  { margin-top: 1rem !important; }
  .md\:mt-8  { margin-top: 2rem !important; }
  .md\:mt-12 { margin-top: 3rem !important; }
  .md\:mb-0  { margin-bottom: 0 !important; }
  .md\:mx-auto { margin-left: auto; margin-right: auto !important; }

  .md\:w-auto  { width: auto !important; }
  .md\:w-full  { width: 100% !important; }
  .md\:w-1\/2  { width: 50% !important; }
  .md\:w-1\/3  { width: 33.333333% !important; }
  .md\:w-2\/3  { width: 66.666667% !important; }
  .md\:w-1\/4  { width: 25% !important; }
  .md\:w-3\/4  { width: 75% !important; }

  .md\:items-center    { align-items: center !important; }
  .md\:items-start     { align-items: flex-start !important; }
  .md\:justify-center  { justify-content: center !important; }
  .md\:justify-between { justify-content: space-between !important; }

  .md\:gap-4 { gap: 1rem !important; }
  .md\:gap-6 { gap: 1.5rem !important; }
  .md\:gap-8 { gap: 2rem !important; }
  .md\:gap-12 { gap: 3rem !important; }

  .md\:text-left   { text-align: left !important; }
  .md\:text-center { text-align: center !important; }
  .md\:text-right  { text-align: right !important; }

  .md\:font-bold { font-weight: 700 !important; }
  .md\:col-span-2  { grid-column: span 2 / span 2 !important; }
  .md\:col-span-4  { grid-column: span 4 / span 4 !important; }
  .md\:col-span-6  { grid-column: span 6 / span 6 !important; }
  .md\:col-span-full { grid-column: 1 / -1 !important; }
}

@media (width >  1080.02px) {
  .lg\:block        { display: block !important; }
  .lg\:hidden       { display: none !important; }
  .lg\:flex         { display: flex !important; }
  .lg\:grid         { display: grid !important; }
  .lg\:inline       { display: inline !important; }
  .lg\:inline-block { display: inline-block !important; }
  .lg\:inline-flex  { display: inline-flex !important; }

  .lg\:flex-row  { flex-direction: row !important; }
  .lg\:flex-col  { flex-direction: column !important; }

  .lg\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-6  { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)) !important; }

  .lg\:text-base { font-size: 1rem;     line-height: 1.5rem !important; }
  .lg\:text-lg   { font-size: 1.125rem; line-height: 1.75rem !important; }
  .lg\:text-xl   { font-size: 1.25rem;  line-height: 1.75rem !important; }
  .lg\:text-2xl  { font-size: 1.5rem;   line-height: 2rem !important; }
  .lg\:text-3xl  { font-size: 1.875rem; line-height: 2.25rem !important; }
  .lg\:text-4xl  { font-size: 2.25rem;  line-height: 2.5rem !important; }
  .lg\:text-5xl  { font-size: 3rem;     line-height: 1 !important; }
  .lg\:text-6xl  { font-size: 3.75rem;  line-height: 1 !important; }
  .lg\:text-7xl  { font-size: 4.5rem;   line-height: 1 !important; }

  .lg\:p-6   { padding: 1.5rem !important; }
  .lg\:p-8   { padding: 2rem !important; }
  .lg\:p-10  { padding: 2.5rem !important; }
  .lg\:p-12  { padding: 3rem !important; }
  .lg\:p-16  { padding: 4rem !important; }
  .lg\:px-8  { padding-left: 2rem; padding-right: 2rem !important; }
  .lg\:px-12 { padding-left: 3rem; padding-right: 3rem !important; }
  .lg\:px-16 { padding-left: 4rem; padding-right: 4rem !important; }
  .lg\:py-8  { padding-top: 2rem; padding-bottom: 2rem !important; }
  .lg\:py-12 { padding-top: 3rem; padding-bottom: 3rem !important; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem !important; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem !important; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem !important; }

  .lg\:mt-0  { margin-top: 0 !important; }
  .lg\:mt-8  { margin-top: 2rem !important; }
  .lg\:mt-12 { margin-top: 3rem !important; }
  .lg\:mt-16 { margin-top: 4rem !important; }
  .lg\:mx-auto { margin-left: auto; margin-right: auto !important; }

  .lg\:w-auto  { width: auto !important; }
  .lg\:w-full  { width: 100% !important; }
  .lg\:w-1\/2  { width: 50% !important; }
  .lg\:w-1\/3  { width: 33.333333% !important; }
  .lg\:w-2\/3  { width: 66.666667% !important; }
  .lg\:w-1\/4  { width: 25% !important; }
  .lg\:w-3\/4  { width: 75% !important; }

  .lg\:items-center    { align-items: center !important; }
  .lg\:items-start     { align-items: flex-start !important; }
  .lg\:justify-center  { justify-content: center !important; }
  .lg\:justify-between { justify-content: space-between !important; }

  .lg\:gap-4  { gap: 1rem !important; }
  .lg\:gap-6  { gap: 1.5rem !important; }
  .lg\:gap-8  { gap: 2rem !important; }
  .lg\:gap-12 { gap: 3rem !important; }
  .lg\:gap-16 { gap: 4rem !important; }

  .lg\:text-left   { text-align: left !important; }
  .lg\:text-center { text-align: center !important; }
  .lg\:text-right  { text-align: right !important; }

  .lg\:col-span-2    { grid-column: span 2 / span 2 !important; }
  .lg\:col-span-3    { grid-column: span 3 / span 3 !important; }
  .lg\:col-span-4    { grid-column: span 4 / span 4 !important; }
  .lg\:col-span-6    { grid-column: span 6 / span 6 !important; }
  .lg\:col-span-8    { grid-column: span 8 / span 8 !important; }
  .lg\:col-span-full { grid-column: 1 / -1 !important; }

  .lg\:max-w-2xl { max-width: 42rem !important; }
  .lg\:max-w-3xl { max-width: 48rem !important; }
  .lg\:max-w-4xl { max-width: 56rem !important; }
  .lg\:max-w-5xl { max-width: 64rem !important; }
  .lg\:max-w-6xl { max-width: 72rem !important; }
  .lg\:max-w-7xl { max-width: 80rem !important; }
}

@media (width >  1280.02px) {
  .xl\:block        { display: block !important; }
  .xl\:hidden       { display: none !important; }
  .xl\:flex         { display: flex !important; }
  .xl\:grid         { display: grid !important; }

  .xl\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-5  { grid-template-columns: repeat(5, minmax(0, 1fr)) !important; }
  .xl\:grid-cols-6  { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }

  .xl\:text-4xl  { font-size: 2.25rem; line-height: 2.5rem !important; }
  .xl\:text-5xl  { font-size: 3rem;    line-height: 1 !important; }
  .xl\:text-6xl  { font-size: 3.75rem; line-height: 1 !important; }
  .xl\:text-7xl  { font-size: 4.5rem;  line-height: 1 !important; }
  .xl\:text-8xl  { font-size: 6rem;    line-height: 1 !important; }

  .xl\:px-8  { padding-left: 2rem; padding-right: 2rem !important; }
  .xl\:px-12 { padding-left: 3rem; padding-right: 3rem !important; }
  .xl\:px-16 { padding-left: 4rem; padding-right: 4rem !important; }
  .xl\:py-16 { padding-top: 4rem; padding-bottom: 4rem !important; }
  .xl\:py-20 { padding-top: 5rem; padding-bottom: 5rem !important; }
  .xl\:py-24 { padding-top: 6rem; padding-bottom: 6rem !important; }

  .xl\:gap-8  { gap: 2rem !important; }
  .xl\:gap-12 { gap: 3rem !important; }
  .xl\:gap-16 { gap: 4rem !important; }

  .xl\:max-w-5xl { max-width: 64rem !important; }
  .xl\:max-w-6xl { max-width: 72rem !important; }
  .xl\:max-w-7xl { max-width: 80rem !important; }
}

@media (width >  1536.02px) {
  .\32xl\:block        { display: block !important; }
  .\32xl\:hidden       { display: none !important; }
  .\32xl\:flex         { display: flex !important; }
  .\32xl\:grid         { display: grid !important; }

  .\32xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .\32xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }

  .\32xl\:px-16 { padding-left: 4rem; padding-right: 4rem !important; }
  .\32xl\:px-20 { padding-left: 5rem; padding-right: 5rem !important; }
  .\32xl\:py-16 { padding-top: 4rem; padding-bottom: 4rem !important; }
  .\32xl\:py-24 { padding-top: 6rem; padding-bottom: 6rem !important; }

  .\32xl\:max-w-7xl { max-width: 80rem !important; }
  .\32xl\:text-7xl  { font-size: 4.5rem; line-height: 1 !important; }
  .\32xl\:text-8xl  { font-size: 6rem;   line-height: 1 !important; }
  .\32xl\:text-9xl  { font-size: 8rem;   line-height: 1 !important; }
}

@media (max-width: 768px) {
  .max-sm\:block        { display: block !important; }
  .max-sm\:hidden       { display: none !important; }
  .max-sm\:flex         { display: flex !important; }
  .max-sm\:grid         { display: grid !important; }
  .max-sm\:inline       { display: inline !important; }
  .max-sm\:inline-block { display: inline-block !important; }
  .max-sm\:inline-flex  { display: inline-flex !important; }

  .max-sm\:flex-row     { flex-direction: row !important; }
  .max-sm\:flex-col     { flex-direction: column !important; }
  .max-sm\:flex-wrap    { flex-wrap: wrap !important; }
  .max-sm\:flex-nowrap  { flex-wrap: nowrap !important; }

  .max-sm\:grid-cols-1  { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
  .max-sm\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .max-sm\:grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .max-sm\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .max-sm\:grid-cols-6  { grid-template-columns: repeat(6, minmax(0, 1fr)) !important; }

  .max-sm\:text-sm   { font-size: 0.875rem; line-height: 1.25rem !important; }
  .max-sm\:text-base { font-size: 1rem;     line-height: 1.5rem !important; }
  .max-sm\:text-lg   { font-size: 1.125rem; line-height: 1.75rem !important; }
  .max-sm\:text-xl   { font-size: 1.25rem;  line-height: 1.75rem !important; }
  .max-sm\:text-2xl  { font-size: 1.5rem;   line-height: 2rem !important; }
  .max-sm\:text-3xl  { font-size: 1.875rem; line-height: 2.25rem !important; }
  .max-sm\:text-4xl  { font-size: 2.25rem;  line-height: 2.5rem !important; }
  .max-sm\:text-5xl  { font-size: 3rem;     line-height: 1 !important; }
  .max-sm\:text-6xl  { font-size: 3.75rem;  line-height: 1 !important; }

  .max-sm\:p-4   { padding: 1rem !important; }
  .max-sm\:p-6   { padding: 1.5rem !important; }
  .max-sm\:p-8   { padding: 2rem !important; }
  .max-sm\:p-10  { padding: 2.5rem !important; }
  .max-sm\:p-12  { padding: 3rem !important; }
  .max-sm\:px-4  { padding-left: 1rem; padding-right: 1rem !important; }
  .max-sm\:px-6  { padding-left: 1.5rem; padding-right: 1.5rem !important; }
  .max-sm\:px-8  { padding-left: 2rem; padding-right: 2rem !important; }
  .max-sm\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem !important; }
  .max-sm\:px-12 { padding-left: 3rem; padding-right: 3rem !important; }
  .max-sm\:py-4  { padding-top: 1rem; padding-bottom: 1rem !important; }
  .max-sm\:py-6  { padding-top: 1.5rem; padding-bottom: 1.5rem !important; }
  .max-sm\:py-8  { padding-top: 2rem; padding-bottom: 2rem !important; }
  .max-sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem !important; }
  .max-sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem !important; }
  .max-sm\:pb-0  { padding-bottom: 0 !important; }

  .max-sm\:mt-0  { margin-top: 0 !important; }
  .max-sm\:mt-4  { margin-top: 1rem !important; }
  .max-sm\:mt-8  { margin-top: 2rem !important; }
  .max-sm\:mt-12 { margin-top: 3rem !important; }
  .max-sm\:mb-0  { margin-bottom: 0 !important; }
  .max-sm\:mx-auto { margin-left: auto; margin-right: auto !important; }

  .max-sm\:w-auto  { width: auto !important; }
  .max-sm\:w-full  { width: 100% !important; }
  .max-sm\:w-1\/2  { width: 50% !important; }
  .max-sm\:w-1\/3  { width: 33.333333% !important; }
  .max-sm\:w-2\/3  { width: 66.666667% !important; }
  .max-sm\:w-1\/4  { width: 25% !important; }
  .max-sm\:w-3\/4  { width: 75% !important; }

  .max-sm\:items-center    { align-items: center !important; }
  .max-sm\:items-start     { align-items: flex-start !important; }
  .max-sm\:justify-center  { justify-content: center !important; }
  .max-sm\:justify-between { justify-content: space-between !important; }

  .max-sm\:gap-4 { gap: 1rem !important; }
  .max-sm\:gap-6 { gap: 1.5rem !important; }
  .max-sm\:gap-8 { gap: 2rem !important; }
  .max-sm\:gap-12 { gap: 3rem !important; }

  .max-sm\:text-left   { text-align: left !important; }
  .max-sm\:text-center { text-align: center !important; }
  .max-sm\:text-right  { text-align: right !important; }

  .max-sm\:font-bold { font-weight: 700 !important; }
  .max-sm\:col-span-2  { grid-column: span 2 / span 2 !important; }
  .max-sm\:col-span-4  { grid-column: span 4 / span 4 !important; }
  .max-sm\:col-span-6  { grid-column: span 6 / span 6 !important; }
  .max-sm\:col-span-full { grid-column: 1 / -1 !important; }
}


