/* 
  Apollo Seikotsuin - Brand Official Theme
  Colors: Orange & Yellow
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

:root {
    --brand-orange: #F39800;
    --brand-yellow: #FFF100;
    --brand-bg: #fdfcf8;
    --brand-white: #ffffff;
    --text-main: #333333;
    --text-sub: #666666;
    --text-light: #999999;
    --border-color: #e1e1e1;
    --container-width: 960px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    background-color: var(--brand-bg);
    color: var(--text-main);
    line-height: 1.6;
    font-size: 14px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Global Header */
.g-header {
    background-color: #fff;
    padding: 30px 0;
    border-bottom: 2px solid var(--brand-orange);
}

.g-header .inner {
    width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
}

/* Main Container */
.main-wrap {
    width: var(--container-width);
    margin: 0 auto;
    background-color: var(--brand-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 40px 30px;
    min-height: 800px;
    margin-top: 20px;
}

/* Salon Header */
.salon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
}

.salon-info-left {
    flex: 1;
}

.catchphrase {
    color: var(--brand-orange);
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
}

.salon-name {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-main);
}

.salon-actions {
    width: 300px;
}

.btn-reserve-brand {
    background: linear-gradient(to bottom, #ffb03b, #f39800);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    height: 50px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 0 #c27a00;
    transition: transform 0.1s;
    margin-bottom: 10px;
    border: none;
    text-decoration: none;
}

.btn-reserve-brand:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #c27a00;
}

.btn-reserve-net {
    background: linear-gradient(to bottom, #fff100, #ffcc00);
    color: #333 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    height: 50px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 0 #b38f00;
    transition: transform 0.1s;
    border: none;
    text-decoration: none;
}

.btn-reserve-net:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #b38f00;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    list-style: none;
    border-bottom: 3px solid var(--brand-orange);
    margin-bottom: 35px;
    padding: 0;
}

.tabs-nav li {
    width: 20%;
}

.tabs-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    background-color: #fafafa;
    border: 1px solid var(--border-color);
    border-bottom: none;
    font-size: 14px;
    color: var(--text-main);
    text-decoration: none;
    transition: background 0.3s;
}

.tabs-nav li.active a {
    background-color: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    font-weight: bold;
}

/* Main Visual 2-Column */
.mv-container {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.mv-left {
    flex: 1.5;
}

.mv-left img {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.mv-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mv-catch {
    font-size: 20px;
    font-weight: bold;
    color: var(--brand-orange);
    margin-bottom: 20px;
    line-height: 1.5;
}

.mv-desc {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Content Sections */
.section-title {
    font-size: 18px;
    font-weight: bold;
    border-left: 8px solid var(--brand-orange);
    padding: 4px 0 4px 15px;
    margin: 50px 0 25px 0;
    color: var(--text-main);
    background: linear-gradient(to right, #fff9e5, transparent);
}

/* Atmosphere Grid */
.atmosphere-grid {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.atmosphere-item {
    flex: 1;
}

.atmosphere-item img {
    width: 100% !important;
    height: 180px !important;
    object-fit: cover !important;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
}

.atmosphere-text {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-sub);
}

/* Tables */
.hpb-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
    border-top: 2px solid var(--brand-orange);
}

.hpb-table th, .hpb-table td {
    border-bottom: 1px solid var(--border-color);
    padding: 15px;
    vertical-align: top;
}

.hpb-table th {
    background-color: #FFF5E6;
    width: 140px;
    text-align: left;
    font-weight: bold;
    color: var(--text-main);
}

/* Review Section */
.review-card {
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.review-header {
    background-color: var(--brand-yellow);
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    border-bottom: 1px solid #eee600;
}

.review-user-info {
    font-weight: bold;
}

.review-rating-row {
    padding: 12px 15px;
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

.stars {
    color: var(--brand-orange);
    font-size: 16px;
    margin-right: 15px;
}

.review-content {
    padding: 20px 15px;
    font-size: 14px;
    line-height: 1.8;
    white-space: pre-wrap;
}

.review-reply {
    margin: 0 15px 20px 15px;
    padding: 20px;
    border-radius: 6px;
    background-color: #f9f9f9;
    border-left: 4px solid var(--brand-orange);
    font-size: 13px;
    line-height: 1.7;
}

.reply-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--brand-orange);
}

/* Staff Section */
.staff-card {
    display: flex;
    padding: 30px 0;
    border-bottom: 1px dashed var(--border-color);
}

.staff-photo img {
    width: 150px;
    border-radius: 50%; /* Circle for staff photo for variety */
    border: 3px solid var(--brand-yellow);
}

.staff-details {
    padding-left: 25px;
    flex: 1;
}

.staff-name {
    font-size: 22px;
    font-weight: bold;
    color: var(--brand-orange);
}

.staff-btn-reserve {
    display: inline-block;
    background: var(--brand-orange);
    color: #fff;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 15px;
}

/* HPB Elements Suppression (Final Defense) */
#header, .breadcrumbs, .tag, .bookmark, #hpb-header, .hpb-nav, #footer-breadcrumbs {
    display: none !important;
}

/* Coupon Items */
.coupon-item {
    border: 2px solid var(--brand-orange);
    padding: 25px;
    margin-bottom: 25px;
    background-color: #fff;
    border-radius: 8px;
}
.coupon-type {
    background-color: var(--brand-orange);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 15px;
    border-radius: 4px;
}
.coupon-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--brand-orange);
}
.coupon-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}
.coupon-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}
.coupon-price {
    font-size: 26px;
    font-weight: bold;
    color: #e63946;
}
.coupon-btn {
    background: var(--brand-orange);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
}

/* Footer */
.footer {
    width: var(--container-width);
    margin: 40px auto;
    padding: 40px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
}

@media (max-width: 960px) {
    :root { --container-width: 100%; }
    .main-wrap { padding: 20px; margin-top: 0; box-shadow: none; width: 100%; }
    .mv-container { flex-direction: column; }
    .tabs-nav li { width: 33.33%; }
    .atmosphere-grid { flex-direction: column; }
    .staff-card { flex-direction: column; align-items: center; text-align: center; }
    .staff-photo { margin-bottom: 20px; }
    .salon-header { flex-direction: column; align-items: flex-start; }
    .salon-actions { width: 100%; margin-top: 20px; }
    .g-header { padding: 15px 0; }
    .g-header .inner { width: 100%; padding: 0 20px; }
    .site-logo { max-width: 200px; }
}

@media (max-width: 480px) {
    .salon-name { font-size: 24px; }
    .catchphrase { font-size: 12px; }
    .tabs-nav a { font-size: 12px; padding: 10px 0; }
    .section-title { font-size: 16px; margin: 30px 0 20px 0; }
    .mv-catch { font-size: 18px; }
}
