@charset "utf-8";

/* ==========================================================================
   contentfreeinfo_content_self_check_in.css
   ホテル・旅館向け セルフチェックイン記事専用スタイル定義（完全版）
========================================================================== */

/* ----------------------------------------------------
   ページヘッダータイトルエリア
---------------------------------------------------- */
.content_self_checkin .contentfreeinfoCheckIn_page_ttl {
    color: #ffffff;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
}
.content_self_checkin .contentfreeinfoCheckIn_page_ttl .ttl_prefix {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    opacity: 0.95;
    letter-spacing: 1px;
}
@media only screen and (max-width: 767px) {
    .content_self_checkin .contentfreeinfoCheckIn_page_ttl {
        font-size: 18px;
    }
    .content_self_checkin .contentfreeinfoCheckIn_page_ttl .ttl_prefix {
        font-size: 13px;
        margin-bottom: 4px;
    }
}

/* ----------------------------------------------------
   目次エリアスタイル（共通リンク色の打ち消しとホバー制御）
---------------------------------------------------- */
.content_self_checkin .mokuji ol li a,
.content_self_checkin .mokuji ol li a:link,
.content_self_checkin .mokuji ol li a:visited {
    color: #333333;
    text-decoration: none;
}
.content_self_checkin .mokuji ol li a:hover {
    color: #035fb4;
    text-decoration: underline;
}
/* スマホ用（レスポンシブ）の目次調整 */
@media only screen and (max-width: 767px) {
    .content_self_checkin .mokuji ol li {
        line-height: 1.5;
        margin-bottom: 16px; 
    }
    .content_self_checkin .mokuji ol li:last-child {
        margin-bottom: 0;
    }
    .content_self_checkin .mokuji ol li a,
    .content_self_checkin .mokuji ol li a:link,
    .content_self_checkin .mokuji ol li a:visited {
        display: block;
        line-height: 1.6; 
    }
}

/* ----------------------------------------------------
   1. 運用スタイル並び (.contentfreeinfoCheckIn_style_row) - 3カラム
---------------------------------------------------- */
.content_self_checkin .contentfreeinfoCheckIn_style_row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
}
.content_self_checkin .contentfreeinfoCheckIn_style_row .style_item {
    flex: 1;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    box-sizing: border-box;
    transition: transform 0.2s ease;
}
.content_self_checkin .contentfreeinfoCheckIn_style_row .style_item:hover {
    transform: translateY(-2px);
}
.content_self_checkin .contentfreeinfoCheckIn_style_row .style_item .imgBox {
    position: relative;
    margin-bottom: 20px;
    text-align: center;
}
.content_self_checkin .contentfreeinfoCheckIn_style_row .style_item .imgBox img {
    border-radius: 6px;
    max-width: 100%;
    height: auto;
}
.content_self_checkin .contentfreeinfoCheckIn_style_row .style_item .stamp_tag {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 10;
    width: 85px;
    height: 85px;
}
.content_self_checkin .contentfreeinfoCheckIn_style_row .style_item .stamp_tag img {
    width: 100%;
    height: auto;
}
.content_self_checkin .contentfreeinfoCheckIn_style_row .style_ttl {
    font-size: 18px;
    font-weight: bold;
    color: #035fb4;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f4f8;
}
.content_self_checkin .contentfreeinfoCheckIn_style_row .style_txt {
    font-size: 14.5px;
    line-height: 1.7;
    color: #2d3748;
    margin: 0;
    text-align: left;
}
.content_self_checkin .contentfreeinfoCheckIn_style_row .style_item.best {
    border: 2px solid #035fb4;
    background: #fcfdfe;
}
.content_self_checkin .contentfreeinfoCheckIn_style_row .style_item.best .style_ttl {
    border-bottom-color: #035fb4;
}
@media only screen and (max-width: 767px) {
    .content_self_checkin .contentfreeinfoCheckIn_style_row {
        flex-direction: column;
        gap: 25px;
    }
}

/* ----------------------------------------------------
   なぜ選ばれるのか (.why_box_simple)
---------------------------------------------------- */
.content_self_checkin .why_box_simple {
    background: #f0f7fd;
    border-left: 6px solid #035fb4;
    border-radius: 0 8px 8px 0;
    padding: 30px;
    margin: 40px 0;
}
.content_self_checkin .why_ttl {
    font-size: 20px;
    font-weight: bold;
    color: #035fb4;
    margin: 0 0 12px 0;
}
.content_self_checkin .why_txt p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #2d3748;
    margin: 0;
}
@media only screen and (max-width: 767px) {
    .content_self_checkin .why_box_simple {
        padding: 20px;
    }
    .content_self_checkin .why_ttl {
        font-size: 17px;
    }
    .content_self_checkin .why_txt p {
        font-size: 14.5px;
    }
}

/* ----------------------------------------------------
   2. 5つのメリットグリッドレイアウト (.contentfreeinfoCheckIn_benefit_grid)
---------------------------------------------------- */
.content_self_checkin .contentfreeinfoCheckIn_benefit_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 40px 0;
}
.content_self_checkin .contentfreeinfoCheckIn_benefit_grid .benefit_card {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    text-align: left;
}
.content_self_checkin .contentfreeinfoCheckIn_benefit_grid .card_icon {
    margin-bottom: 15px;
    display: block; 
}
.content_self_checkin .contentfreeinfoCheckIn_benefit_grid .card_icon img {
    display: inline-block; 
    vertical-align: top;
    width: 60px;
    height: 60px;
}
.content_self_checkin .contentfreeinfoCheckIn_benefit_grid .card_ttl {
    font-size: 18px;
    font-weight: bold;
    color: #111111;
    margin: 0 0 10px 0;
    line-height: 1.4;
}
.content_self_checkin .contentfreeinfoCheckIn_benefit_grid .card_txt {
    font-size: 14px;
    line-height: 1.65;
    color: #333333;
    margin: 0;
}
@media only screen and (max-width: 767px) {
    .content_self_checkin .contentfreeinfoCheckIn_benefit_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .content_self_checkin .contentfreeinfoCheckIn_benefit_grid .card_ttl {
        font-size: 16px;
    }
}

/* ----------------------------------------------------
   3. 注意点枠 (.contentfreeinfoCheckIn_caution_container)
---------------------------------------------------- */
.content_self_checkin .contentfreeinfoCheckIn_caution_container {
    display: flex;
    justify-content: space-between;
    margin: 35px 0;
}
.content_self_checkin .contentfreeinfoCheckIn_caution_container .caution_item {
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 10px 25px;
    box-sizing: border-box;
}
.content_self_checkin .contentfreeinfoCheckIn_caution_container .caution_item:not(:last-child) {
    border-right: 1px solid #dddddd;
}
.content_self_checkin .contentfreeinfoCheckIn_caution_container .caution_item:first-child {
    padding-left: 0;
}
.content_self_checkin .contentfreeinfoCheckIn_caution_container .caution_item:last-child {
    padding-right: 0;
}
.content_self_checkin .contentfreeinfoCheckIn_caution_container .caution_header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.content_self_checkin .contentfreeinfoCheckIn_caution_container .caution_ttl {
    font-size: 16.5px;
    font-weight: bold;
    color: #d97706;
    margin: 0;
}
.content_self_checkin .contentfreeinfoCheckIn_caution_container .caution_body p {
    font-size: 14px;
    line-height: 1.6;
    color: #451a03;
    margin: 0;
}
@media only screen and (max-width: 767px) {
    .content_self_checkin .contentfreeinfoCheckIn_caution_container {
        flex-direction: column;
        gap: 0;
    }
    .content_self_checkin .contentfreeinfoCheckIn_caution_container .caution_item {
        width: 100%;
        padding: 0 0 20px 0;
        margin-bottom: 20px;
    }
    .content_self_checkin .contentfreeinfoCheckIn_caution_container .caution_item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #dddddd;
    }
}

/* ----------------------------------------------------
   4. 選定ポイント内・特設エリア
---------------------------------------------------- */
.content_self_checkin .contentfreeinfoCheckIn_point_lead {
    text-align: center;
}

/* 選定補足2カラム配置 (.contentfreeinfoCheckIn_selection_wrap) */
.content_self_checkin .contentfreeinfoCheckIn_selection_wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 45px 0;
}
.content_self_checkin .contentfreeinfoCheckIn_selection_wrap .selection_image_side {
    flex: 1;
    text-align: center;
}
.content_self_checkin .contentfreeinfoCheckIn_selection_wrap .selection_image_side img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.content_self_checkin .contentfreeinfoCheckIn_selection_wrap .selection_text_side {
    flex: 1;
}
.content_self_checkin .contentfreeinfoCheckIn_selection_wrap .point_content_item {
    margin-bottom: 30px;
}
.content_self_checkin .contentfreeinfoCheckIn_selection_wrap .point_content_item:last-child {
    margin-bottom: 0;
}
.content_self_checkin .contentfreeinfoCheckIn_selection_wrap .point_header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.content_self_checkin .contentfreeinfoCheckIn_selection_wrap .point_ttl {
    font-size: 17.5px;
    font-weight: bold;
    color: #035fb4;
    margin: 0;
}
.content_self_checkin .contentfreeinfoCheckIn_selection_wrap .point_body p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #333333;
    margin: 0;
}
@media only screen and (max-width: 767px) {
    .content_self_checkin .contentfreeinfoCheckIn_selection_wrap {
        flex-direction: column;
        gap: 30px;
    }
}

/* ----------------------------------------------------
   5. 導入費用相場と活用できる補助金 (.contentfreeinfoCheckIn_cost_container)
---------------------------------------------------- */
.content_self_checkin .contentfreeinfoCheckIn_cost_container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}
.content_self_checkin .contentfreeinfoCheckIn_cost_container .cost_impact_box, 
.content_self_checkin .contentfreeinfoCheckIn_cost_container .subsidy_item_block {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 35px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    box-sizing: border-box;
    text-align: center; 
}
.content_self_checkin .contentfreeinfoCheckIn_cost_container .cost_label_badge, 
.content_self_checkin .contentfreeinfoCheckIn_cost_container .cost_label {
    font-size: 18px;
    font-weight: bold;
    color: #035fb4;
    margin: 0 auto 20px; 
    border-bottom: 2px solid #035fb4;
    display: block; 
    width: 50%; 
    padding-bottom: 6px;
    text-align: center;
}
.content_self_checkin .cost_price_display {
    text-align: center;
    margin: 25px 0;
}
.content_self_checkin .cost_price_display .price_prefix {
    font-size: 18px;
    color: #4a5568;
    vertical-align: middle;
    margin-right: 6px;
}
.content_self_checkin .cost_price_display .price_num {
    font-size: 26px; 
    font-weight: bold;
    color: #dc2626;
    vertical-align: middle;
}
.content_self_checkin .cost_sub_txt, 
.content_self_checkin .subsidy_intro {
    font-size: 14.5px;
    line-height: 1.65;
    color: #2d3748;
    margin: 0 0 15px 0;
}
.content_self_checkin .subsidy_card {
    background: #f1f7fd;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left; 
}
.content_self_checkin .subsidy_card_ttl {
    font-size: 16px;
    font-weight: bold;
    color: #035fb4;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.content_self_checkin .recommend_badge {
    background: #ea580c;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    line-height: 1;
}
.content_self_checkin .subsidy_card_txt {
    font-size: 14px;
    line-height: 1.65;
    color: #475569;
    margin: 0;
}
.content_self_checkin .caution_note {
    font-size: 13.5px;
    color: #dc2626;
    font-weight: bold;
    margin: 0;
    line-height: 1.6;
}
@media only screen and (max-width: 767px) {
    .content_self_checkin .contentfreeinfoCheckIn_cost_container .cost_label_badge, 
    .content_self_checkin .contentfreeinfoCheckIn_cost_container .cost_label {
        width: 80%; 
    }
    .content_self_checkin .cost_price_display .price_num {
        font-size: 22px;
    }
    .content_self_checkin .subsidy_card_ttl {
        display: block; 
        line-height: 1.5;
    }
    .content_self_checkin .recommend_badge {
        display: inline-block;
        margin-bottom: 6px; 
    }
    .content_self_checkin .caution_note {
        text-align: left;
    }
}

/* ----------------------------------------------------
   6. Finexit製品紹介モダンブロック (.product_guide_modern)
---------------------------------------------------- */
.content_self_checkin .product_guide_modern {
    background: linear-gradient(rgba(3, 95, 180, 0.35), rgba(0, 43, 84, 0.75)), 
                url("../img/contentfreeinfo/content_self_check_in/self_check_in06.jpg") center center / cover no-repeat;
    color: #ffffff;
    border-radius: 12px;
    padding: 60px 40px;
    margin: 60px 0;
    box-shadow: 0 12px 30px rgba(3, 95, 180, 0.18);
}
.content_self_checkin .product_inner {
    max-width: 940px;
    margin: 0 auto;
}
.content_self_checkin .product_main_ttl {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 25px 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}
.content_self_checkin .product_main_ttl span {
    font-size: 34px;
    color: #fcd34d;
    display: block;
    margin-top: 8px;
    letter-spacing: 0.5px;
}
.content_self_checkin .product_intro_txt {
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    margin: 0 0 45px 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5); 
}
.content_self_checkin .product_feature_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px;
    margin-bottom: 45px;
}
.content_self_checkin .product_feature_card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 28px 20px;
    box-sizing: border-box;
    text-align: center;
}
.content_self_checkin .feature_ttl {
    font-size: 17px;
    font-weight: bold;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.content_self_checkin .feature_line {
    width: 35px;
    height: 2px;
    background: rgba(255,255,255,0.4);
    margin: 0 auto 15px;
}
.content_self_checkin .feature_txt {
    font-size: 13.5px;
    line-height: 1.65;
    color: #f1f5f9;
    margin: 0;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.content_self_checkin .product_cta_area {
    text-align: center;
}
.content_self_checkin .btn_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e87400;
    color: #ffffff;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 5px 18px rgba(232, 116, 0, 0.45);
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.content_self_checkin .btn_cta:hover {
    background: #ea580c;
    transform: translateY(-2px);
}
.content_self_checkin .btn_arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    transform: rotate(45deg);
    margin-left: 12px;
}
@media only screen and (max-width: 767px) {
    .content_self_checkin .product_guide_modern {
        padding: 40px 20px;
    }
    .content_self_checkin .product_main_ttl {
        font-size: 19px;
    }
    .content_self_checkin .product_main_ttl span {
        font-size: 25px;
    }
    .content_self_checkin .product_intro_txt {
        font-size: 14px;
        text-align: left;
    }
    .content_self_checkin .product_feature_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .content_self_checkin .btn_cta {
        font-size: 14px;
        padding: 15px 20px;
        width: 100%;
        box-sizing: border-box;
    }
}