@charset "UTF-8";
/* ==========================================================================
   五井病院サイト スマートフォン対応スタイル (responsive.css)
   既存のPC用CSS(共通/各ページ)を上書きする形で読み込みます。
   PC表示(769px以上)には一切影響しません。
   ========================================================================== */

@media screen and (max-width: 768px) {

  /* ---- Reset base --------------------------------------------------- */
  *{ box-sizing: border-box !important; }
  html{ -webkit-text-size-adjust: 100%; }
  body{
    min-width: 0 !important;
    width: 100%;
    overflow-x: hidden;
    font-size: 14px;
    border-top: 3px solid #2D3998;
  }
  img{ max-width: 100%; height: auto; }
  table img{ max-width: none; } /* テーブル内アイコン等の崩れ防止 */

  /* サイト全体で line-height:100% が効いているため、見出しが2行に折り返すと
     文字が重なって見える。見出し・本文の行間を確保する */
  h1, h2, h3, h4, h5, h6{ line-height: 1.5 !important; }
  p{ line-height: 1.7 !important; }

  /* ---- Header / Logo -------------------------------------------------- */
  header{
    position: relative;
    z-index: 10002;
  }
  header #idHeadInner{
    width: 100% !important;
    padding: 8px 60px 8px 12px;
    position: relative;
  }
  header #idHeadInner #idLogo{
    width: auto !important;
    float: none;
    padding: 6px 0;
  }
  header #idHeadInner #idLogo img{
    width: auto;
    max-height: 34px;
  }

  /* サブナビ(ホーム/お問い合わせ/求人)+検索 -> ロゴ下に横並びの帯として表示 */
  header #idSubNaviArea{
    width: 100% !important;
    float: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding: 4px 0 8px;
  }
  header #idSubNaviArea #idSubNavi{
    width: auto !important;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    font-size: 11px;
  }
  header #idSubNaviArea #idSubNavi li{
    float: none;
  }
  header #idSubNaviArea #idSearch{
    width: 130px !important;
    margin-left: auto;
  }
  header #idSubNaviArea #idSearch .clSearchTxt{
    width: 100px !important;
  }

  /* ハンバーガーボタン */
  #idNaviToggle{
    display: block !important;
    position: absolute;
    top: 0;
    right: 0;
    width: 52px;
    height: 52px;
    cursor: pointer;
    z-index: 10002 !important;
  }
  #idNaviToggle span{
    display: block;
    position: absolute;
    left: 13px;
    width: 26px;
    height: 2px;
    background: #2D3998;
    transition: transform .3s, opacity .3s;
  }
  #idNaviToggle span:nth-child(1){ top: 17px; }
  #idNaviToggle span:nth-child(2){ top: 25px; }
  #idNaviToggle span:nth-child(3){ top: 33px; }
  body.idNavOpen #idNaviToggle span:nth-child(1){ top: 25px; transform: rotate(45deg); }
  body.idNavOpen #idNaviToggle span:nth-child(2){ opacity: 0; }
  body.idNavOpen #idNaviToggle span:nth-child(3){ top: 25px; transform: rotate(-45deg); }
  /* メニュー展開中はアイコンに背景をつけて、常にメニューの上に見えるようにする */
  body.idNavOpen #idNaviToggle{
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  }
  body.idNavOpen #idNaviToggle span{
    background: #2D3998;
  }

  /* ---- Main navigation (drawer) -------------------------------------- */
  header #idMainNavi{
    display: none;
    width: 100%;
    border-top: 1px solid #D9D9D9;
    max-height: 80vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.idNavOpen header #idMainNavi{
    display: block !important;
  }
  
  /* メニューを開いた時、画面全体を覆うオーバーレイに変更 */
  body.idNavOpen header #idMainNavi{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    max-height: none !important;
    z-index: 10000;
    background: #2D3998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 70px;
    border-top: 0;
    animation: idNavFadeIn .25s ease;
  }
  @keyframes idNavFadeIn{
    from{ opacity: 0; transform: translateY(-8px); }
    to{ opacity: 1; transform: translateY(0); }
  }
  /* メニュー表示中は背景（ページ本体）のスクロールを止める */
  body.idNavOpen{
    overflow: hidden !important;
  }

  header #idMainNavi .topNavi{
    width: 100% !important;
    text-align: left;
    display: none !important;   /* ← これを追加 */
  }
  header #idMainNavi .topNavi > li{
    float: none !important;
    border-left: 0;
    border-bottom: 1px solid #D9D9D9;
  }
  header #idMainNavi .topNavi > li a{
    width: 100% !important;
    height: auto !important;
    background: #FFF !important;
    text-indent: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    padding: 14px 15px;
    font-size: 14px;
    font-weight: bold;
    color: #2D3998;
  }
  header #idMainNavi .topNavi > li.current:after{ display: none; }

  header #idMainNavi .lowerNaviWrap{
    display: block !important;
    position: static !important;
    width: 100% !important;
    padding: 0 20px 30px !important;
    background: transparent !important;
  }
  header #idMainNavi .lowerNaviWrap .lowerNaviHead{
    display: block !important;
    margin: 0 !important;
    padding: 22px 0 8px !important;
    color: #B7C2F2 !important;
    font-size: 12px !important;
    letter-spacing: .1em;
    border-top: 1px solid rgba(255,255,255,0.25) !important;
  }
  header #idMainNavi .lowerNaviWrap .lowerNaviHead:first-child{
    border-top: 0 !important;
  }
  header #idMainNavi .lowerNaviWrap .lowerNavi{
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 0 6px !important;
  }
  header #idMainNavi .lowerNaviWrap .lowerNavi li{
    display: block !important;
    margin: 0 !important;
    border-top: 1px solid rgba(255,255,255,0.15) !important;
  }
  header #idMainNavi .lowerNaviWrap .lowerNavi li a{
    display: block;
    padding: 13px 4px !important;
    font-size: 15px !important;
    color: #FFF !important;
  }
  header #idMainNavi .navi3 li:first-child,
  header #idMainNavi .navi4 li:first-child{
    padding-left: 0 !important;
  }

  /* ---- Content layout -------------------------------------------------- */
  #idContainer, #idContents{ width: 100% !important; }
  #idLowerContents{
    width: 100% !important;
    margin: 0 auto 30px !important;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
  }
  #idHeadvis{
    width: 100% !important;
    min-width: 0 !important;
    height: 120px !important;
  }
  #idPankuzu{ padding: 6px 12px; margin-bottom: 15px; }
  #idPankuzu p{
    width: 100% !important;
    font-size: 11px;
  }

  /* サイドナビ：通常は本文の後ろに表示（responsive.js が中身のあるページだけ
     ハンバーガーメニューの中に物理的に移動するので、移動後はこの位置指定は使われない） */
  #idSideNaviArea{
    width: 100% !important;
    float: none !important;
    order: 2;
    margin-top: 30px;
  }
  #idSideNaviArea #idSideNavi .idSideNaviLi,
  #idSideNaviArea #idSideNavi .idSideNaviLi > ul,
  #idSideNaviArea #idSideNavi .idSideNaviLi > ul > li,
  #idSideNaviArea #idSideNavi .idSideNaviLi > ul > li > ul > li{
    width: 100% !important;
  }

  /* サイドナビがハンバーガーメニュー内に移動された場合の見た目調整
     （白い帯として、メニュー上部・カテゴリ一覧の前に表示する） */
  header #idMainNavi #idSideNaviArea{
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    background: #FFF;
    padding: 16px 20px 20px;
    border-bottom: 3px solid #1F2A73;
  }
  header #idMainNavi #idSideNaviArea > h1{
    margin: 0 0 10px;
  }
  header #idMainNavi #idSideNaviArea > h1 img{
    display: block;
    height: auto;
  }
  header #idMainNavi #idSideNaviArea .idSideBnnr{
    margin-top: 10px;
  }
  header #idMainNavi #idSideNaviArea .idSideBnnr li{
    margin-bottom: 8px;
  }

  #idMainArea{
    width: 100% !important;
    float: none !important;
    order: 1;
  }
  .idSecTitle{ width: 100% !important; text-align: center !important; }

  /* ---- Boxes / grids: stack to single column --------------------------- */
  .id2colBox01 .boxL, .id2colBox01 .boxR,
  .id2colBox02 .boxL, .id2colBox02 .boxR,
  .id2colBox03 .boxL, .id2colBox03 .boxR,
  .id2colBox04 .boxL, .id2colBox04 .boxR,
  .id2colBox05 .boxL, .id2colBox05 .boxR{
    width: 100% !important;
    float: none !important;
    margin-bottom: 20px;
  }
  .id2colBox01 a{ width: 100% !important; }

  .id3colBox01{ margin-top: 15px; }
  .id3colBox01::before, .id3colBox01::after{ display: none !important; }
  .id3colBox01 .id3colBox{
    width: 100% !important;
    float: none !important;
    margin: 0 0 15px !important;
  }

  .idBlueListBox li{
    width: 100% !important;
    height: auto !important;
    float: none !important;
    margin: 0 0 10px !important;
    padding: 12px 20px !important;
  }

  .idOuterLinkBox li{
    width: 100% !important;
    float: none !important;
    margin: 0 0 15px !important;
  }

  /* ---- Tables: horizontal scroll wrapper (responsive.js が table を .idTblScroll でラップ) */
  .idTblScroll{
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 10px;
  }
  /* 列数の多いスケジュール表などは横スクロールのまま最低幅を確保 */
  .idTblScroll table{ min-width: 560px; }

  /* 診療スケジュール表(scheTbl01/02)：table-layout:fixed にして列幅を固定値で管理する。
     こうしないと「データがある列」に余った横幅が集中し、科によって幅がまばらになる。
     min-width も外し、列幅の合計だけで表の幅が決まるようにする
     （空欄が多い科は表が細くなり、埋まっている科は自然に横スクロールが発生する） */
  .idTblScroll table.scheTbl01,
  .idTblScroll table.scheTbl02{
    table-layout: fixed !important;
    min-width: 0 !important;
    width: auto !important;      /* ← これを追加 */
    display: inline-table !important;
  }
  /* 通常の曜日列（担当医がいる列）は一律の幅にする */
  .idTblScroll table.scheTbl01 th, .idTblScroll table.scheTbl01 td,
  .idTblScroll table.scheTbl02 th, .idTblScroll table.scheTbl02 td{
    width: 80px !important;
  }
  /* 先頭列（午前／午後などの行ラベル列） */
  .idTblScroll table.scheTbl01 tr > *:first-child,
  .idTblScroll table.scheTbl02 tr > *:first-child{
    width: 50px !important;
  }
  /* 担当医が1人もいない曜日列はさらに狭く表示（responsive.js が自動判定してクラス付与。
     クラス指定の分、詳細度が高いため上記の80px指定より優先される） */
  .idTblScroll table th.idColThin,
  .idTblScroll table td.idColThin{
    width: 30px !important;
    max-width: 30px !important;
    min-width: 30px !important;
    padding-left: 2px !important;
    padding-right: 2px !important;
    font-size: 10px !important;
  }

  /* idTblType01 / idTblType02 はスマホでは横スクロールさせない */
  .idTblScroll table.idTblType01,
  .idTblScroll table.idTblType02{ min-width: 0 !important; width: 100% !important; }

  /* idTblType01：1行=「項目名(th) + 値(td)」のペア構造 → 1行=1カードのブロック表示に変換 */
  .idTblType01, .idTblType01 tbody, .idTblType01 tr{
    display: block !important;
    width: 100% !important;
  }
  .idTblType01 th, .idTblType01 td{
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    box-sizing: border-box !important;
    padding: 10px 14px !important;
  }
  .idTblType01 th{
    background: #E8EEFF !important;
    font-weight: bold !important;
    border-right: 0 !important;
  }
  .idTblType01 td{
    border-left: 1px solid #CCCCCC !important;
    border-right: 1px solid #CCCCCC !important;
  }
  .idTblType01 tr:last-child td{
    border-bottom: 1px solid #CCCCCC !important;
  }

  /* idTblType02：1行目が見出し(th,th)、2行目が値(td,td)の2カラム表構造
     → ペア対応が崩れるためブロック化はせず、2カラムのまま縮小して表示 */
  .idTblType02{
    table-layout: fixed !important;
    width: 100% !important;
  }
  .idTblType02 th, .idTblType02 td{
    width: 50% !important;
    box-sizing: border-box !important;
    padding: 8px 6px !important;
    font-size: 12px !important;
    word-break: break-all;
  }

  /* ---- 入院ページ：差額部屋料金表（クラス付きの素のtable、PC用の固定px幅では
     スマホ幅に収まらないため、%指定に振り直す） */
  #admission #sec3 table{
    table-layout: fixed !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  #admission #sec3 table th, #admission #sec3 table td{
    font-size: 10px !important;
    padding: 6px 2px !important;
    word-break: break-all;
  }
  #admission #sec3 table .thFloor{ width: 10% !important; }
  #admission #sec3 table .thRoom{ width: 18% !important; }
  #admission #sec3 table .thPerson{ width: 14% !important; }
  #admission #sec3 table .thPrice{ width: 20% !important; }
  #admission #sec3 table .thContents{ width: 38% !important; }

  /* ---- Contact form ------------------------------------------------- */
  #contact #sec1 form dt,
  #contact #sec1 form dd{
    width: 100% !important;
    float: none !important;
  }
  #contact #sec1 form dd{ margin-bottom: 16px; }
  #contact #sec1 form dd input:not([type="radio"]):not([type="checkbox"]),
  #contact #sec1 form dd textarea{
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ---- Timeline / dl layouts (about, daycare etc.) ------------------ */
  #about #sec4 .sec4TimeLine .sec4Box dl dt{
    float: none !important;
    width: 100% !important;
    margin-bottom: 4px;
  }

  /* ---- Footer --------------------------------------------------------- */
  footer #idFooterWrap #idFooterInner{
    width: 100% !important;
    padding: 0 15px;
  }
  footer #idFooterWrap #idFooterInner #idFootL{
    width: 100% !important;
    float: none !important;
    text-align: center;
    padding-bottom: 20px;
  }
  footer #idFooterWrap #idFooterInner #idMainNaviF{
    width: 100% !important;
    float: none !important;
  }
  footer #idFooterWrap #idFooterInner #idMainNaviF ul{
    float: none !important;
    width: 100% !important;
    padding: 0;
    background: none !important;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  footer #idFooterWrap #idFooterInner #idMainNaviF ul.clLast{
    padding-bottom: 10px;
  }
  footer #idFooterWrap #idFooterInner #idMainNaviF ul li{
    margin-bottom: 0 !important;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  footer #idFooterWrap #idFooterInner #idMainNaviF ul li a{
    display: block;
    padding: 12px 4px;
  }
  footer #idFooterWrap #idFooterInner #idMainNaviF ul li ul{
    padding-left: 12px;
  }

  footer #idCopy{
    width: 100% !important;
    height: auto !important;
    padding: 15px !important;
    text-align: center;
  }
  footer #idCopy #idSubNaviF{
    width: 100% !important;
    float: none !important;
    margin: 8px 0 0 !important;
    text-align: center;
  }
  footer #idCopy #idSubNaviF li{
    float: none !important;
    display: inline-block;
    margin: 0 8px !important;
    text-align: center;
  }

  .clTopBtn{
    right: 12px;
    bottom: 12px;
    left: auto !important;
    margin: 0 !important;
  }
  .clTopBtn img{ width: 40px; height: auto; }

  /* ---- Top page (index) ------------------------------------------------ */
  #idMainvis{
    width: 100% !important;
    min-width: 0 !important;
    height: 220px !important;
  }
  #idMainvis h2{
    width: 80% !important;
    max-width: 130px !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    top: 20px !important;
    text-align: center !important;
  }
  #idMainvis h2 img{
    width: 100% !important;
    height: auto !important;
  }
  #idMainvis #slide, #idMainvis #slide .slideEl{
    height: 220px !important;
    min-width: 0 !important;
  }
  #idMainvis #slide .slideEl img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }

  #clExpansionImgWrap{ height: auto !important; }
  #clExpansionImgWrap li{
    position: static !important;
    left: auto !important;
    width: 100% !important;
    margin-bottom: 10px;
  }
  #clExpansionImgWrap li a{ display: block; position: relative; }
  #clExpansionImgWrap li .bg{ display: none !important; }
  #clExpansionImgWrap li .txt{
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    margin-top: 0 !important;
    transform: translate(-50%, -50%);
    max-width: 80% !important;
    padding: 10px 16px !important;
    background: rgba(255,255,255,0.88) !important;
    border-radius: 4px;
    text-align: center;
    z-index: 2;
  }
  #clExpansionImgWrap li .txt img{
    display: block;
    width: auto !important;
    max-width: 210px !important;
    max-height: 60px;
    height: auto !important;
    margin: 0 auto;
  }
  #clExpansionImgWrap li img.clExpansionImg{
    display: block !important;
    width: 100% !important;
    height: 170px !important;
    object-fit: cover !important;
    margin: 0 !important;
  }

  .clImg li{
    width: 50% !important;
    float: left !important;
    padding: 1px;
    box-sizing: border-box !important;
  }

  #clTransImg{ overflow: hidden; }
  #clTransImg li{
    width: 100% !important;
    float: none !important;
    box-sizing: border-box !important;
    margin-bottom: 8px;
  }
  #clTransImg li a{
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 130px !important;
    padding-bottom: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
  }
  #clTransImg li .bg{ display: none !important; }
  #clTransImg li a:after{ display: none !important; }
  #clTransImg li .clTransImgTxt{
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    bottom: auto !important;
    right: auto !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    max-width: 80% !important;
    transform: translate(-50%, -50%);
    padding: 8px 14px !important;
    background: rgba(255,255,255,0.88) !important;
    border-radius: 4px;
    text-align: center;
    z-index: 2;
  }
  #clTransImg li .clTransImgTxt img{
    display: block;
    width: auto !important;
    max-width: 100% !important;
    max-height: 36px;
    height: auto !important;
    margin: 0 auto;
  }
  /* 回復期リハビリテーション病棟は元画像が縦長のため他より小さく見えていたので拡大
     （外枠のサイズ感を市原デイケアセンターに合わせる） */
  #clTransImg li #clTransImg01 .clTransImgTxt img{
    max-height: 52px !important;
  }

  .clSubArea .clBox01{
    width: 100% !important;
    float: none !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 18px !important;
  }
  .clSubArea .clBox01 + .clBox01{
    margin-top: 25px !important;
  }
  .clSubArea .clBox01 h3, .clSubArea .clBox01 .clText01{ width: 100% !important; }
  .clSubArea .clBox01 .clText01{ text-align: center !important; }
  /* 画像を中央配置 */
  .clSubArea .clBox01 a > div{
    text-align: center;
  }
  .clSubArea .clBox01 a > div img{
    display: inline-block !important;
    margin: 0 auto;
  }

  /* GoogleMap + 病院名・住所エリア */
  .clSubArea .clBoxL01{
    width: 100% !important;
    height: auto !important;
    float: none !important;
    margin-bottom: 30px !important;
  }
  .clSubArea .clBoxL01 iframe{
    width: 100% !important;
    height: 220px !important;
  }
  .clSubArea .clBoxR01{
    width: 100% !important;
    float: none !important;
    margin-top: 0 !important;
  }
  .clSubArea .clBoxR01 .clH2_2{
    margin-bottom: 12px !important;
  }

  #idNewsArea #idNewsInner{ padding: 15px !important; }
  #idNewsArea #idNewsInner #idNewsList li a{
    padding: 14px 4px !important;
  }

  /* ---- Misc small-screen tweaks ---------------------------------------- */
  h2.clH2_1{ font-size: 18px; }
}

/* さらに小さい画面(〜400px)向けの微調整 */
@media screen and (max-width: 400px){
  header #idSubNaviArea #idSubNavi{ font-size: 10px; }
  header #idSubNaviArea #idSearch{ width: 100px !important; }
  #idMainvis{ height: 180px !important; }
  #idMainvis #slide, #idMainvis #slide .slideEl{ height: 180px !important; }
}

/* ハンバーガーボタンはPC表示では常に非表示 */
#idNaviToggle{ display: none; }

/* ===========================================================================
   自動生成: 各ページ固有CSSの固定幅を吸収する補完ルール
   （style/top/news/guide/visitor/service/information/access 各cssの
   width指定 150px(または8em)以上のセレクタを自動抽出）
   ========================================================================== */
@media screen and (max-width: 768px) {
/* style.css: was 710px */ .idSecTitle { width: 100% !important; max-width: 100% !important; }
/* top.css: was 1000px */ #idMainvis h2 { width: 100% !important; max-width: 100% !important; }
/* top.css: was 1000px */ h2.clH2_1 { width: 100% !important; max-width: 100% !important; }
/* top.css: was 1000px */ #clExpansionImgWrap { width: 100% !important; max-width: 100% !important; }
/* top.css: was 250px */ #clExpansionImgWrap li { width: 100% !important; max-width: 100% !important; }
/* top.css: was 240px */ #clExpansionImgWrap li .bg { width: 100% !important; max-width: 100% !important; }
/* top.css: was 1000px */ .clImg { width: 100% !important; max-width: 100% !important; }
/* top.css: was 250px */ .clImg li { width: 100% !important; max-width: 100% !important; float: none !important; }
/* top.css: was 250px */ #clTransImg li a { width: 100% !important; max-width: 100% !important; }
/* top.css: was 175px */ #clTransImg li a:after { width: 100% !important; max-width: 100% !important; }
/* top.css: was 250px */ #clTransImg li .bg { width: 100% !important; max-width: 100% !important; }
/* top.css: was 175px */ #clTransImg li .bg:after { width: 100% !important; max-width: 100% !important; }
/* #clTransImg li #clTransImg01 .clTransImgTxt は手動ルールで個別に幅を制御するため、
   自動生成の width:100% 上書きは除外（幅いっぱいに広がるバグの原因だったため） */
/* top.css: was 1000px */ .clSubArea { width: 100% !important; max-width: 100% !important; }
/* top.css: was 232px */ .clSubArea .clBox01 { width: 100% !important; max-width: 100% !important; float: none !important; }
/* top.css: was 210px */ .clSubArea .clBox01 h3 { width: 100% !important; max-width: 100% !important; }
/* top.css: was 210px */ .clSubArea .clBox01 .clText01 { width: 100% !important; max-width: 100% !important; }
/* top.css: was 880px */ #idNewsArea #idNewsInner { width: 100% !important; max-width: 100% !important; }
/* top.css: was 880px */ #idNewsArea #idNewsInner #idNewsList { width: 100% !important; max-width: 100% !important; }
/* top.css: was 866px */ #idNewsArea #idNewsInner #idNewsList li a { width: 100% !important; max-width: 100% !important; }
/* top.css: was 880px */ #idNewsArea #idNewsInner p.clBtn01 { width: 100% !important; max-width: 100% !important; }
/* top.css: was 650px */ .clBoxL01 { width: 100% !important; max-width: 100% !important; float: none !important; }
/* top.css: was 320px */ .clBoxR01 { width: 100% !important; max-width: 100% !important; float: none !important; }
/* news.css: was 251px */ #newsList #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* news.css: was 843px */ #newsList #sec1 ul li a { width: 100% !important; max-width: 100% !important; }
/* news.css: was 150px */ #newsList #sec1 #idPageNaviBtn #idPageNaviPrev, #newsList #sec1 #idPageNaviBtn #idPageNaviNext { width: 100% !important; max-width: 100% !important; }
/* news.css: was 251px */ #newsDetail #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* news.css: was 150px */ #newsDetail #sec1 #idPageNaviBtn #idPageNaviPrev, #newsDetail #sec1 #idPageNaviBtn #idPageNaviList, #newsDetail #sec1 #idPageNaviBtn #idPageNaviNext { width: 100% !important; max-width: 100% !important; }
/* news.css: was 1000px */ #recruit #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* news.css: was 160px */ #recruit #sec1 .idTblType01 th { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 220px */ #contact #sec1 #errorBack { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 220px */ #contact #sec1 #errorBack #backBtn { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 710px */ #contact #sec1 form { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 258px */ #contact #sec1 form dt { width: 100% !important; max-width: 100% !important; float: none !important; }
/* guide.css: was 450px */ #contact #sec1 form dd { width: 100% !important; max-width: 100% !important; float: none !important; }
/* guide.css: was 162px */ #contact #sec1 form dd .input1 { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 306px */ #contact #sec1 form dd .input2 { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 400px */ #contact #sec1 form dd .input3 { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 220px */ #contact #sec1 #confirmBtn { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 460px */ #contact #sec1 #btnWrap { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 220px */ #contact #sec1 #btnWrap input { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 258px */ #contact #sec1 #confirm th { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 430px */ #contact #sec1 #confirm td { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 220px */ #sitemap .id3colBox02 .id3colBox { width: 100% !important; max-width: 100% !important; float: none !important; }
/* guide.css: was 225px */ #search #sec1 #idSearch { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 190px */ #search #sec1 #idSearch .clSearchTxt { width: 100% !important; max-width: 100% !important; float: none !important; }
/* guide.css: was 843px */ #search #sec1 ul li a { width: 100% !important; max-width: 100% !important; }
/* guide.css: was 150px */ #search #idPageNaviBtn #idPageNaviPrev, #search #idPageNaviBtn #idPageNaviNext { width: 100% !important; max-width: 100% !important; }
/* visitor.css: was 165px */ #outpatient #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* visitor.css: was 307px */ #department #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* visitor.css: was 165px */ #admission #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* visitor.css: was 296px */ #admission #sec3 table .thContents { width: 100% !important; max-width: 100% !important; }
/* visitor.css: was 449px */ #checkup #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* visitor.css: was 220px */ .idSideBnnr { width: 100% !important; max-width: 100% !important; }
/* visitor.css: was 260px */ #general-checkup .clGrayBox { width: 100% !important; max-width: 100% !important; }
/* visitor.css: was 710px */ #general-checkup .secBox1 { width: 100% !important; max-width: 100% !important; }
/* visitor.css: was 300px */ #general-checkup .secBox1 .sec1BoxL { width: 100% !important; max-width: 100% !important; float: none !important; }
/* visitor.css: was 300px */ #general-checkup .secBox1 .sec1BoxR { width: 100% !important; max-width: 100% !important; float: none !important; }
/* visitor.css: was 345px */ #general-checkup .secBox1 .clBoxL { width: 100% !important; max-width: 100% !important; float: none !important; }
/* visitor.css: was 345px */ #general-checkup .secBox1 .clBoxR { width: 100% !important; max-width: 100% !important; float: none !important; }
/* visitor.css: was 170px */ #vaccination #sec3 .idTblType01 th { width: 100% !important; max-width: 100% !important; }
/* service.css: was 387px */ #rehabilitation #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* service.css: was 165px */ #kidney-center #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* service.css: was 710px */ #kidney-center #sec6 table { width: 100% !important; max-width: 100% !important; }
/* service.css: was 280px */ #daycare #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* service.css: was 300px */ #daycare #sec6 .sec6BoxWrap .sec6BoxL { width: 100% !important; max-width: 100% !important; float: none !important; }
/* service.css: was 300px */ #daycare #sec6 .sec6BoxWrap .sec6BoxR { width: 100% !important; max-width: 100% !important; float: none !important; }
/* service.css: was 170px */ #daycare #sec6 .idTblType01 th { width: 100% !important; max-width: 100% !important; }
/* service.css: was 165px */ #home-service #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* service.css: was 165px */ #kangobu #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* information.css: was 221px */ #about #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* information.css: was 170px */ #about #sec3 .idTblType01 th { width: 100% !important; max-width: 100% !important; }
/* information.css: was 13em */ #about #sec4 .sec4TimeLine .sec4Box dl dt { width: 100% !important; max-width: 100% !important; float: none !important; }
/* information.css: was 164px */ #message #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* information.css: was 150px */ #message .id2colBox04 .boxL { width: 100% !important; max-width: 100% !important; }
/* information.css: was 540px */ #message .id2colBox04 .boxR { width: 100% !important; max-width: 100% !important; }
/* information.css: was 166px */ #floormap #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* information.css: was 164px */ #radiology #sec1 .idLocalNavBox .clend { width: 100% !important; max-width: 100% !important; }
/* information.css: was 360px */ #rehabilitation-center #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* information.css: was 167px */ #symptoms #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* information.css: was 380px */ #symptoms #sec1BoxWrap #sec1Btn { width: 100% !important; max-width: 100% !important; }
/* information.css: was 190px */ #qa #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* access.css: was 219px */ #access #idHeadvis h2 { width: 100% !important; max-width: 100% !important; }
/* access.css: was 340px */ #access .boxR { width: 100% !important; max-width: 100% !important; }
}
