/* みのりタクシー 共通スタイル */

/* ベーススタイル */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* スムーススクロール */
html {
    scroll-behavior: smooth;
}

/* 電話ボタン共通スタイル */
.tel-button {
    background-color: rgb(236 72 153); /* bg-pink-500 */
    color: white;
    font-weight: bold;
    border-radius: 9999px;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-decoration: none;
}

.tel-button:hover {
    background-color: rgb(219 39 119); /* bg-pink-600 */
}

.tel-button-large {
    background-color: rgb(236 72 153);
    color: white;
    font-weight: bold;
    border-radius: 9999px;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    font-size: 1.5rem;
    line-height: 2rem;
    text-decoration: none;
}

.tel-button-large:hover {
    background-color: rgb(219 39 119);
}

@media (min-width: 768px) {
    .tel-button-large {
        padding: 1.5rem 3rem;
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

.tel-button-medium {
    background-color: rgb(236 72 153);
    color: white;
    font-weight: bold;
    border-radius: 9999px;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    line-height: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}

.tel-button-medium:hover {
    background-color: rgb(219 39 119);
}

@media (min-width: 768px) {
    .tel-button-medium {
        padding: 0.75rem 1.5rem;
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}

.tel-button-fixed {
    background-color: rgb(236 72 153);
    color: white;
    font-weight: bold;
    transition: all 0.3s;
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    text-decoration: none;
}

.tel-button-fixed:hover {
    background-color: rgb(219 39 119);
}

/* セクション見出し共通スタイル */
.section-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: bold;
    text-align: center;
    color: rgb(219 39 119); /* text-pink-600 */
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
        margin-bottom: 3rem;
    }
}

/* カード共通スタイル */
.card {
    background-color: white;
    border-radius: 1rem; /* rounded-xl */
    box-shadow: 0 20px 25px -5px rgba(236, 72, 153, 0.1), 0 10px 10px -5px rgba(236, 72, 153, 0.04); /* ピンク系の柔らかい影 */
    overflow: hidden;
    transition: all 0.3s;
}

.card:hover {
    box-shadow: 0 25px 50px -12px rgba(236, 72, 153, 0.25);
    transform: translateY(-4px);
}

/* ヒーローテキスト */
.hero-title {
    color: white;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: bold;
    line-height: 1.625;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3rem;
        line-height: 1;
    }
}

.hero-subtitle {
    color: white;
    font-size: 1.125rem;
    line-height: 1.75rem;
    line-height: 1.625;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

/* リンクスタイル */
.link-pink {
    color: rgb(219 39 119);
    font-weight: bold;
    transition: all 0.2s;
    text-decoration: none;
}

.link-pink:hover {
    color: rgb(190 24 93); /* text-pink-700 */
}

/* 固定ヘッダー */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* 固定フッターボタン（スマホ用） */
.fixed-call-button {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 -10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .fixed-call-button {
        display: none;
    }
}

/* レスポンシブテキストサイズ */
.text-responsive-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .text-responsive-lg {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}

.text-responsive-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .text-responsive-xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

/* スペーシング */
.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

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

/* テーブルスタイル */
.info-table th {
    text-align: left;
    padding: 1rem;
    background-color: rgb(252 231 243); /* bg-pink-100 */
    font-weight: bold;
}

.info-table td {
    padding: 1rem;
}

.info-table tr {
    border-bottom: 1px solid rgb(229 231 235); /* border-gray-200 */
}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ふわっと浮かび上がるアニメーション（高齢者配慮：ゆっくり） */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-up.is-visible {
    animation: fadeUp 1s ease-out forwards;
}
