@charset "UTF-8";
/* Custom CSS for ときがわ町社会福祉協議会 */
/* definition */
:root {
  --orange1: #F1823C;
  --orange2: #FFB23B;
  --brown: #7F5C3D;
  --green1: #5AA6AF;
  --green2: #67A226;
  --green3: rgb(217,227,228);
  --green4: rgb(219,226,202);
  --bg1: #FFFCEF;
  --bg2: #F6F3F1;
}

body {
  word-break: break-word;
}

.text-warm-orange {
  color: var(--orange2);
}
.bg-warm-orange {
  background-color: var(--orange2);
}
.bg-warm-orange.bg-opacity-20 {
  background: rgba(255,178,59,0.2);
}
.text-orange1 {
  color: var(--orange1);
}

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

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

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

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

.bg-1 {
  background: var(--bg1);
}

.bg-2 {
  background: var(--bg2);
}

.bg-orange1 {
  background: var(--orange1);
}

.bg-orange2 {
  background: var(--orange2);
}

.bg-brown {
  background: var(--brown);
}

.bg-green1 {
  background: var(--green1);
}

.bg-green2 {
  background: var(--green2);
}

.bg-green3 {
  background: var(--green3);
}

.bg-green4 {
  background: var(--green4);
}

.border-orange1 {
  border-color: var(--orange1);
}

.border-orange2 {
  border-color: var(--orange2);
}

.border-brown {
  border-color: var(--brown);
}

.border-green1 {
  border-color: var(--green1);
}

.border-green2 {
  border-color: var(--green2);
}

.border-orange-200 {
  border-color: var(--orange1);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* Animation Classes */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.bounce-hover:hover {
  animation: bounce 0.6s;
}

.float {
  animation: float 3s ease-in-out infinite;
}

/* Header Enhancements */
header {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

body > .bg-warm-beige.py-4 {
  background: none !important;
}
body > .bg-warm-beige.py-4 .text-warm-orange {
  color: var(--orange1);
}

header:has(#mobile-menu:not(.hidden)){
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #fff;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  padding-bottom: 40px;
}

header #mobile-menu-button > i {
  font-size: 2.6rem !important;
  line-height: 2.6rem !important;
}

/* Hero Section Background Pattern */
.hero-pattern {
  background-image: radial-gradient(circle at 25% 25%, rgba(255, 138, 101, 0.1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(255, 183, 77, 0.1) 0%, transparent 50%);
}

.picup_sec .item div {
  width: 100%;
}
.picup_sec .item img {
  object-fit: cover;
}

/* Custom Card Hover Effects */
.service-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* News Tab Styles */
.news-tab {
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-tab.active {
  background: var(soft-orange);
}

.news-tab:not(.active):hover {
  background-color: rgba(255, 138, 101, 0.1);
  color: #FF8A65;
}

.page_home #events-content .cat1 .cat_box {
  background-color: rgb(129,199,132,0.2);
  color: rgb(129,199,132,1);
}
.page_home #events-content .cat2 .cat_box {
  background-color: rgba(59, 130, 246, 0.2);
  color: rgba(59, 130, 246, 1);
}
.page_home #events-content .cat3 .cat_box {
  background: rgba(168, 85, 247, 0.2);
  color: rgba(168, 85, 247, 1);
}
.page_home #events-content .cat4 .cat_box {
  background-color: rgba(249, 115, 22, 0.2);
  color: rgba(249, 115, 22, 1);
}

.page_home #reports-content .cat1 .cat_box {
  background-color: rgb(129,199,132,0.2);
  color: rgb(129,199,132,1);
}
.page_home #reports-content .cat2 .cat_box {
  background-color: rgba(59, 130, 246, 0.2);
  color: rgba(59, 130, 246, 1);
}
.page_home #reports-content .cat3 .cat_box {
  background: rgba(168, 85, 247, 0.2);
  color: rgba(168, 85, 247, 1);
}
.page_home #reports-content .cat4 .cat_box {
  background-color: rgba(249, 115, 22, 0.2);
  color: rgba(249, 115, 22, 1);
}
.page_home #reports-content .cat5 .cat_box {
  background-color: rgba(20,184,166, 0.2);
  color: rgba(20,184,166, 1);
}
.page_home #reports-content .cat6 .cat_box {
  background-color: rgba(236, 72, 153, 0.2);
  color: rgba(236, 72, 153, 1);
}

/* News Content Animation */
.news-content {
  transition: all 0.3s ease;
}

.news-content.hidden {
  opacity: 0;
  pointer-events: none;
}

.news-content.active {
  opacity: 1;
  pointer-events: auto;
}

.news-item {
    transition: all 0.3s ease;
    border-left: 4px solid transparent; 
}

/* News Item Hover Effect */
.news-item .flex .text-box {
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  
}
.news-item .flex .text-box img {
  display: none;
}

.news-item:hover {
  border-left-color: #FF8A65;
  transform: translateX(5px);
}

.cat2 .icon,
.cat2 .category,
.cat2 .status {
  background: rgba(59,130,246,0.2) !important;
}
.cat2 .icon i,
.cat2 .day,
.cat2 .month,
.cat2 .category,
.cat2 .status {
  color: rgb(59,130,246) !important;
}
.cat2 .icon i:before {
  content: "\f51c";
}
.news-item .category {
  display: inline-block;
}
.cat2 .btn_detail {
  background-color: rgb(59,130,246) !important;
}

.cat3 .icon,
.cat3 .category,
.cat3 .status {
  background: rgba(168,85,247,0.2) !important;
}
.cat3 .icon i,
.cat3 .day,
.cat3 .month,
.cat3 .category,
.cat3 .status {
  color: rgba(168,85,247,1) !important;
}
.cat3 .icon i:before {
  content: "\f4c4";
}
.cat3 .btn_detail {
  background-color: rgba(168,85,247,1) !important;
}

.cat4 .icon,
.cat4 .category,
.cat4 .status {
  background: rgba(249,115,22,0.2) !important;
}
.cat4 .icon i,
.cat4 .day,
.cat4 .month,
.cat4 .category,
.cat4 .status {
  color: rgba(249,115,22,1) !important;
}
.cat4 .icon i:before {
  content: "\f21e";
}
.cat4 .btn_detail {
  background-color: rgba(249,115,22,1) !important;
}

.page-report .cat4 .icon i:before {
  content: "\f004";
}

.cat5 .icon,
.cat5 .category,
.cat5 .status {
  background: rgba(20,184,166,0.2) !important;
}
.cat5 .icon i,
.cat5 .day,
.cat5 .month,
.cat5 .category,
.cat5 .status {
  color: rgba(20,184,166,1) !important;
}
.cat5 .icon i:before {
  content: "\f4d8";
}
.cat5 .btn_detail {
  background-color: rgba(20,184,166,1) !important;
}

.cat6 .icon,
.cat6 .category,
.cat6 .status {
  background: rgba(236,72,153,0.2) !important;
}
.cat6 .icon i,
.cat6 .day,
.cat6 .month,
.cat6 .category,
.cat6 .status {
  color: rgba(236,72,153,1) !important;
}
.cat6 .icon i:before {
  content: "\f1ae";
}
.cat6 .btn_detail {
  background-color: rgba(236,72,153,1) !important;
}
    
article[data-time="status3"] {
  cursor: not-allowed;
}
article[data-time="status3"] .icon,
article[data-time="status3"] .category,
article[data-time="status3"] .status {
  background: rgba(107,114,128,0.2) !important;
}
article[data-time="status3"] .icon i,
article[data-time="status3"] .day,
article[data-time="status3"] .month,
article[data-time="status3"] .category,
article[data-time="status3"] .status {
  color: rgba(107,114,128,1) !important;
}
article[data-time="status3"] .expire {
  opacity: 0;
}
article[data-time="status3"] .btn_detail {
  background-color: rgba(107,114,128,1) !important;
  pointer-events: none;
}

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 5px;
}
.pagination ul li > a,
.pagination ul li > span {
  display: block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.pagination ul li > a:hover,
.pagination ul li > a:hover button {
  color: #FFB23B;
}
.pagination .page-numbers.current {
  background-color: #FFB23B;
  border-radius: 0.5rem;
  color: #fff;
}
.pagination ul li:has(.page-numbers.dots) {
  display: none;
}

/* Pick Up Item Effects */
.pickup-item {
  transition: all 0.3s ease;
  position: relative;
}

.pickup-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 138, 101, 0.1), rgba(255, 183, 77, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.pickup-item:hover::after {
  opacity: 1;
}

.pickup-item:hover {
  transform: scale(1.02);
}

/* Button Enhancements */
.btn-primary {
  background: linear-gradient(135deg, #FF8A65, #FFB74D);
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* Footer Enhancements */
footer {
  background: var(--orange1);
}
footer .py-12 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.copyright-box {
  background: var(--orange1);
  border-top: 1px solid #fff;
}

.grid-cols3-center {
  grid-template-columns: repeat(auto-fit, calc(100% / 3 - 2rem));
  justify-content: center;
}

.page-single .thumbnail {
  display: none;
}

@media (max-width: 1023px) {
  .flex.flex-col.gap-8 {
    gap: 0;
  }
  main > .container.mx-auto.px-4 {
    padding: 0;
  }
}
/* Responsive Enhancements */
@media (max-width: 768px) {
  .grid-cols3-center {
    display: block;
  }
  .sp-change-down.p-8 {
    padding: 1rem;
  }
  .sp-change-down2.my-16 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  article.news-item {
    border: none;
    transform: none !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  #reportsList article .sub_box,
  #reportsList article .sub_box > div {
    display: block;
  }
  #reportsList article .sub_box span {
    width: 100%;
    display: block;
    margin: 0 0 16px;
}

  article .p-8 {
    padding: 1.25rem;
  }

  .hero-text h2 {
    font-size: 2.5rem;
  }
  .service-cards {
    gap: 1.5rem;
  }
  .pickup-grid {
    gap: 1.5rem;
  }
  footer h3 {
    font-size: 1.5rem !important;
  }
  footer .py-12 {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
/* Loading Animation for Images */
.image-placeholder {
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
/* Scroll Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF8A65, #FFB74D);
  z-index: 1000;
  transition: width 0.3s ease;
}

/* Focus States for Accessibility */
a:focus,
button:focus {
  outline: 2px solid #FF8A65;
  outline-offset: 2px;
  outline: none;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .bg-warm-beige {
    background-color: #FFFFFF;
  }
  .text-gray-600 {
    color: #000000;
  }
}
/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* Dropdown Menu Styles */
.group:hover .group-hover\\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\\:visible {
  visibility: visible;
}

/* Dropdown Menu Animation */
.dropdown-menu {
  transition: all 0.2s ease-in-out;
  transform: translateY(-10px);
}

.group:hover .dropdown-menu {
  transform: translateY(0);
}

/* Sidebar Navigation Styles */
.sidebar-nav {
  position: sticky;
  top: 6rem;
}

.sidebar-nav a {
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  border-left-color: #FF8A65;
  background-color: rgba(255, 138, 101, 0.1);
  transform: translateX(5px);
}

/* Content Area Styles */
.content-section {
  scroll-margin-top: 120px;
  padding: 0 0 2rem;
  overflow: hidden;
}
.content-section > div,
.content-section > p {
  padding: 0 2rem;
}
.content-section > h3 {
    background: #FFB74D;
    position: relative;
    color: #fff;
    padding: 20px 2rem;
}
.content-section > h3 i {
    font-size: 0.9em;
    margin-bottom: -0.1em;
}
.page-green2 .content-section > h3 {
    background: var(--green2);
}

@media screen and (max-width: 600px) {
  .content-section > h3 {
    font-size: 1.3rem;
    padding: 10px 10px 10px 15px;
  }
}

/*.content-section h3::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 30px;
  background: linear-gradient(135deg, #FF8A65, #FFB74D);
  border-radius: 2px;
}*/


.border-none::before {
  content: none !important;
}

/* Breadcrumb Styles */
.breadcrumb {
  background: linear-gradient(135deg, rgba(245, 245, 220, 0.8), rgba(250, 250, 248, 0.8));
}

.breadcrumb a:hover {
  color: #FF8A65;
}

/* Service Card Enhanced Styles */
.service-detail-card {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-detail-card:hover {
  border-color: rgba(255, 138, 101, 0.3);
  transform: translateY(-2px);
}

/* Info Box Styles */
.info-box {
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #FF8A65, #FFB74D);
}

.emergency-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
  border: 2px solid rgba(239, 68, 68, 0.2);
}

/* Grid Layout Enhancements */
.service-grid {
  gap: 2rem;
}

.object-fit {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.object-fit img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.box-100 {
  width: 100%;
  height: 100%;
}
.overflow-hidden {
  overflow: hidden;
}

@media (max-width: 768px) {
  .service-grid {
    gap: 1rem;
  }
}
/* Section Dividers */
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FF8A65, #FFB74D);
  border-radius: 2px;
  margin: 2rem auto;
}

/* Contact Section Enhancements */
.contact-highlight {
  background: linear-gradient(135deg, #FF8A65, #FFB74D);
  position: relative;
  overflow: hidden;
}

.contact-highlight::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

/* Page Navigation */
.page-nav {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: none;
}

@media (min-width: 1280px) {
  .page-nav {
    display: block;
  }
}
.page-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-nav li {
  margin: 10px 0;
}

.page-nav a {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 138, 101, 0.3);
  transition: all 0.3s ease;
}

.page-nav a:hover,
.page-nav a.active {
  background: #FF8A65;
  transform: scale(1.3);
}

/* Table Styles */
.service-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.service-table th,
.service-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 138, 101, 0.2);
}

.service-table th {
  background: linear-gradient(135deg, rgba(255, 138, 101, 0.1), rgba(255, 183, 77, 0.1));
  font-weight: 600;
  color: #4a4a4a;
}

.service-table tr:hover {
  background: rgba(255, 138, 101, 0.05);
}

/* Print Styles */
@media print {
  .no-print {
    display: none !important;
  }
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }
  .sidebar-nav {
    display: none;
  }
  .content-section {
    page-break-inside: avoid;
  }
}/*# sourceMappingURL=style.css.map */