.main-image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.main-image-wrapper {
    width: 90%;
    max-width: 1400px;
    position: relative;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.main-title {
    position: absolute;
    bottom: 100px;
    left: 30px;
    font-size: 2.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.main-subtitle {
    position: absolute;
    bottom: 60px;
    left: 30px;
    font-size: 1.2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.event-dates {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.official-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.profile-container {
    width: 90%;
    max-width: 1400px;
    background-color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-pic img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: bold;
}

.follow-btn {
    padding: 8px 20px;
    background-color: #D24848;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.follow-btn:hover {
    background-color: #B33E3E;
}

.profile-icons {
    display: flex;
    gap: 15px;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon-wrapper img {
    width: 20px;
    height: 20px;
}


.info-row {
    background-color: #fff;
    border-radius: 25px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-row:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.info-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 15px;
    white-space: nowrap;
    min-width: 180px;
}

.info-value {
    color: #333;
    font-size: 0.9rem;
    flex: 1;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .info-row {
        min-width: 100%;
    }
}

.business-hours {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background-color: #f8f9fa;
}

.business-hours h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.hours-table-wrapper {
    width: 90%;
    max-width: 1400px;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

.hours-table th {
    background-color: #f5f5f5;
    padding: 15px;
    text-align: left;
    border-bottom: 2px solid #ddd;
    color: #333;
    font-weight: 600;
}

.hours-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #666;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .hours-table-wrapper {
        width: 100%;
        padding: 15px;
    }

    .hours-table th,
    .hours-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}

.notice{
    font-size: 0.8rem;
}

.fs-7{
    font-size: 0.8rem;
}

.fs-8{
    font-size: 0.6rem;
}

.fa-heart{
    font-size: 0.8rem;
    vertical-align: middle;
    margin-right: 5px;
}

/* コメントいいねボタンのスタイル */
.btn-sm.text-danger,
.btn-sm.text-secondary {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-sm.text-danger i,
.btn-sm.text-secondary i {
    margin-right: 3px;
}

/* Top Button */
.top-button-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.top-button {
    background-color: white;
    border: 2px solid #D24848;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.top-button:hover {
    transform: scale(1.1);
}

.top-button-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
}

.top-button-text {
    font-size: 0.8rem;
    color: #D24848;
}

.fa-solid:hover {
    transform: scale(1.1, 1.1);
}

.business-introduction {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background-color: #f8f9fa;
}

.business-introduction h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.business-summary-container {
    width: 90%;
    max-width: 1400px;
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: space-between;
}

.introduction-box {
    flex: 1;
    width: 48%;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.business-information {
    flex: 1;
    width: 48%;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.introduction-box p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 992px) {
    .business-summary-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .introduction-box,
    .business-information {
        width: 100%;
        max-width: 100%;
    }
}

.page-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-container {
    width: 70%;
    max-width: 1400px;
}

.profile-header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.hotel-description {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background-color: #f8f9fa;
}

.description-box {
    width: 100%;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.location-section {
    width: 100%;
    margin-bottom: 40px;
}

.web-social {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.web-social-content {
    width: 90%;
    max-width: 1400px;
    background-color: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 1200px) {
    .main-image-wrapper,
    .profile-container,
    .introduction-box,
    .location-wrapper,
    .web-social-content {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .main-image-wrapper,
    .profile-container,
    .introduction-box,
    .location-wrapper,
    .web-social-content {
        width: 100%;
    }

    .location-details {
        max-width: 100%;
    }

    .location-map {
        width: 100%;
        min-width: unset;
        height: 300px;
    }
}

.details-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background-color: #f8f9fa;
}

.details-title {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.details-container {
    width: 90%;
    max-width: 1400px;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.amenity-group {
    width: 100%;
    max-width: 800px;
    flex-direction: column;
    gap: 15px;
}

.amenity-group-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}

.amenity-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.amenity-label {
    font-size: 0.9rem;
    color: #666;
    margin-right: 10px;
    text-align: center;
}

.amenity-checkbox {
    width: 18px;
    height: 18px;
    cursor: not-allowed;
}

.amenity-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #eee;
    margin: 15px 0;
    display: block !important;
    height: 1px;
    background-color: #eee;
}

@media (max-width: 768px) {
    .details-container {
        width: 100%;
        padding: 15px;
    }
}

.quest-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background-color: #f8f9fa;
}

.quest-title {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.quest-grid {
    width: 90%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 1200px) {
    .details-container,
    .quest-grid {
        width: 95%;
    }
}

@media (max-width: 768px) {
    .details-container,
    .quest-grid {
        width: 100%;
        padding: 15px;
    }
}

.business-promotion {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background-color: #f8f9fa;
}

.business-promotion h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.promotion-container {
    width: 90%;
    max-width: 1400px;
    position: relative;
}

.promotion-carousel {
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

.carousel-items-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 300px;
}

.promotion-item {
    display: none;
    width: calc(33.33% - 20px);
    margin: 0 10px 20px;
    box-sizing: border-box;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    transform: translateY(10px);
}

.promotion-item.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
    left: 0;
}

.carousel-arrow {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 18px;
    pointer-events: auto;
    z-index: 20;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-arrow.prev {
    margin-left: -15px;
}

.carousel-arrow.next {
    margin-right: -15px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-indicator.active {
    background-color: #D24848;
}

/* カード内の画像サイズを調整 */
.promotion-item .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* カードのサイズを統一 */
.promotion-item .card {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.promotion-item .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

@media (max-width: 1200px) {
    .promotion-container {
        width: 95%;
    }

    .promotion-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .promotion-container {
        width: 100%;
        padding: 0 15px;
    }

    .promotion-item {
        width: 100%;
        margin: 0 0 20px;
    }

    .carousel-arrow {
        width: 30px;
        height: 30px;
    }

    .carousel-arrow.prev {
        margin-left: 5px;
    }

    .carousel-arrow.next {
        margin-right: 5px;
    }
}

/* Promotion Card Styles */
.promotion-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    border: none;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.promotion-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.promotion-description {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    height: 60px;
    overflow: hidden;
}

.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-body {
    padding: 1.25rem;
}

.promotion-container .row {
    margin-left: -15px;
    margin-right: -15px;
}

/* Business Reviews Section */
.business-reviews {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 40px 0;
    background-color: #f8f9fa;
}

.business-reviews-title {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.reviews-container {
    width: 70%;
    max-width: 1000px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .reviews-container {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .reviews-container {
        width: 90%;
    }
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    align-items: center;
}

.star-rating-item {
    font-size: 1.5rem;
    cursor: pointer;
    margin-right: 5px;
    transition: transform 0.2s ease;
}

.star-rating-item:hover {
    transform: scale(1.2);
}

/* Comment Stars Styles */
.comment-stars {
    display: flex;
    align-items: center;
}

.comment-stars i {
    font-size: 1.2rem;
    margin-right: 3px;
}