/* Interactive Pricelist Styles */
.fixed-page-header {
	height: 75vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background-color: #f4f0eb;
}
	
.fixed-page-header-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	z-index: 1;
}
	
.fixed-page-header-title {
	position: relative;
	z-index: 2;
	color: white;
	font-family: "ads-kodama";
	font-size: 8rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	margin: 0;
}

.fixed-header-wave {
	height: 24px;
	margin-top: -24px;
	position: relative;z-index: 1;
}

@media(max-width: 768px) {
	.fixed-page-header-title {
		font-size: 4rem;
	}
}





.pricelist-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Outfit', 'Noto Sans JP', sans-serif;
    color: #333;
}

/* Top Title & Tabs System */
.pricelist-title-section {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

.pricelist-title-section .main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #5d8157;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    font-family: 'Outfit', sans-serif;
}

.pricelist-title-section .main-title span {
    font-size: 1.6rem;
    color: #333;
    display: block;
    margin-top: 5px;
    font-family: 'Noto Sans JP', sans-serif;
}

.pricelist-title-section .title-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 35px;
    border-radius: 30px;
    border: none;
    background: #334d3b; /* Dark Green */
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tab-btn.active {
    background: #709260; /* Lighter green */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(112, 146, 96, 0.3);
}

.tab-btn:hover:not(.active) {
    background: #3e5e48;
    transform: translateY(-1px);
}

.tab-content {
    display: none;
    animation: fadeInTab 0.4s ease forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* New Info Cards (Dining / Amusement) */
.info-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.info-card-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.info-card-header.blue-header {
    background: #4a88c4;
    color: #fff;
}

.info-card-header.dark-header {
    background: #334d3b;
    color: #fff;
}

/* Amusement specific headers */
.info-card-header.light-blue-header {
    background: #4A88C4;
    color: #fff;
}

.info-card-header.brown-header {
    background: #95694c;
    color: #fff;
    justify-content: center;
}

.info-card-header.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.card-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.card-logo.forest-logo span {
    font-size: 1.8rem;
    font-weight: 400;
}

.logo-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.7);
    display: inline-block;
}

.status-badge {
    font-size: 0.85rem;
    background: transparent;
    color: #fff;
    padding: 0;
    letter-spacing: 0.1em;
}

.info-card-body {
    padding: 40px;
    text-align: center;
}

.table-card-body {
    padding: 0;
}

.pricing-table-container.no-shadow {
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 20px;
    background: none;
    backdrop-filter: none;
}

.table-card-body .pricing-table th {
    background: #7ca16f;
    color: #fff;
    font-size: 1.1rem;
    padding: 15px;
    text-align: center;
    border-radius: 0;
}

.table-card-body .pricing-table td {
    border: 1px solid #e0e0e0;
    padding: 15px;
    background: #fff;
}

.table-card-body .pricing-table td.text-left {
    text-align: left;
}

.table-card-body .pricing-table td.text-center {
    text-align: center;
}

.table-card-body .bg-light {
    background-color: #fafafa !important;
}

.table-card-body .bg-gray td {
    background-color: #7ca16f !important;
    color: #fff;
    font-weight: 700;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.table-card-body .row-head {
    background-color: #6a8c5f !important;
    color: #fff;
    font-weight: 700;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.price-notes {
    font-size: 0.82rem;
    color: #555;
    padding: 0 20px 20px;
    line-height: 1.6;
    text-align: left;
}

.line-break-text {
    line-height: 1.4;
}

.line-break-text span {
    font-size: 0.8rem;
    color: #777;
    display: block;
    margin-top: 5px;
}

.btn-green-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #7ca16f;
    color: #fff;
    padding: 25px 40px;
    border-radius: 4px; /* Slightly sharp corners like the image */
    text-decoration: none;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 161, 111, 0.2);
}

.btn-green-box:hover:not(.disabled) {
    background: #6a8c5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 161, 111, 0.3);
}

.btn-green-box.disabled {
    pointer-events: none;
}

.btn-green-box .btn-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.btn-green-box .btn-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.section-title {
    font-size: 2rem;
    color: #2d5a27; /* Dark green for nature feel */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c33a3a; /* Red accent from site logo */
    margin: 10px auto 0;
}

.section-desc {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}

/* Table Styling (Redesigned for no-scroll) */
.pricing-table-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 20px;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.pricing-table th, 
.pricing-table td {
    padding: 14px 12px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    vertical-align: middle;
}

.pricing-table th {
    background: linear-gradient(135deg, #2d5a27 0%, #3f7b38 100%);
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.pricing-table th:last-child {
    border-right: none;
}

.pricing-table tr {
    transition: all 0.3s ease;
}

.pricing-table td.row-head {
    background: linear-gradient(90deg, #f4fff3 0%, #ffffff 100%);
    color: #2d5a27;
    font-weight: 700;
    border-right: 2px solid #e9f0e8;
}

.pricing-table tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background-color: #fff;
    z-index: 10;
    position: relative;
}

.pricing-table tr:hover td {
    background-color: transparent;
}

.plan-sub-row {
    padding: 5px 0;
    border-bottom: 1px dashed #ddd;
}
.plan-sub-row:last-child {
    border-bottom: none;
}

@media (max-width: 900px) {
    .pricing-table-container {
        overflow-x: auto;
    }
    .pricing-table {
        min-width: 800px;
    }
    .pricing-table th.col-fixed,
    .pricing-table td.row-head {
        position: sticky;
        left: 0;
        z-index: 2;
    }
}

/* Notes Section */
.table-notes {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.option-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.option-item:hover {
    transform: translateY(-5px);
}

.option-info {
    padding: 20px;
    flex-grow: 1;
}

.option-name {
    font-size: 1.1rem;
    color: #2d5a27;
    margin-bottom: 10px;
    line-height: 1.4;
}

.option-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c33a3a;
    margin-bottom: 15px;
}

.option-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Image Reveal Effect */
.option-image-container {
    position: relative;
    height: 60px; /* Hidden state height */
    background: #f1f1f1;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-trigger {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2d5a27;
    cursor: pointer;
    background: #e9f0e8;
}

.hover-reveal-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.option-item:hover .option-image-container {
    height: 360px; /* Reveal state height (trigger + img) */
}

.option-item:hover .hover-reveal-img {
    opacity: 1;
}

/* Details Accordion */
.details-section {
    margin-top: 50px;
}

.detail-accordion {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
}

.detail-accordion summary {
    padding: 15px 20px;
    font-weight: 700;
    color: #fff;
    background: #2d5a27;
    cursor: pointer;
    border-radius: 8px;
    list-style: none;
    position: relative;
}

.detail-accordion summary::-webkit-details-marker {
    display: none;
}

.detail-accordion summary::after {
    content: '\25BC'; /* Down arrow */
    position: absolute;
    right: 20px;
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.detail-accordion[open] summary::after {
    transform: rotate(180deg);
}

.detail-content {
    padding: 30px;
    line-height: 1.7;
    color: #444;
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.content-box {
    flex: 1;
    min-width: 300px;
}

.intro-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 25px;
    border-left: 4px solid #c33a3a;
    padding-left: 15px;
}

.menu-group {
    margin-bottom: 30px;
    background: #fdfdfd;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
}

.group-title {
    font-size: 1.2rem;
    color: #2d5a27;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
}

.icon {
    margin-right: 10px;
    font-style: normal;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.menu-list li {
    padding-left: 20px;
    position: relative;
}

.menu-list li::before {
    content: '•';
    color: #c33a3a;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
}

.detail-image {
    flex: 0 0 350px;
}

.standard-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive for details */
@media (max-width: 768px) {
    .detail-content { padding: 15px; }
    .detail-image { flex: 0 0 100%; }
}

/* Rental Section */
.rental-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px dashed #e0e0e0;
}

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

.rental-category {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}

.rental-category:hover {
    transform: translateY(-5px);
}

.rental-category .category-title {
    font-size: 1.25rem;
    color: #2d5a27;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9f0e8;
    display: flex;
    align-items: center;
}

.rental-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rental-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted #eee;
}

.rental-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.item-price {
    font-weight: 700;
    color: #c33a3a;
}

.rental-item.highlight {
    background: #fff9f9;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ffebeb;
    flex-wrap: wrap;
}

.item-detail {
    width: 100%;
    font-size: 0.8rem;
    color: #777;
    margin-top: 4px;
}

.rental-notes {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    border: 1px solid #f0f0f0;
}

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

/* Simulator Styling */
.simulator-section {
    margin-top: 60px;
    background: #fdfdfd;
    padding: 40px 20px;
    border-radius: 20px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.simulator-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.sim-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sim-group {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 6px 20px rgba(0,0,0,0.03);
    transition: opacity 0.4s ease, transform 0.4s ease, margin 0.4s ease;
}

.sim-group.sim-hidden {
    opacity: 0;
    transform: translateY(-20px);
    margin: 0;
    padding: 0;
    height: 0;
    border: none;
    overflow: hidden;
    pointer-events: none;
}

.sim-label {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 20px;
    border-bottom: 2px solid #e9f0e8;
    padding-bottom: 10px;
    position: relative;
    padding-left: 15px;
}
.sim-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 10px;
    width: 4px;
    background: #c33a3a;
    border-radius: 2px;
}

.sim-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.sim-radio-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.sim-radio-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.sim-radio-card .card-content {
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.sim-radio-card input:checked + .card-content {
    border-color: #2d5a27;
    background: #f4fff3;
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.15);
    transform: translateY(-4px);
}

.sim-radio-card:hover .card-content {
    border-color: #bbb;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.sim-radio-card input:checked:hover + .card-content {
    border-color: #2d5a27;
    transform: translateY(-5px);
}

.card-title {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.card-desc {
    font-size: 0.85rem;
    color: #666;
}

.sim-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.sim-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.01);
}

.counter-label {
    display: flex;
    flex-direction: column;
}

.counter-label span {
    font-weight: 700;
    color: #444;
    font-size: 1.05rem;
}

.counter-label small {
    color: #888;
    font-size: 0.8rem;
    margin-top: 2px;
}

.counter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.counter-controls button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    box-shadow: 2px 2px 5px #d1d1d1, -2px -2px 5px #ffffff;
    color: #2d5a27;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.counter-controls button:hover {
    color: #fff;
    background: linear-gradient(145deg, #3f7b38, #2d5a27);
    box-shadow: 2px 2px 5px #bbb, -2px -2px 5px #ffffff;
}

.counter-controls button:active {
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.2);
}

.counter-controls input {
    width: 45px;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    border: none;
    background: transparent;
    pointer-events: none;
    color: #333;
}

.sim-result-panel {
    flex: 0 0 380px;
}

.result-sticky {
    position: sticky;
    top: 20px;
    background: linear-gradient(135deg, #1b3617 0%, #2d5a27 100%);
    color: #fff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(27, 54, 23, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.result-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    letter-spacing: 0.05em;
}

.result-breakdown {
    margin-bottom: 25px;
    font-size: 1rem;
    color: #e9f0e8;
    min-height: 100px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breakdown-row.total-line {
    border-bottom: none;
    font-weight: bold;
    margin-top: 15px;
}

.result-total {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.05);
}

.total-label {
    display: block;
    font-size: 0.95rem;
    color: #e9f0e8;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.total-price {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffeb3b; /* Gold/Yellow accent */
    text-shadow: 0 0 25px rgba(255, 235, 59, 0.4);
    transition: all 0.3s ease;
}

.result-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 1024px) {
    .sim-options-grid { grid-template-columns: repeat(2, 1fr); }
    .sim-counter-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .simulator-container {
        flex-direction: column;
    }
    .sim-result-panel {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .sim-options-grid { grid-template-columns: 1fr; }
    .sim-counter-grid { grid-template-columns: 1fr; }
}
