/* 利用規約ページ専用CSS */

/* Tailwind CSS変数定義 */
:root {
    --medical-blue: #2c6fbb;
    --medical-light: #f8fafc;
    --medical-dark: #1e3a5f;
}

/* 基本スタイル */
.bg-medical-light {
    background-color: var(--medical-light);
    min-height: 100vh;
}

.text-medical-blue {
    color: var(--medical-blue);
}

.text-medical-dark {
    color: var(--medical-dark);
}

.hover\:text-medical-blue:hover {
    color: var(--medical-blue);
}

.hover\:text-medical-dark:hover {
    color: var(--medical-dark);
}

/* レイアウト */
.max-w-7xl {
    max-width: 80rem;
}

.max-w-4xl {
    max-width: 56rem;
}

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

/* パディング */
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.p-8 {
    padding: 2rem;
}

.pl-4 {
    padding-left: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

/* マージン */
.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

/* Flexbox */
.flex {
    display: flex;
}

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

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

.space-x-4 > * + * {
    margin-left: 1rem;
}

/* タイポグラフィ */
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

/* 色 */
.bg-white {
    background-color: #ffffff;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-900 {
    color: #111827;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

/* 影とボーダー */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

/* トランジション */
.transition-colors {
    transition-property: color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* プロース（文章）スタイル */
.prose {
    color: #374151;
    max-width: 65ch;
}

.prose h2 {
    color: #111827;
    font-weight: 600;
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose h3 {
    color: #111827;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.prose ol {
    list-style-type: decimal;
    list-style-position: inside;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.prose ol li {
    margin-bottom: 0.5rem;
}

.max-w-none {
    max-width: none;
}

/* レスポンシブ */
@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* テキストセンター */
.text-center {
    text-align: center;
}

/* リスト */
.list-decimal {
    list-style-type: decimal;
}

.list-inside {
    list-style-position: inside;
}