* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', 'MS PGothic', 'Arial', sans-serif;
line-height: 1.6;
color: #333;
}

/* タイトル用の装飾フォント */
.hero-title,
.section-title,
.store-name {
font-family: 'HGP創英角ｺﾞｼｯｸUB', 'Arial Black', sans-serif;
font-weight: 500;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.header {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1rem 2rem;
}

.logo {
display: flex;
align-items: center;
gap: 10px;
}

.logo img {
height: 40px;
width: auto;
}

.logo-text {
font-size: 1.2rem;
font-weight: bold;
color: #d63384;
font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', 'MS PGothic', 'Arial', sans-serif;
}

.nav-menu {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-menu a {
text-decoration: none;
color: #333;
font-weight: 500;
transition: color 0.3s ease;
}

.nav-menu a:hover {
color: #d63384;
}

.hamburger {
display: none;
flex-direction: column;
cursor: pointer;
}

.hamburger span {
width: 25px;
height: 3px;
background: #333;
margin: 3px 0;
transition: 0.3s;
}

.hero {
min-height: 100vh;
display: flex;
align-items: center;
background: linear-gradient(135deg, #ffc0cb 0%, #dc143c 100%);
padding: 100px 20px 0;
}

.hero-content {
flex: 1;
color: white;
}

.hero-title {
font-size: 3rem;
margin-bottom: 1rem;
animation: fadeInUp 1s ease;
}

.hero-subtitle {
font-size: 1.2rem;
margin-bottom: 2rem;
opacity: 0.9;
animation: fadeInUp 1s ease 0.2s both;
font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', 'MS PGothic', 'Arial', sans-serif;
}

.hero-buttons {
display: flex;
gap: 1rem;
animation: fadeInUp 1s ease 0.4s both;
}

.btn {
padding: 12px 24px;
border-radius: 25px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s ease;
display: inline-block;
}

.btn-sakura {
background: #ffc0cb;
color: #333;
}

.btn-sakura:hover {
background: #ffb6c1;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(255, 192, 203, 0.4);
}

.btn-cherry {
background: #dc143c;
color: white;
}

.btn-cherry:hover {
background: #b91c3c;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.btn-pdf {
background: #007bff;
color: white;
}

.btn-pdf:hover {
background: #0056b3;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.hero-visual {
flex: 1;
text-align: center;
}

.hero-visual img {
max-width: 100%;
height: auto;
border-radius: 15px;
animation: fadeIn 1s ease 0.6s both;
}

.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #333;
position: relative;
}

.section-title::after {
content: '';
display: block;
width: 100px;
height: 3px;
background: linear-gradient(90deg, #ffc0cb, #dc143c);
margin: 1rem auto;
}

.services {
padding: 80px 0;
background: #f8f9fa;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}

.service-card {
background: white;
padding: 2rem;
border-radius: 15px;
text-align: center;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}

.service-card:hover {
transform: translateY(-10px);
}

.service-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.service-card h3 {
color: #d63384;
margin-bottom: 1rem;
font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', 'MS PGothic', 'Arial', sans-serif;
}

.company {
padding: 80px 0;
}

.company-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 3rem;
align-items: center;
}

.company-table {
width: 100%;
border-collapse: collapse;
}

.company-table th,
.company-table td {
padding: 15px;
border-bottom: 1px solid #eee;
text-align: left;
}

.company-table th {
background: #f8f9fa;
font-weight: bold;
width: 30%;
}

.company-image img {
width: 100%;
height: auto;
border-radius: 15px;
}

.stores {
padding: 80px 0;
background: #f8f9fa;
}

.store-card {
background: white;
border-radius: 20px;
margin-bottom: 3rem;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sakura-store {
border-left: 5px solid #ffc0cb;
}

.cherry-store {
border-left: 5px solid #dc143c;
}

.store-header {
display: grid;
grid-template-columns: 1fr 450px;
gap: 2rem;
padding: 2rem;
background: linear-gradient(135deg, #ffc0cb 0%, #dc143c 100%);
color: white;
}

.store-name {
font-size: 2rem;
margin-bottom: 1rem;
}

.store-image img {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 10px;
}

.store-content {
padding: 2rem;
}

.store-description {
margin-bottom: 2rem;
line-height: 1.8;
color: #555;
}

.store-details {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.detail-group h4 {
color: #d63384;
margin-bottom: 1rem;
border-bottom: 2px solid #ffc0cb;
padding-bottom: 0.5rem;
font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', 'MS PGothic', 'Arial', sans-serif;
}

.detail-group table {
width: 100%;
border-collapse: collapse;
}

.detail-group table th,
.detail-group table td {
padding: 8px 12px;
border-bottom: 1px solid #eee;
text-align: left;
}

.detail-group table th {
background: #f8f9fa;
font-weight: bold;
width: 40%;
}

.detail-group ul {
list-style: none;
padding: 0;
}

.detail-group ul li {
padding: 5px 0;
border-bottom: 1px solid #eee;
}

.detail-group ul li:before {
content: '✓';
color: #d63384;
margin-right: 10px;
}

.pdf-link {
text-align: center;
margin-top: 2rem;
}

.legal-info {
background: #fff;
margin: 3rem 0;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-info h3 {
color: #d63384;
margin-bottom: 2rem;
text-align: center;
font-family: 'HGP創英角ｺﾞｼｯｸUB', 'Arial Black', sans-serif;
}

.legal-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.legal-section h4 {
color: #333;
margin-bottom: 1rem;
border-bottom: 1px solid #ffc0cb;
padding-bottom: 0.5rem;
font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', 'MS PGothic', 'Arial', sans-serif;
}

.legal-section table {
width: 100%;
border-collapse: collapse;
margin-bottom: 1rem;
}

.legal-section table th,
.legal-section table td {
padding: 8px 12px;
border-bottom: 1px solid #eee;
text-align: left;
}

.legal-section table th {
background: #f8f9fa;
font-weight: bold;
width: 40%;
}

.legal-section ul {
list-style: none;
padding: 0;
}

.legal-section ul li {
padding: 5px 0;
border-bottom: 1px solid #eee;
}

.legal-section ul li:before {
content: '•';
color: #d63384;
margin-right: 10px;
}

.news {
padding: 80px 0;
}

.news-list {
max-width: 800px;
margin: 0 auto;
}

.news-item {
background: white;
padding: 2rem;
margin-bottom: 1rem;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
border-left: 4px solid #d63384;
}

.news-date {
color: #666;
font-size: 0.9rem;
margin-bottom: 0.5rem;
font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', 'MS PGothic', 'Arial', sans-serif;
}

.news-title {
color: #d63384;
font-size: 1.2rem;
margin-bottom: 1rem;
font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', 'MS PGothic', 'Arial', sans-serif;
}

.news-content {
line-height: 1.6;
color: #555;
}

.news-link {
margin-top: 1rem;
text-align: right;
}

.btn-primary {
background: #d63384;
color: white;
padding: 8px 20px;
border-radius: 20px;
text-decoration: none;
font-size: 0.9rem;
display: inline-block;
transition: all 0.3s ease;
}

.btn-primary:hover {
background: #b91c3c;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(214, 51, 132, 0.4);
}

.load-more-container {
text-align: center;
margin-top: 2rem;
padding: 2rem 0;
}

.btn-load-more {
background: linear-gradient(135deg, #ffc0cb 0%, #dc143c 100%);
color: white;
padding: 12px 32px;
border: none;
border-radius: 25px;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.btn-load-more:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(214, 51, 132, 0.5);
}

.btn-load-more:active {
transform: translateY(-1px);
}

.recruit {
padding: 80px 0;
background: #f8f9fa;
}

.recruit-content {
text-align: center;
max-width: 600px;
margin: 0 auto;
}

.contact {
padding: 80px 0;
}

.contact-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.contact-item {
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
color: #d63384;
margin-bottom: 1rem;
font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', 'Yu Gothic', 'MS PGothic', 'Arial', sans-serif;
}

.footer {
background: #333;
color: white;
padding: 2rem 0;
}

.footer-content {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.footer-logo {
height: 60px;
width: auto;
object-fit: contain;
}

@keyframes fadeInUp {
opacity: 0;
transform: translateY(30px);
}

@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

@media (max-width: 768px) {
.hamburger {
display: flex;
}

.nav-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
width: 100%;
background: white;
flex-direction: column;
padding: 1rem;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
display: flex;
}

.hero {
flex-direction: column;
text-align: center;
padding: 120px 20px 20px;
}

.hero-title {
font-size: 2rem;
}

.hero-buttons {
justify-content: center;
flex-wrap: wrap;
}

.company-content {
grid-template-columns: 1fr;
}

.store-header {
grid-template-columns: 1fr;
text-align: center;
}

.store-details {
grid-template-columns: 1fr;
}

.legal-content {
grid-template-columns: 1fr;
}

.contact-content {
grid-template-columns: 1fr;
}

.services-grid {
grid-template-columns: 1fr;
}
}

html {
scroll-behavior: smooth;
}

section {
scroll-margin-top: 80px;
}

#cherry-pharmacy {
scroll-margin-top: 120px;
}

.nav-menu a {
position: relative;
}

.nav-menu a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 50%;
background: #d63384;
transition: all 0.3s ease;
}

.nav-menu a:hover::after {
width: 100%;
left: 0;
}

.service-card,
.store-card,
.contact-item,
.news-item {
animation: fadeInUp 0.6s ease forwards;
opacity: 0;
transform: translateY(30px);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
* {
animation: none !important;
transition: none !important;
}
}