/* Tailwind のユーティリティクラスを再現するためのスタイル */
:root {
  --primary: #2e7d32;
  --primary-foreground: #ffffff;
  --secondary: #f9a825;
  --secondary-foreground: #ffffff;
  --background: #ffffff;
  --foreground: #333333;
  --muted: #f5f5f5;
  --muted-foreground: #6c757d;
  --accent: #f8f9fa;
  --accent-foreground: #333333;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --ring: #2e7d32;
  --radius: 0.5rem;
}

/* ベーススタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--foreground);
  line-height: 1.5;
}

/* レイアウト */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.items-start {
  align-items: flex-start;
}

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

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

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

.justify-end {
  justify-content: flex-end;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.grid {
  display: grid;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

@media (min-width: 768px) {
  .md\:order-1 {
    order: 1;
  }

  .md\:order-2 {
    order: 2;
  }
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-9 {
  height: 2.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-48 {
  height: 12rem;
}

.h-\[90vh\] {
  height: 90vh;
}

.min-h-screen {
  min-height: 100vh;
}

.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

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

.max-w-\[700px\] {
  max-width: 700px;
}

/* マージン・パディング */
.m-0 {
  margin: 0;
}

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

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

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

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

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

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

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mt-0\.5 {
  margin-top: 0.125rem;
}

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

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

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

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

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

.mt-20 {
  margin-top: 5rem;
}

.mt-24 {
  margin-top: 6rem;
}

.mt-auto {
  margin-top: auto;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

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

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

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

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

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

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

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

.pt-6 {
  padding-top: 1.5rem;
}

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

.pt-28 {
  padding-top: 7rem;
}

.pl-7 {
  padding-left: 1.75rem;
}

/* テキスト */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

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

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

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

.text-4xl {
  font-size: 2.25rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-medium {
  font-weight: 500;
}

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

.text-white {
  color: white;
}

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

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

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

.text-gray-800 {
  color: #1f2937;
}

.price-label {
  display: inline;
  margin-left: 0.5rem;
}

@media (max-width: 767px) {
  .price-label {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

.text-green-200 {
  color: #bbf7d0;
}

.text-green-500 {
  color: #22c55e;
}

.text-green-600 {
  color: #16a34a;
}

.text-green-700 {
  color: #15803d;
}

.text-green-800 {
  color: #166534;
}

.text-amber-700 {
  color: #b45309;
}

.text-amber-800 {
  color: #92400e;
}

/* 背景色 */
.bg-white {
  background-color: white;
}

.bg-transparent {
  background-color: transparent;
}

.bg-green-50 {
  background-color: #f0fdf4;
}

.bg-green-500 {
  background-color: #22c55e;
}

.bg-green-600 {
  background-color: #16a34a;
}

.bg-green-700 {
  background-color: #15803d;
}

.bg-green-900 {
  background-color: #14532d;
}

.bg-amber-50 {
  background-color: #fffbeb;
}

.bg-amber-200 {
  background-color: #fde68a;
}

.bg-amber-500 {
  background-color: #f59e0b;
}

.bg-stone-50 {
  background-color: #fafaf9;
}

.bg-black {
  background-color: black;
}

.bg-opacity-60 {
  --tw-bg-opacity: 0.6;
}

.bg-opacity-70 {
  --tw-bg-opacity: 0.7;
}

/* テキスト装飾 */
.highlight-yellow-half {
  display: inline;
  padding: 0 0.15em;
  background-image: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 50%,
    rgba(255, 228, 116, 0.9) 50%,
    rgba(255, 228, 116, 0.9) 100%
  );
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ボーダー */
.border-none {
  border-style: none;
}

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

.border-2 {
  border-width: 2px;
}

.border-transparent {
  border-color: transparent;
}

.border-green-200 {
  border-color: #bbf7d0;
}

.border-green-500 {
  border-color: #22c55e;
}

.border-green-700 {
  border-color: #15803d;
}

.border-amber-400 {
  border-color: #fbbf24;
}

/* 角丸 */
.rounded-md {
  border-radius: 0.375rem;
}

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

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* シャドウ */
.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* ボタンスタイル */
button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-weight: 500;
  outline: none;
}

button:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 位置 */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.bottom-8 {
  bottom: 2rem;
}

.left-1\/2 {
  left: 50%;
}

.-top-4 {
  top: -1rem;
}

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

.z-0 {
  z-index: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

/* 変形 */
.transform {
  transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1);
}

.-translate-x-1\/2 {
  transform: translateX(-50%);
}

.hover\:-translate-y-1:hover {
  transform: translateY(-0.25rem);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

/* オブジェクト */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

.media-logo {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
}

.media-logo-card {
  padding: 1.5rem;
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 0.75rem;
  background-color: #fff;
}

.object-center {
  object-position: center;
}

.object-\[50\%_35\%\] {
  object-position: 50% 35%;
}

/* 表示・非表示 */
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.overflow-hidden {
  overflow: hidden;
}

.whitespace-nowrap {
  white-space: nowrap;
}

/* アニメーション */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.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;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* その他 */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.brightness-\[0\.85\] {
  filter: brightness(0.85);
}

.drop-shadow-md {
  filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
}

.self-start {
  align-self: flex-start;
}

.hero-heading {
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .hero-heading {
    margin-top: 0;
  }
}

.hero-heading-break {
  display: inline;
}

@media (max-width: 1023px) {
  .hero-heading-break {
    display: block;
  }
}

.hero-section {
  padding-bottom: 5rem;
}

.hero-content {
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .hero-content {
    transform: translateY(5rem);
  }
}

@media (min-width: 768px) {
  .hero-section {
    padding-bottom: 6rem;
  }

  .hero-content {
    transform: none;
  }
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

/* 野菜ギャラリー用スタイル */
.vegetable-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.vegetable-card-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vegetable-card:hover .vegetable-card-overlay {
  opacity: 1;
}

.vegetable-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.5rem;
  color: white;
  text-align: center;
}

/* 画像ギャラリー用スタイル */
.photo-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}

.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* モーダルスタイル */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.gallery-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.gallery-modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* アクセススライダー */
.access-slider {
  position: relative;
  padding: 2rem 3rem;
}

.access-slider-window {
  overflow: hidden;
  border-radius: 0.75rem;
}

.access-slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.access-slider-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
}

.access-slider-figure {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 0;
}

.access-slider-image {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
}

.access-slider-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.access-slider-caption {
  text-align: center;
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  padding: 0 1rem 1.5rem;
}

.access-slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.access-slider-button:hover {
  background-color: rgba(76, 175, 80, 0.95);
  transform: translateY(-50%) scale(1.05);
}

.access-slider-button:hover i {
  color: #ffffff;
}

.access-slider-button i {
  color: #2e7d32;
  transition: color 0.3s ease;
}

.access-slider-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.access-slider-button--prev {
  left: 1rem;
}

.access-slider-button--next {
  right: 1rem;
}

.access-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.access-slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: rgba(46, 125, 50, 0.25);
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.access-slider-dot[aria-current="true"] {
  background-color: #2e7d32;
  transform: scale(1.1);
}

.access-slider-dot:focus-visible {
  outline: 2px solid #2e7d32;
  outline-offset: 2px;
}

.access-slider-dot:hover {
  background-color: rgba(46, 125, 50, 0.6);
}

@media (max-width: 768px) {
  .access-slider {
    padding: 1.5rem 2.5rem;
  }

  .access-slider-figure {
    padding: 1.25rem 1rem 0;
    gap: 1rem;
  }

  .access-slider-caption {
    padding: 0 0.75rem 1rem;
  }

  .access-slider-button {
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (max-width: 640px) {
  .access-slider {
    padding: 1.5rem 2rem;
  }

  .access-slider-figure {
    padding: 1rem 0.75rem 0;
  }

  .access-slider-button--prev {
    left: 0.5rem;
  }

  .access-slider-button--next {
    right: 0.5rem;
  }
}

/* アコーディオン用スタイル */
.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  background: none;
  border: none;
  cursor: pointer;
}

.accordion-trigger i {
  transition: transform 0.3s ease;
}

.accordion-trigger.active i {
  transform: rotate(180deg);
}

/* お問い合わせフォーム */
.bg-muted {
  background-color: var(--muted);
}

.text-foreground {
  color: var(--foreground);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.text-primary {
  color: var(--primary);
  transition: color 0.2s ease;
}

.text-primary:hover {
  color: #1b5e20;
}

.contact-hero {
  background-color: #1b4332;
  background-image: linear-gradient(135deg, rgba(27, 67, 50, 0.94), rgba(56, 102, 65, 0.94));
}

.contact-hero .text-foreground {
  color: #f1f8f4;
}

.contact-hero .text-muted-foreground {
  color: rgba(255, 255, 255, 0.85);
}

.form-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--foreground);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--input);
  border-radius: 0.5rem;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

.form-textarea {
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
}

.form-feedback {
  min-height: 1.5rem;
  font-size: 0.95rem;
}

.form-feedback.is-error {
  color: #c62828;
}

.form-feedback.is-success {
  color: #2e7d32;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.form-submit:hover {
  background-color: #256327;
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-submit .spinner {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: #ffffff;
  border-radius: 9999px;
  animation: form-spinner 0.8s linear infinite;
}

.form-submit.is-loading {
  transform: translateY(1px);
}

.honeypot-input {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.2);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(46, 125, 50, 0.24);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.16);
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

@keyframes form-spinner {
  to {
    transform: rotate(360deg);
  }
}

/* レスポンシブ */
@media (min-width: 640px) {
  .sm\:block {
    display: block;
  }

  .sm\:hidden {
    display: none;
  }

  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .media-logo {
    max-width: 300px;
  }

  .md\:block {
    display: block;
  }

  .md\:hidden {
    display: none;
  }

  .md\:inline {
    display: inline;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-row-reverse {
    flex-direction: row-reverse;
  }

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

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

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

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:h-12 {
    height: 3rem;
  }

  .md\:h-20 {
    height: 5rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
  }

  .md\:p-8 {
    padding: 2rem;
  }

  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .media-logo {
    max-width: 450px;
  }

  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
