@charset "UTF-8";

/*==============================================================================
  解体費用シミュレーション
  ----------------------------------------------------------------------------
  対象ブロック :
    .お見積り (#ry542n2e0l0ecgf6npc9) ─ 表示用
    .価格表(非公開) (#zxj1c9tsdlhq40qxb3dx) ─ 設定データ（非表示）
==============================================================================*/

/*------------------------------------------------------------------------------
  価格表ブロックは画面に表示しない
------------------------------------------------------------------------------*/
#zxj1c9tsdlhq40qxb3dx {
    display: none ;
}

/*------------------------------------------------------------------------------
  シミュレーション全体
------------------------------------------------------------------------------*/
#ry542n2e0l0ecgf6npc9 .simulation_input_head,
#ry542n2e0l0ecgf6npc9 .simulation_input_scroll,
#ry542n2e0l0ecgf6npc9 .simulation_input_foot {
    width: 100%;
    box-sizing: border-box;
}

#ry542n2e0l0ecgf6npc9 .simulation_input_head {
    margin: 0 0 30px;
}

#ry542n2e0l0ecgf6npc9 .sim-block {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 30px 0;
    box-shadow: none;
    margin-bottom: 25px;
    scroll-margin-top: 20px;
}

#ry542n2e0l0ecgf6npc9 .sim-block:last-child {
    margin-bottom: 0;
}

/*------------------------------------------------------------------------------
  進捗
------------------------------------------------------------------------------*/
#ry542n2e0l0ecgf6npc9 .sim-progress {
    margin-top: 30px;
    margin-bottom: 0;
}

#ry542n2e0l0ecgf6npc9 .sim-progress__text {
    margin: 0;
    font-size: 13px;
    color: #555;
    text-align: center;
}

#ry542n2e0l0ecgf6npc9 .sim-progress__text strong {
    color: #e88200;
    font-size: 16px;
    margin: 0 2px;
}

/*------------------------------------------------------------------------------
  質問
------------------------------------------------------------------------------*/
#ry542n2e0l0ecgf6npc9 .sim-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 25px;
    padding: 0 0 15px;
    font-size: 22px;
    line-height: 1.5;
    color: var(--required_color);
    font-weight: 700;
}

#ry542n2e0l0ecgf6npc9 .sim-question__no {
    flex: 0 0 auto;
    display: inline-grid;
    place-content: center;
    color: var(--required_color);
    font-size: 18px;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.5px;
}

#ry542n2e0l0ecgf6npc9 .sim-question__text {
    flex: 1 1 auto;
}

/*------------------------------------------------------------------------------
  選択肢（共通）
------------------------------------------------------------------------------*/
#ry542n2e0l0ecgf6npc9 .sim-choices {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

#ry542n2e0l0ecgf6npc9 .sim-choice {
    cursor: pointer;
    background: #fff;
    border: 2px solid #d8d8d8;
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
    user-select: none;
}

#ry542n2e0l0ecgf6npc9 .sim-choice.is-selected {
    border-color: #e88200;
}

#ry542n2e0l0ecgf6npc9 .sim-choice__label {
    margin: 0;
    padding: 12px 8px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

/* 画像あり */
#ry542n2e0l0ecgf6npc9 .sim-choices.is-image {
    grid-template-columns: repeat(4, 1fr);
}

/* 画像セル：枠線・背景・影なし、画像が見切れないよう最小余白 1px */
#ry542n2e0l0ecgf6npc9 .sim-choices.is-image .sim-choice {
    position: relative;
    z-index: 1;
    padding: 1px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

/* 選択中の画像カード：画像の外周にオレンジ枠を box-shadow で描画 */
#ry542n2e0l0ecgf6npc9 .sim-choices.is-image .sim-choice.is-selected {
    box-shadow: 0 0 0 3px #e88200;
}

#ry542n2e0l0ecgf6npc9 .sim-choice__figure {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
}

#ry542n2e0l0ecgf6npc9 .sim-choice__figure img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 画像なし（ボタン形） */
#ry542n2e0l0ecgf6npc9 .sim-choices.is-text {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

#ry542n2e0l0ecgf6npc9 .sim-choices.is-text .sim-choice__label {
    padding: 22px 12px;
    font-size: 17px;
}

/*------------------------------------------------------------------------------
  ナビゲーション
------------------------------------------------------------------------------*/
#ry542n2e0l0ecgf6npc9 .sim-nav {
    margin-top: 25px;
    text-align: left;
}

#ry542n2e0l0ecgf6npc9 .sim-nav__back {
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px 18px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all .2s ease;
}

#ry542n2e0l0ecgf6npc9 .sim-nav__back:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

/*------------------------------------------------------------------------------
  結果表示
------------------------------------------------------------------------------*/
#ry542n2e0l0ecgf6npc9 .sim-result {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 35px 0;
    box-shadow: none;
}

#ry542n2e0l0ecgf6npc9 .sim-result__title {
    margin: 0 0 20px;
    padding: 0;
    border: none;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #e88200;
}

#ry542n2e0l0ecgf6npc9 .sim-result__amount {
    margin: 0 0 30px;
    text-align: center;
    color: #e88200;
    font-weight: 700;
    line-height: 1.3;
    font-size: 32px;
}

#ry542n2e0l0ecgf6npc9 .sim-result__min,
#ry542n2e0l0ecgf6npc9 .sim-result__max {
    margin: 0 8px;
    font-size: 38px;
    font-family: "Oswald", sans-serif;
    letter-spacing: 1px;
}

#ry542n2e0l0ecgf6npc9 .sim-result__suffix {
    margin-left: 4px;
    font-size: 1.45rem;
    color: #333;
    font-weight: 400;
}

/*------------------------------------------------------------------------------
  登録した解体工事の内容
------------------------------------------------------------------------------*/
#ry542n2e0l0ecgf6npc9 .sim-answer {
    padding: 30px 20px;
    text-align: center;
}

#ry542n2e0l0ecgf6npc9 .sim-answer__title {
    margin: 0 0 30px;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    color: #e88200;
}

#ry542n2e0l0ecgf6npc9 .sim-answer__list {
    margin: 0 auto 30px;
    padding: 0;
    text-align: left;
    max-width: 600px;
}

#ry542n2e0l0ecgf6npc9 .sim-answer__q {
    margin: 18px 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

#ry542n2e0l0ecgf6npc9 .sim-answer__list .sim-answer__q:first-child {
    margin-top: 0;
}

#ry542n2e0l0ecgf6npc9 .sim-answer__a {
    margin: 0 0 0 12px;
    font-size: 14px;
    color: #555;
}

#ry542n2e0l0ecgf6npc9 .sim-answer__edit {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 999px;
    padding: 18px 60px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #e88200;
    cursor: pointer;
    transition: all .2s ease;
}

#ry542n2e0l0ecgf6npc9 .sim-answer__edit:hover {
    background: #c46e00;
}

#ry542n2e0l0ecgf6npc9 .sim-result__answers {
    margin: 0 0 25px;
    padding: 20px;
    background: #fafafa;
    border-radius: 6px;
    font-size: 14px;
}

#ry542n2e0l0ecgf6npc9 .sim-result__answers dt {
    margin: 12px 0 4px;
    color: #555;
    font-weight: 700;
}

#ry542n2e0l0ecgf6npc9 .sim-result__answers dt:first-of-type {
    margin-top: 0;
}

#ry542n2e0l0ecgf6npc9 .sim-result__answers dd {
    margin: 0 0 0 15px;
    color: #e88200;
    font-weight: 700;
    font-size: 15px;
}

#ry542n2e0l0ecgf6npc9 .sim-result__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

#ry542n2e0l0ecgf6npc9 .sim-result__back,
#ry542n2e0l0ecgf6npc9 .sim-result__reset {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 4px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
    min-width: 180px;
}

#ry542n2e0l0ecgf6npc9 .sim-result__back {
    background: #fff;
    border: 1px solid #ccc;
    color: #555;
}

#ry542n2e0l0ecgf6npc9 .sim-result__back:hover {
    background: #f5f5f5;
    border-color: #999;
    color: #333;
}

#ry542n2e0l0ecgf6npc9 .sim-result__reset {
    background: #e88200;
    color: #fff;
}

#ry542n2e0l0ecgf6npc9 .sim-result__reset:hover {
    background: #c46e00;
}

/*------------------------------------------------------------------------------
  注意事項
------------------------------------------------------------------------------*/
#ry542n2e0l0ecgf6npc9 .notes_message {
    margin-top: 30px;
    font-size: var(--font_size_14);
}

#ry542n2e0l0ecgf6npc9 .notes_message p {
    margin: 0;
    padding: 18px 22px;
    line-height: 1.8;
    font-size: 14px;
}

/*------------------------------------------------------------------------------
  エラー表示
------------------------------------------------------------------------------*/
#ry542n2e0l0ecgf6npc9 .sim-error {
    margin: 0;
    padding: 20px;
    background: #fff5f5;
    border: 1px solid #f5c2c2;
    border-radius: 4px;
    color: #c00;
    text-align: center;
    font-size: 14px;
}

/*------------------------------------------------------------------------------
  横スクロールメッセージ
------------------------------------------------------------------------------*/
#ry542n2e0l0ecgf6npc9 .sp_message {
    color: #ff0000;
    font-weight: bold;
    font-size: 12px;
    margin: 5px 0;
}

/*==============================================================================
  SP表示のスタイル調整
==============================================================================*/
html.sp #ry542n2e0l0ecgf6npc9 .sim-block {
    padding: 20px 15px;
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-question {
    font-size: 16px;
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 12px;
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-question__no {
    width: 36px;
    height: 36px;
    font-size: 14px;
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-choices {
    gap: 10px;
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-choices.is-image {
    grid-template-columns: repeat(2, 1fr);
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-choices.is-text {
    grid-template-columns: repeat(2, 1fr);
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-choice__label {
    font-size: 13px;
    padding: 10px 6px;
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-choices.is-text .sim-choice__label {
    padding: 16px 8px;
    font-size: 14px;
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-progress__text {
    font-size: 12px;
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-result {
    padding: 25px 18px;
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-result__title {
    font-size: 18px;
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-result__min,
html.sp #ry542n2e0l0ecgf6npc9 .sim-result__max {
    margin: 0 4px;
    font-size: 26px;
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-result__suffix {
    font-size: 14px;
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-result__answers {
    padding: 15px;
    font-size: 13px;
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-result__btns {
    flex-direction: column;
}

html.sp #ry542n2e0l0ecgf6npc9 .sim-result__back,
html.sp #ry542n2e0l0ecgf6npc9 .sim-result__reset {
    width: 100%;
    min-width: 0;
}

html.sp #ry542n2e0l0ecgf6npc9 .notes_message p {
    padding: 14px 16px;
}
