/*
 * recruitShopReviewForm.css - 口コミ投稿フォームページ用CSS
 * recruit.css を継承
 */
@import url("recruit.css?202601241610");

/* パンくずリストの最後の項目（リンクなし）を白色に */
nav.Breadcrumb ul li:last-child {
    color: #FFF;
}

/* フォームページ全体 */
.ShopReviewFormPage {
    padding: 0 10px 20px;
}

/* キャンペーンバナー */
.ShopReviewFormCampaign {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.ShopReviewFormCampaignInner {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF;
}

.ShopReviewFormCampaignInner > i {
    font-size: 32px;
}

.ShopReviewFormCampaignTitle {
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.ShopReviewFormCampaignDesc {
    display: block;
    font-size: 12px;
    margin-top: 4px;
}

/* イントロ */
.ShopReviewFormIntro {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
}

.ShopReviewFormIntro > i {
    font-size: 40px;
    color: #5ABBE3;
    margin-bottom: 10px;
}

.ShopReviewFormIntroTitle {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.ShopReviewFormIntroText {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.ShopReviewFormIntroNote {
    font-size: 12px;
    color: #999;
}

/* エラーメッセージ */
.ShopReviewFormErrors {
    background: #fff5f5;
    border: 1px solid #ff6b6b;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ShopReviewFormErrors > i {
    color: #ff6b6b;
    font-size: 20px;
    flex-shrink: 0;
}

.ShopReviewFormErrors ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ShopReviewFormErrors li {
    color: #c92a2a;
    font-size: 13px;
    line-height: 1.5;
}

/* ステップインジケーター */
.ShopReviewFormSteps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 0 10px;
}

.ShopReviewFormStep {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ShopReviewFormStepNum {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.ShopReviewFormStep.active .ShopReviewFormStepNum {
    background: #5ABBE3;
    color: #FFF;
}

.ShopReviewFormStep.completed .ShopReviewFormStepNum {
    background: #4CAF50;
    color: #FFF;
}

.ShopReviewFormStepLabel {
    font-size: 11px;
    color: #999;
    transition: color 0.3s ease;
}

.ShopReviewFormStep.active .ShopReviewFormStepLabel {
    color: #5ABBE3;
    font-weight: bold;
}

.ShopReviewFormStep.completed .ShopReviewFormStepLabel {
    color: #4CAF50;
}

.ShopReviewFormStepLine {
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin: 0 8px;
    max-width: 50px;
}

/* フォームパネル */
.ShopReviewFormPanel {
    background: #FFF;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

/* フォームフィールド */
.ShopReviewFormField {
    margin-bottom: 20px;
}

.ShopReviewFormLabel {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.ShopReviewFormLabel i {
    color: #5ABBE3;
    margin-right: 6px;
}

.ShopReviewFormLabel .required {
    color: #ff6b6b;
    margin-left: 4px;
}

.ShopReviewFormInput {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.ShopReviewFormInput:focus {
    outline: none;
    border-color: #5ABBE3;
}

.ShopReviewFormTextarea {
    width: 100%;
    min-height: 150px;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.ShopReviewFormTextarea:focus {
    outline: none;
    border-color: #5ABBE3;
}

.ShopReviewFormHint {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}

/* 年代チップ */
.ShopReviewFormChips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ShopReviewFormChip {
    cursor: pointer;
}

.ShopReviewFormChip input {
    display: none;
}

.ShopReviewFormChip span {
    display: inline-block;
    padding: 10px 16px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.ShopReviewFormChip input:checked + span {
    background: #e3f5fc;
    border-color: #5ABBE3;
    color: #5ABBE3;
    font-weight: bold;
}

.ShopReviewFormChip:hover span {
    border-color: #5ABBE3;
}

/* アクションボタン */
.ShopReviewFormActions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.ShopReviewFormBtn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.ShopReviewFormBtn.next {
    background: linear-gradient(135deg, #5ABBE3, #4AA8D0);
    color: #FFF;
}

.ShopReviewFormBtn.next:hover {
    background: linear-gradient(135deg, #4AA8D0, #3A98C0);
    transform: translateY(-2px);
}

.ShopReviewFormBtn.back {
    background: #f5f5f5;
    color: #666;
}

.ShopReviewFormBtn.back:hover {
    background: #e8e8e8;
}

.ShopReviewFormBtn.submit {
    background: linear-gradient(135deg, #4CAF50, #43A047);
    color: #FFF;
    animation: pulse 2s infinite;
}

.ShopReviewFormBtn.submit:hover {
    background: linear-gradient(135deg, #43A047, #388E3C);
    transform: translateY(-2px);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
}

/* 確認欄 */
.ShopReviewFormConfirm {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.ShopReviewFormConfirmTitle {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.ShopReviewFormConfirmTitle i {
    color: #5ABBE3;
    margin-right: 6px;
}

.ShopReviewFormConfirmList {
    margin: 0;
}

.ShopReviewFormConfirmList dt {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}

.ShopReviewFormConfirmList dd {
    font-size: 14px;
    color: #333;
    margin: 0 0 15px;
    word-break: break-word;
}

.ShopReviewFormConfirmList dd.content {
    white-space: pre-wrap;
    background: #FFF;
    padding: 10px;
    border-radius: 6px;
    line-height: 1.6;
}

/* reCAPTCHA */
.ShopReviewFormRecaptcha {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* 戻るボタン */
.ShopReviewFormButtons {
    margin-top: 20px;
}

.ShopReviewFormButtons .ShopReviewButton {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    color: #666;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.ShopReviewFormButtons .ShopReviewButton:hover {
    background: #e8e8e8;
}

/* 完了画面 */
.ShopReviewFormComplete {
    text-align: center;
    padding: 40px 20px;
}

.ShopReviewFormCompleteIcon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.ShopReviewFormCompleteTitle {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.ShopReviewFormCompleteText {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ShopReviewFormCompleteNote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff3e0;
    border-radius: 8px;
    padding: 15px;
    font-size: 13px;
    color: #e65100;
    margin-bottom: 30px;
}

.ShopReviewFormCompleteNote i {
    font-size: 20px;
}
