@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700;800&family=Noto+Sans+JP:wght@400;500;700&display=swap');

:root {
    --primary: #ff9f43;    /* 親しみやすいオレンジ */
    --primary-dark: #ee5253;
    --secondary: #10ac84;  /* 安心感のあるグリーン */
    --accent: #ff6b6b;     /* アクセントの赤系 */
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --bg-soft: #fff9f0;    /* 暖かいベージュ */
    --card-bg: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 800;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo i {
    font-size: 1.8rem;
    filter: drop-shadow(2px 2px 0 rgba(243, 156, 18, 0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: -2px;
}

.header-contact {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn-phone, .btn-line {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-phone {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    flex-direction: column;
    gap: 2px;
    padding: 10px 36px;
}

.btn-phone .phone-label {
    font-size: 0.7rem;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.05em;
    line-height: 1;
}

.btn-phone .phone-number {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-phone:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 159, 67, 0.4);
}

.btn-line {
    background: #06C755;
    color: var(--white);
}

.btn-line:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 5% 150px;
    background: var(--bg-soft);
    overflow: hidden;
}

/* Decorative circles */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.4;
}

.hero::before {
    width: 400px; height: 400px;
    background: var(--primary);
    top: -100px; right: -100px;
}

.hero::after {
    width: 300px; height: 300px;
    background: var(--secondary);
    bottom: -100px; left: -100px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2rem, 8vw, 3.8rem);
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--primary);
    display: block;
    font-size: 0.6em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-content .highlight {
    background: linear-gradient(transparent 70%, #ffeaa7 70%);
    padding: 0 10px;
}

/* Common Section */
section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: var(--primary);
    font-weight: 800;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 5px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '●';
    color: var(--primary);
    font-size: 0.5rem;
    position: absolute;
    top: -10px;
    right: -15px;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #fdf0e0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 20px;
    background: var(--card-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.service-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Price Section */
#price {
    background: var(--bg-soft);
    border-radius: 60px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.price-container {
    max-width: 900px;
    margin: 0 auto;
}

.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.price-table tr {
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border-radius: 20px;
}

.price-table td, .price-table th {
    padding: 25px;
}

.price-table th {
    color: var(--secondary);
    font-size: 1.2rem;
    text-align: left;
    width: 40%;
    border-radius: 20px 0 0 20px;
}

.price-table td {
    text-align: right;
    border-radius: 0 20px 20px 0;
}

.price-table .price-val {
    font-size: 2rem;
    color: var(--primary-dark);
    font-weight: 800;
}

/* Staff Section */
.staff-container {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: var(--white);
    border-radius: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.staff-img {
    flex: 1;
    position: relative;
}

.staff-img img {
    border-radius: 30px;
    box-shadow: 15px 15px 0 var(--bg-soft);
}

.staff-text {
    flex: 1.5;
}

.staff-name {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.staff-name span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: normal;
}

.staff-text p {
    font-size: 1.1rem;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--primary);
}

/* Mobile Fixed Contact */
.fixed-contact {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 5%;
    right: 5%;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.fixed-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: #fff;
    padding: 80px 5% 40px;
    text-align: center;
    border-radius: 60px 60px 0 0;
}

.footer-logo {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-info {
    margin-bottom: 40px;
}

.copyright {
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .staff-container { flex-direction: column; text-align: center; padding: 40px; }
    .staff-img img { box-shadow: 0 15px 0 var(--bg-soft); margin-bottom: 30px; }
    .staff-text p { border-left: none; border-top: 4px solid var(--primary); padding: 20px 0 0; }
}

@media (max-width: 768px) {
    .header-contact { display: none; }
    .hero { padding: 80px 5% 100px; }
    .hero-content h1 { font-size: 2.5rem; }
    .price-table th, .price-table td { padding: 15px; display: block; text-align: center; width: 100%; border-radius: 0; }
    .price-table tr { margin-bottom: 20px; display: block; border-radius: 20px; overflow: hidden; }
    .section-title h2 { font-size: 2rem; }
    .fixed-contact { display: block; }
    body { padding-bottom: 120px; }
}
