@charset "utf-8";

/* ============================================================
   カスタムプロパティ
============================================================ */
:root {
    --border-color: #aaa;
}

/* ============================================================
   基本設定
============================================================ */
main{
    overflow-wrap: anywhere;
    word-break: break-all;
}

/* ============================================================
   シミュレーター共通
============================================================ */
.simulator {
    font-size: 16px;
    letter-spacing: 0.01em;
}

span {
    font-weight: inherit;
}

/* ============================================================
   見出し・テキスト
============================================================ */
.simulationTitle {
    font-size: 48px;
    font-weight: bold;
}

.simulationSubtitle {
    font-size: 40px;
    font-weight: bold;
}

.simulationSubtitle>small {
    display: block;
    color: var(--color-main);
    font-size: 16px;
    font-weight: bold;
}

.simulationSubtitle>small+strong {
    display: block;
    margin-top: 16px;
    font-weight: bold;
}

.simulationCaption {
    font-size: 32px;
}

.simulationLead {
    margin-top: 64px;
}

/* ============================================================
   ボタン
============================================================ */
.simulationBtnWrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 0 20px;
}

.general-btn{
    line-height: 64px;
    margin: 0;
    cursor: pointer;
}

.general-btn, .main-btn{
    border: none;
}

/* ============================================================
   区切り線
============================================================ */
.-border-top {
    border-top: 2px solid var(--border-color);
    margin-top: 64px;
    padding-top: 64px;
}

/* ============================================================
   スクロール追従情報（stickyInfo）
============================================================ */
.stickyInfo {
    position: fixed;
    top: 108px;
    right: 0;
    left: auto;
    overflow-y: auto;
    z-index: 9999;
    width: 386px;
    max-height: 90vh;
    transition: right 0.2s ease-out;
}

@media only screen and (min-width: 1200px) {
    .stickyInfo {
        left: calc(50% + 600px - 386px);
    }
}

.stickyInfo_item {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #dbdbdb;
}

.stickyInfo dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.stickyInfo_content {
    padding: 20px;
    border: 1px solid #888888;
    background-color: white;
}

.stickyInfo_title {
    font-size: 16px;
    font-weight: bold;
}

/* お支払い目安（税込み） */
.stickyIndication_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.stickyInfo_itemInner {
    width: 100%;
}

.stickyIndication {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.stickyIndication + .stickyIndication {
    margin-top: 2px;
}

.stickyIndication dt {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: -0.02em;
}

.stickyIndication dd {
    font-size: 14px;
    font-weight: bold;
    text-align: right;
    letter-spacing: -0.02em;
}

.stickyIndication dd.highlight {
    color: #e40000;
}

.stickyIndication dd span {
    font-size: 20px;
    font-weight: inherit;
    color: inherit;
}

.stickyIndication_monthlyFeeWrap {
    width: 100%;
}

.stickyIndication_monthlyFee {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.stickyIndication_monthlyFee_total {
    font-size: 16px;
    font-weight: bold;
}

.stickyIndication_monthlyFee_total .highlight {
    font-size: 24px;
    color: #e40000;
}

.stickyIndication_monthlyFee_detail {
    width: 58px;
    height: 43px;
    border: 1px solid #888888;
    border-radius: 4px;
    background-color: white;
    font-size: 16px;
    line-height: 43px;
    text-align: center;
    cursor: pointer;
}

.stickyIndication_order {
    width: 100%;
    margin-top: 16px;
}

/* ============================================================
   ヘッダー比較ボタン
============================================================ */
.header_simulationComparison{
    width: 162px;
    height: 50px;
    font-size: 20px;
    padding: 0 40px;
    background: #333;
    box-shadow: var(--link-box-shadow);
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    line-height: calc(23 / 20);
    text-align: center;
    text-decoration: none;
    border-radius: 0;
}

.header_simulationComparison .switch_text{
    line-height: inherit;
}
