/* Noto Serif JP（h1ブランド名用） */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&display=swap');

/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ゴシック系フォントファミリー（サイト全体で統一） */
body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Yu Gothic UI', Meiryo, sans-serif;
    line-height: 1.6;
    color: #2E2E2E;
    background-color: #E6EFEA;
    padding-top: 0;
}

/* 固定ヘッダー分のスペース（TOPは70px、TOP以外は100px） */
body:not(.age-verification) {
    padding-top: 100px;
}

body.page-top:not(.age-verification) {
    padding-top: 70px;
}

/* すべてのh2にデザインを適用 */
h2 {
    position: relative;
    font-weight: bold;
}

/* セクション内h2・section-titleはTOPと同じデザイン（page-header・hero・verification除く） */
h2:not(.page-header h2):not(.hero-content h2):not(.verification-content h2) {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #2F3E4E;
    padding-bottom: 20px;
}

h2:not(.page-header h2):not(.hero-content h2):not(.verification-content h2)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
    border-radius: 2px;
}

.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 年齢認証ページ */
.age-verification {
    background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 30px 20px;
}

.verification-container {
    width: 100%;
    padding: 0;
}

.age-verification .verification-box {
    background: white;
    border-radius: 0 0 20px 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 20px 0 60px rgba(0, 0, 0, 0.3), -20px 0 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 0;
    border-top: none;
    position: relative;
    z-index: 0;
}

.site-logo {
    font-size: 2.5em;
    font-weight: bold;
    color: #2F3E4E;
    margin: 0;
    flex-shrink: 0;
}

.site-logo img {
    max-width: 300px;
    height: auto;
    display: block;
}

.verification-content {
    flex: 1;
    text-align: center;
}

.verification-content h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: #2F3E4E;
    position: relative;
    padding-bottom: 20px;
    font-weight: bold;
}

.verification-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
    border-radius: 2px;
}

.warning-text {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.age-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
    color: white;
    flex: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 173, 157, 0.4);
}

.btn-secondary {
    background: #e0e0e0;
    color: #666;
    flex: 1;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

.disclaimer {
    font-size: 0.9em;
    color: #999;
    line-height: 1.6;
}

/* ヘッダー */
.header {
    background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header .site-logo {
    color: white;
    font-size: 2em;
    margin: 0;
}

.header .site-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.header .site-logo a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.header .site-logo a:hover {
    opacity: 0.8;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.nav a:hover,
.nav a.active {
    background: rgba(255, 255, 255, 0.2);
}

/* ハンバーガーメニューボタン */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ヒーローセクション */
.hero {
    background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.hero-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.hero-content p {
    font-size: 1.3em;
    opacity: 0.9;
}

/* セクション */
section {
    padding: 60px 0;
}

/* section-subtitle（TOPのsection-title内サブテキスト・同じデザイン体系） */
.section-subtitle {
    display: block;
    font-size: 0.4em;
    font-weight: normal;
    color: #8FAD9D;
    margin-top: 10px;
    letter-spacing: 0.1em;
    text-align: center;
}

.page-header {
    background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.page-header h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
    font-weight: bold;
}

.page-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* 特徴グリッド */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}


.feature-card-thumbnail {
    width: 100%;
    padding-top: 75%; /* 4:3 ratio (3/4 = 0.75 = 75%) */
    position: relative;
    background: linear-gradient(135deg, #CFE3D8 0%, #DCE9E2 100%);
    overflow: hidden;
}

.feature-card-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card-content {
    padding: 30px;
}

.feature-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 1.8em;
    color: #8FAD9D;
    margin-right: 12px;
    line-height: 1;
}

.feature-icon i {
    display: block;
}

.feature-card h3 {
    font-size: 1.5em;
    color: #2F3E4E;
    margin: 0;
    line-height: 1;
}

/* 情報セクション */
.info-section {
    background: white;
}

.features {
    background: #E6EFEA;
}

/* index.htmlの「私たちについて」セクション用スタイル */
.age-verification #mainContent {
    max-width: 1280px;
    width: 100%;
}

.age-verification #mainContent .features {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3), 20px 0 60px rgba(0, 0, 0, 0.3), -20px 0 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    margin-bottom: 0;
    border-bottom: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.age-verification #mainContent .features::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: white;
    z-index: 2;
}

.age-verification #mainContent .features .container {
    padding: 0;
}

.cast-event-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: start;
}

.cast-event-item {
    width: 100%;
}

.cast-event-item .section-title {
    font-size: 2em;
    margin-bottom: 30px;
}

.cast-event-image {
    width: 100%;
    height: 250px;
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cast-event-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .cast-event-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    text-align: center;
    padding: 30px;
    background: #DCE9E2;
    border-radius: 15px;
}

.info-box-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.info-box-icon {
    font-size: 1.25em;
    color: #8FAD9D;
    flex-shrink: 0;
}

.info-box-heading h4 {
    margin: 0;
    font-size: 1.2em;
    color: #2F3E4E;
}

.info-box h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #2F3E4E;
}

.info-box p {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.sub-text {
    color: #999;
    font-size: 0.9em;
}

/* TOP よくあるご質問 2カラム（左：画像・右：info-grid縦並び） */
.faq-section-two-col .faq-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section-two-col .faq-two-col-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-section-two-col .faq-two-col-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.faq-section-two-col .faq-two-col-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-section-two-col .info-grid.info-grid-vertical {
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .faq-section-two-col .faq-two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .faq-section-two-col .faq-two-col-image {
        order: 1;
    }

    .faq-section-two-col .faq-two-col-content {
        order: 2;
    }
}

/* スタッフ一覧 */
.staff-section {
    background: white;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #8FAD9D;
    background: white;
    color: #8FAD9D;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #8FAD9D;
    color: white;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 769px) {
    .staff-grid {
        grid-template-columns: repeat(5, 1fr) !important;
        display: grid !important;
    }
    
    .staff-card {
        flex-direction: column !important;
    }
    
    .staff-image {
        width: 100% !important;
        min-width: auto !important;
        height: 300px !important;
    }
    
    .staff-info {
        flex: none !important;
        padding: 20px !important;
    }
}

.staff-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.staff-image {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

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

.staff-placeholder {
    color: white;
    font-size: 1.2em;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
}

.badge-popular {
    background: #ff6b6b;
    color: white;
}

.badge-new {
    background: #4ecdc4;
    color: white;
}

.staff-info {
    padding: 20px;
}

.staff-info h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.staff-info h3 .staff-age {
    color: #666;
    font-weight: normal;
    font-size: 0.6em;
    margin-left: 8px;
}

.staff-type {
    color: #666;
    margin-bottom: 5px;
}

.staff-size {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.staff-time {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.staff-time i {
    color: #8FAD9D;
    margin-right: 5px;
}

.staff-desc {
    margin-top: 15px;
    color: #666;
    line-height: 1.6;
}

/* 料金システム */
.price-section {
    background: white;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* 料金2カラムグリッド */
.price-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .price-grid-2col {
        grid-template-columns: 1fr;
    }
}

/* サービス概要2カラム（画像左・コンテンツ右） */
.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.service-overview-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-overview-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-overview-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    align-self: center;
}

.service-overview-item h3 {
    font-size: 1.25em;
    margin-bottom: 10px;
    color: #2F3E4E;
    border-bottom: 2px solid #8FAD9D;
    padding-bottom: 8px;
}

.service-overview-item p {
    margin: 0;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .service-overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* service-guide.htmlのprice-gridをfeature-gridと同じスタイルに */
.price-section .price-grid.content-spacing {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 40px;
    margin-bottom: 0;
}

.price-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.price-card.featured {
    border-color: #8FAD9D;
    box-shadow: 0 10px 30px rgba(143, 173, 157, 0.2);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
}

.price-header h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333;
}

.price-amount {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5em;
    vertical-align: top;
}

.amount {
    font-size: 3em;
    font-weight: bold;
    color: #8FAD9D;
}

.period {
    font-size: 1.2em;
    color: #666;
}

.price-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-features li:before {
    content: "✓ ";
    color: #4ecdc4;
    font-weight: bold;
    margin-right: 10px;
}

.price-info {
    margin-top: 50px;
}

.price-info h3 {
    font-size: 2em;
    margin-bottom: 30px;
    text-align: center;
}

.price-info .info-box {
    margin-bottom: 30px;
    text-align: left;
}

.price-info .info-box h4 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #2F3E4E;
}

.price-info .info-box ul {
    list-style: none;
    padding-left: 0;
}

.price-info .info-box li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* 出勤情報 */
.schedule-section {
    background: white;
}

/* 日付タブ（線で囲んだ日付一覧・カレント指定） */
.schedule-date-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.schedule-date-item {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #8FAD9D;
    border-radius: 8px;
    font-size: 0.95em;
    color: #2F3E4E;
    background: #fff;
}

.schedule-date-item.current {
    background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
    color: #fff;
    border-color: #7A9A88;
    font-weight: bold;
}

.schedule-filter {
    margin-bottom: 30px;
    text-align: center;
}

.schedule-filter label {
    margin-right: 10px;
    font-weight: bold;
}

.date-select {
    padding: 10px 20px;
    border: 2px solid #8FAD9D;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
}

.schedule-table {
    overflow-x: auto;
    margin-bottom: 30px;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.schedule-table th {
    background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
}

.schedule-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.time-cell {
    font-weight: bold;
    background: #CFE3D8;
}

.available {
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.2em;
}

.unavailable {
    color: #ccc;
}

.schedule-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.legend-dot.available {
    background: #4ecdc4;
}

.legend-dot.unavailable {
    background: #ccc;
}

.schedule-note {
    text-align: center;
    color: #666;
    font-size: 0.9em;
}

/* イベント */
.event-section {
    background: white;
}

.event-list {
    display: grid;
    gap: 30px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    position: relative;
}

.event-card.featured-event {
    border: 3px solid #8FAD9D;
}

.event-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    z-index: 1;
}

.event-image {
    height: 100%;
    background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-placeholder {
    color: white;
    font-size: 1.2em;
}

.event-content {
    padding: 30px;
}

.event-content h3 {
    font-size: 2em;
    margin-bottom: 15px;
    color: #333;
}

.event-date {
    color: #8FAD9D;
    font-weight: bold;
    margin-bottom: 15px;
}

.event-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.event-details {
    list-style: none;
    margin-bottom: 20px;
}

.event-details li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.event-details li:before {
    content: "🎁 ";
    margin-right: 10px;
}

/* 求人 */
.recruit-section {
    background: white;
}

.recruit-intro {
    text-align: center;
    margin-bottom: 50px;
}

.recruit-intro h3 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2F3E4E;
}

.recruit-intro p {
    font-size: 1.2em;
    color: #666;
    line-height: 1.8;
}

.recruit-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.detail-box {
    background: #DCE9E2;
    padding: 30px;
    border-radius: 15px;
}

.detail-box h4 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #2F3E4E;
    border-bottom: 2px solid #8FAD9D;
    padding-bottom: 10px;
}

.detail-box ul {
    list-style: none;
}

.detail-box li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.8;
}

.detail-box strong {
    color: #2F3E4E;
}

/* FAQ アコーディオン */
.faq-section {
    background: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion-item {
    border: 1px solid #8FAD9D;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: #fff;
    border: none;
    font-size: 1em;
    font-weight: bold;
    color: #2F3E4E;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-accordion-trigger:hover {
    background: #f5f9f7;
}

.faq-accordion-trigger:focus {
    outline: 2px solid #8FAD9D;
    outline-offset: 2px;
}

.faq-accordion-q {
    flex: 1;
    padding-right: 16px;
}

.faq-accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #8FAD9D;
}

.faq-accordion-item.is-open .faq-accordion-icon {
    transform: rotate(180deg);
}

.faq-accordion-item.is-open .faq-accordion-trigger {
    background: #DCE9E2;
    border-bottom: 1px solid #8FAD9D;
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-accordion-item.is-open .faq-accordion-content {
    max-height: 500px;
}

.faq-accordion-content p {
    padding: 20px 24px 24px;
    margin: 0;
    line-height: 1.8;
    color: #555;
}

.faq-accordion-content .link-accent {
    color: #8FAD9D;
    text-decoration: underline;
}

.faq-accordion-content .link-accent:hover {
    color: #7A9A88;
}

.contact-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
}

/* お問い合わせ */
.contact-section {
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #2F3E4E;
}

.phone-box {
    background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
}

.phone-number {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.phone-hours {
    font-size: 1.1em;
    opacity: 0.9;
}

.store-info {
    background: #DCE9E2;
    padding: 30px;
    border-radius: 15px;
}

.store-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-form-wrapper {
    background: #DCE9E2;
    padding: 40px;
    border-radius: 15px;
}

.contact-form-wrapper h3 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #2F3E4E;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2F3E4E;
}

.required {
    color: #ff6b6b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8FAD9D;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    text-align: center;
}

/* トップページのお問い合わせフォームボタン用 */
.btn-contact-form {
    padding: 12px 30px;
    font-size: 1em;
    text-align: center;
}

/* フッター */
.footer {
    background: #2F3E4E;
    color: white;
    padding: 60px 20px 30px;
}

.footer-safety {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-title {
    text-align: center;
    color: white;
    font-size: 1.8em;
    margin-bottom: 30px;
    font-weight: bold;
}

.footer-safety-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-safety-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.footer-safety-item i {
    font-size: 2.5em;
    color: #8FAD9D;
    flex-shrink: 0;
}

.footer-safety-item h4 {
    color: white;
    font-size: 1.2em;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.footer-safety-item p {
    color: #ccc;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95em;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-note {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* レスポンシブ対応 - フッター */
@media (max-width: 768px) {
    .footer-safety-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-safety-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ハンバーガーメニュー（navが段落ちする前に格納） */
@media (max-width: 1200px) {
    .hamburger-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        gap: 0;
    }

    .nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav a {
        display: block;
        padding: 20px;
        width: 100%;
        text-align: left;
        font-size: 1.1em;
    }

    .nav a:hover,
    .nav a.active {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* レスポンシブ */
@media (max-width: 768px) {
    body:not(.age-verification) {
        padding-top: 100px;
    }

    body.page-top:not(.age-verification) {
        padding-top: 70px;
    }

    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    
    .section-intro-center {
        text-align: left !important;
    }
    
    h2 {
        font-size: 1.5em !important;
    }
    
    .section-title {
        font-size: 1.5em !important;
    }
    
    h3 {
        font-size: 1.25em !important;
    }
    
    .hero-content h2 {
        font-size: 2em !important;
    }

    /* スマホ用フォントサイズ */
    html {
        font-size: 14px;
    }

    p {
        font-size: 0.95rem;
        text-align: left;
    }

    .site-title {
        font-size: 0.85em;
    }

    .site-title-brand {
        font-size: 1.2em;
    }

    .section-subtitle {
        font-size: 0.35em;
    }

    .page-header h1 {
        font-size: 1.5em;
    }

    .page-header p {
        font-size: 1rem;
    }

    .section-intro-center,
    .text-intro-gray {
        font-size: 0.95rem;
    }

    .btn,
    .btn-cta {
        font-size: 1rem;
    }

    .phone-number {
        font-size: 1.5em !important;
    }

    .cta-item .phone-number {
        font-size: 1.4em !important;
    }

    .detail-box p,
    .price-card-text,
    .text-content-gray {
        font-size: 0.9rem;
    }

    .nav a {
        font-size: 1rem;
    }

    .footer-safety-item p,
    .footer-bottom p {
        font-size: 0.9rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .schedule-table {
        font-size: 0.9em;
    }

    .faq-accordion-trigger {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .faq-accordion-content p {
        padding: 16px 16px 20px;
        font-size: 0.9rem;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }
    
    .staff-card {
        flex-direction: row;
        align-items: stretch;
    }
    
    .staff-image {
        width: 120px;
        min-width: 120px;
        height: 100%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .staff-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
    
    .staff-info {
        flex: 1;
        padding: 15px 20px;
    }
}

/* 注意文言用スタイル */
.notice-box {
    background: #DCE9E2;
    padding: 20px 30px;
    border-radius: 10px;
    border-left: 4px solid #8FAD9D;
    margin: 20px 0;
    line-height: 1.8;
}

.notice-box p {
    color: #2E2E2E;
    margin: 0;
}

.notice-box strong {
    color: #2F3E4E;
    font-weight: bold;
}

/* ユーティリティクラス */
.section-intro {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #666;
}

.section-intro-lg {
    margin-bottom: 40px;
    line-height: 1.8;
    color: #666;
}

.section-spacing {
    margin-top: 50px;
}

.subsection-spacing {
    margin-top: 40px;
}

.content-spacing {
    margin-top: 30px;
}

.item-spacing {
    margin-top: 20px;
}

.heading-spacing {
    margin-bottom: 15px;
}

.text-content {
    line-height: 1.8;
    color: #666;
}

.text-content-with-margin {
    line-height: 1.8;
    color: #666;
    margin-top: 15px;
}

.center-content {
    text-align: center;
}

.center-with-spacing {
    text-align: center;
    margin-top: 50px;
}

.center-with-small-spacing {
    text-align: center;
    margin-top: 20px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2em;
}

.link-accent {
    color: #8FAD9D;
}

.btn-with-margin {
    margin-top: 20px;
    display: inline-block;
}

.section-intro-center {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #666;
}

/* 私たちについてセクション */
.about-wrapper {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title .about-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    font-weight: bold;
    color: rgba(143, 173, 157, 0.25);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    font-family: inherit;
    letter-spacing: 0.1em;
    display: block;
    width: 100%;
    text-align: center;
}

.info-section .section-title .about-bg-text {
    color: rgba(0, 0, 0, 0.5);
}

.section-title .about-bg-text:not(:first-child) {
    font-size: 2.5em;
}

@media (max-width: 768px) {
    .section-title .about-bg-text {
        font-size: 1.5em;
        letter-spacing: 0.05em;
    }
}

.features {
    position: relative;
    overflow: hidden;
}

/* サイトタイトル（ヘッダー高さに収まるロゴ＋テキスト） */
.site-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 1em;
    font-weight: normal;
    color: white;
}

.site-title a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site-title a:hover {
    opacity: 0.85;
}

.site-title img {
    height: 50px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* h1内テキスト部分（改行を効かせるためブロック化） */
.site-title-text {
    display: block;
}

/* h1内「LOVE はんど PIECE」用セリフ体 */
.site-title-brand {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5em;
    font-weight: bold;
    display: block;
}

/* 「はんど」部分のフォントサイズ */
.site-title-brand .brand-hand {
    font-size: 0.8em;
}

/* index.html（年齢認証ページ）ロゴ・フォント色 */
.age-verification .site-title {
    color: black;
}

.age-verification .site-title a {
    color: inherit;
}

.about-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.about-intro p {
    font-size: 1.05em;
    line-height: 2;
    color: #2E2E2E;
    margin-bottom: 24px;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ご利用までの流れ - 縦並びステップ */
.flow-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.flow-step-number {
    flex-shrink: 0;
    min-width: 120px;
    width: 120px;
    text-align: center;
    background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
    color: white !important;
    padding: 20px;
    border-radius: 10px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.flow-step-number i {
    font-size: 2.5em;
    color: white !important;
    display: block;
}

.flow-step-number span {
    font-weight: bold;
    font-size: 1.1em;
    letter-spacing: 1px;
    color: white !important;
    display: block;
}

.flow-step-content {
    flex: 1;
    text-align: left;
}

.flow-step-content h3 {
    font-size: 1.5em;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.flow-step-content p {
    color: var(--main-text-color);
    line-height: 1.8;
    font-size: 1.05em;
}

.flow-arrow {
    text-align: center;
    margin: 20px 0;
    color: var(--accent-color);
}

.flow-arrow i {
    font-size: 2em;
}

/* レスポンシブ対応 - フロー */
@media (max-width: 768px) {
    .flow-step {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    
    .flow-step-number {
        width: 80px;
        min-width: 80px;
        padding: 15px;
    }
    
    .flow-step-content {
        text-align: left;
        flex: 1;
    }
    
    .flow-step-content h3 {
        font-size: 1.25em;
    }
}

.info-box-left {
    margin-top: 20px;
    text-align: left;
}

.price-card-text {
    text-align: left;
    line-height: 1.8;
    color: #666;
}

/* サービスタグ */
.service-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-tag {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    border: 2px solid #8FAD9D;
    border-radius: 8px;
    color: #2F3E4E;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: #8FAD9D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(143, 173, 157, 0.3);
}

/* 背景シャボン玉アニメーション */
.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(207, 227, 216, 0.8), rgba(143, 173, 157, 0.3));
    opacity: 0.6;
    animation: float linear infinite;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5),
                0 0 20px rgba(143, 173, 157, 0.2);
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(var(--float-x)) scale(1);
        opacity: 0;
    }
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-duration: 15s;
    animation-delay: 0s;
    --float-x: 50px;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 25%;
    animation-duration: 20s;
    animation-delay: 2s;
    --float-x: -30px;
}

.bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 40%;
    animation-duration: 18s;
    animation-delay: 4s;
    --float-x: 70px;
}

.bubble:nth-child(4) {
    width: 70px;
    height: 70px;
    left: 55%;
    animation-duration: 22s;
    animation-delay: 1s;
    --float-x: -50px;
}

.bubble:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 70%;
    animation-duration: 17s;
    animation-delay: 3s;
    --float-x: 40px;
}

.bubble:nth-child(6) {
    width: 50px;
    height: 50px;
    left: 85%;
    animation-duration: 19s;
    animation-delay: 5s;
    --float-x: -60px;
}

.bubble:nth-child(7) {
    width: 75px;
    height: 75px;
    left: 15%;
    animation-duration: 21s;
    animation-delay: 2.5s;
    --float-x: 45px;
}

.bubble:nth-child(8) {
    width: 65px;
    height: 65px;
    left: 50%;
    animation-duration: 16s;
    animation-delay: 4.5s;
    --float-x: -35px;
}

.bubble:nth-child(9) {
    width: 85px;
    height: 85px;
    left: 30%;
    animation-duration: 23s;
    animation-delay: 1.5s;
    --float-x: 55px;
}

.bubble:nth-child(10) {
    width: 55px;
    height: 55px;
    left: 75%;
    animation-duration: 20s;
    animation-delay: 3.5s;
    --float-x: -40px;
}

/* トップページ - ご相談セクションのグリッド */
.consultation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid #8FAD9D;
    border-radius: 10px;
    background: white;
    position: relative;
}

.consultation-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

.consultation-check-icon {
    color: #8FAD9D;
    font-size: 1.5em;
    font-weight: bold;
    flex-shrink: 0;
    display: inline-block;
}

.consultation-item-text-nowrap {
    white-space: nowrap;
    font-size: 0.95em;
}

/* お問い合わせフォームラッパーの追加スタイル */
.contact-wrapper.contact-wrapper-2col {
    margin-top: 50px;
    grid-template-columns: 1fr 1fr;
}

.contact-form-wrapper-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 40px;
}

.contact-form-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #2F3E4E;
    text-align: center;
}

.contact-info-center h3 {
    text-align: center;
}

.contact-text-center {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

.contact-phone-hours {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}

/* フッターリンク */
.footer-link {
    margin-top: 10px;
}

.footer-link a {
    color: #8FAD9D;
    text-decoration: underline;
}

/* テキストコンテンツ */
.text-content-gray {
    line-height: 1.8;
    color: #666;
}

.text-intro-gray {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #666;
}

/* h3のマージン */
.heading-with-margin {
    margin-top: 40px;
}

/* ボタンコンテナ */
.btn-container {
    text-align: center;
    margin-top: 20px;
}

/* CTAセクション */
.cta-section {
    margin-top: 50px;
    margin-bottom: 40px;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.cta-item {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-item h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #2F3E4E;
}

.cta-item .phone-number {
    font-size: 2em;
    font-weight: bold;
    color: #8FAD9D;
    margin-bottom: 10px;
}

.cta-item .phone-hours {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
}

.cta-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
}

.btn-cta {
    padding: 15px 40px;
    font-size: 1.1em;
    text-align: center;
    display: inline-block;
}

/* レスポンシブ対応 - ご相談グリッド */
@media (max-width: 768px) {
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .consultation-item {
        padding: 15px;
        width: 100%;
        gap: 10px;
    }
    
    .consultation-check-icon {
        font-size: 1.2em;
    }
    
    .cta-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-item {
        padding: 30px 20px;
    }
    
    .cta-item .phone-number {
        font-size: 1.5em;
    }
}

/* スマホ用固定下部バー（電話・お問い合わせ・求人） */
.sp-fixed-bottom {
    display: none;
}

@media (max-width: 768px) {
    .sp-fixed-bottom {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 56px;
        background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
        z-index: 1000;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    }

    .sp-fixed-bottom a {
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: bold;
        transition: background 0.2s ease;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }

    .sp-fixed-bottom a.sp-fixed-phone {
        flex: 2;
        font-size: 1.2rem;
    }

    .sp-fixed-bottom a:not(.sp-fixed-phone) {
        flex: 4;
        gap: 12px;
    }

    .sp-fixed-bottom a:not(.sp-fixed-phone) i {
        flex-shrink: 0;
    }

    .sp-fixed-bottom a:last-child {
        border-right: none;
    }

    .sp-fixed-bottom a:hover,
    .sp-fixed-bottom a:active {
        background: rgba(255, 255, 255, 0.2);
    }

    /* 固定バー分の余白 */
    body:not(.age-verification) {
        padding-bottom: 56px;
    }
}

/* PC用サイド追従ボタン（ご予約・相談・お問い合わせ）contact.html以外 */
.pc-side-cta {
    display: none;
}

@media (min-width: 769px) {
    .pc-side-cta {
        display: flex;
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 999;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        padding: 20px 14px;
        background: linear-gradient(135deg, #8FAD9D 0%, #7A9A88 100%);
        color: white;
        text-decoration: none;
        font-size: 1rem;
        font-weight: bold;
        line-height: 1.6;
        letter-spacing: 0.05em;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
        border-radius: 8px 0 0 8px;
        transition: padding-right 0.2s ease, box-shadow 0.2s ease;
    }

    .pc-side-cta:hover {
        padding-right: 18px;
        box-shadow: -4px 0 15px rgba(143, 173, 157, 0.4);
    }

    body.page-contact .pc-side-cta {
        display: none !important;
    }
}
