/* パンくずリスト */
.breadcrumb {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
    padding: 10px 0;
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.breadcrumb .container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb li {
    font-size: 13px;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '|';
    margin: 0 15px;
    color: #666;
    font-weight: normal;
}

.breadcrumb a {
    color: #003d82;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.breadcrumb a:hover {
    background-color: #003d82;
    color: #ffffff;
    transform: translateY(-1px);
}

.breadcrumb li:last-child {
    color: #333;
    font-weight: 600;
}

/* 予約ページメイン */
.reservation-page {
    padding: 60px 0;
}

.reservation-page .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ビジターセクション */
.visitor-section {
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2em;
    color: #003d82;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.visitor-content {
    max-width: 1400px;
    margin: 0 auto;
}

.visitor-heading {
    font-size: 1.5em;
    color: #003d82;
    margin-bottom: 20px;
    font-weight: 600;
}

.visitor-text {
    font-size: 1.1em;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
}

.online-reservation-btn {
    display: inline-block;
    padding: 15px 60px;
    background-color: #ffffff;
    color: #003d82;
    border: 2px solid #003d82;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.online-reservation-btn:hover {
    background-color: #003d82;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 61, 130, 0.2);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .online-reservation-btn {
        display: block;
        margin: 0 auto;
    }
}

/* イブニングハーフセクション */
.evening-half-section {
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.price-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
}

.day-label {
    display: inline-block;
    background-color: #1e88e5;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 25px;
}

.price {
    font-size: 2.5em;
    color: #1565c0;
    font-weight: bold;
}

.tax-label {
    font-size: 0.5em;
    color: #666;
    font-weight: normal;
}

.info-section {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.check-icon {
    color: #1e88e5;
    font-size: 1.5em;
    font-weight: bold;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-title {
    color: #1e88e5;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.info-list li::before {
    content: '−';
    position: absolute;
    left: 0;
    color: #666;
}

.notice-box {
    background-color: #e3f2fd;
    border-left: 4px solid #1e88e5;
    padding: 20px 25px;
    margin-bottom: 40px;
    font-size: 1em;
    color: #333;
}

.contact-section {
    margin-top: 40px;
}

.contact-section p {
    font-size: 1em;
    color: #333;
    margin-bottom: 15px;
}

.tel-link {
    color: #1e88e5;
    text-decoration: none;
    font-weight: 600;
}

.tel-link:hover {
    text-decoration: underline;
}

.tel-only-text {
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.tel-reservation-btn {
    display: inline-block;
    padding: 15px 60px;
    background-color: #ffffff;
    color: #1e88e5;
    border: 2px solid #1e88e5;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tel-reservation-btn:hover {
    background-color: #1e88e5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(30, 136, 229, 0.2);
}

/* レスポンシブ対応（イブニングハーフ） */
@media (max-width: 768px) {
    .price-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tel-reservation-btn {
        display: block;
        margin: 0 auto;
    }
}

/* プロ・ジュニアセクション */
.pro-junior-section {
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.pro-junior-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.image-area {
    width: 100%;
}

.image-area img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.text-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-text {
    color: #d32f2f;
    font-size: 1em;
    font-weight: 600;
    margin: 0;
}

.contact-text {
    font-size: 1em;
    color: #333;
    margin: 20px 0;
}

/* レスポンシブ対応（プロ・ジュニア） */
@media (max-width: 768px) {
    .pro-junior-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}