@charset "UTF-8";
/*=========================
▼▼色の定義▼▼
===========================*/
:root {
  --bg-color-white: #fff;
  --bg-color-blue: #2a59a7;
  --bg-color-blue02: #2959a7;
  --bg-color-blue03: #daeeff;
  --bg-color-blue04: #043968;
  --text-color-white: #fff;
  --text-color-blue: #2a59a7;
  --text-color-blue02: #3fadf1;
  --text-color-blue03: #023f73;
  --text-color-blue04: #024073;
  --text-color-black: #333;
  --border-color-blue: #053967;
  --border-color-blue02: #daeeff;
  --border-color-blue03: #49b0d6;
  --border-color-blue04: #829cb3;
  --border-color-blue05: #bfe1f2;
  --border-color-blue06: #8caadc;
  --news-border-color: #d3d7dd;
  --btn-border-blue: #0b7fc6;
  --btn-bg-color-blue: #0b7fc6;
  --btn-bg-color-white: #fff;
  --nav-color: #053967;
}
/*=========================
  ▲▲色の定義▲▲
  ===========================*/
@media screen and (min-width: 770px) {
  /*=========================
▼▼全ページ共通▼▼
===========================*/
  body {
    font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro",
      "游ゴシック体", "Yu Gothic", YuGothic, "Yu Gothic Medium", "メイリオ",
      Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
    color: var(--text-color-black);
    min-width: 1200px;
    -webkit-font-smoothing: antialiased;
  }
  table {
    width: 100%;
  }
  .pc_none {
    display: none;
  }
  .auto {
    width: 1000px;
    margin: 0 auto;
  }
  .pc_none {
    display: none;
  }
  #back-top {
    display: none;
    width: 82px;
    position: fixed;
    bottom: 14px;
    right: 30px;
    z-index: 99;
  }
  main a {
    width: 100%;
    display: block;
  }
  /*▼▼セクションパディング▼▼*/
  section {
    padding: 125px 0;
  }
  /*▲▲セクションパディング▲▲*/
  /*=========================
▼▼下層FV▼▼
===========================*/
  h1 {
    clear: both;
    color: #fff;
    font-weight: 600;
    font-size: 47px;
    text-align: center;
    position: relative;
    height: 216px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 75px;
    flex-direction: column;
  }
  h1:after {
    content: "";
    display: block;
    width: 96%;
    height: 216px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    border-radius: 0 0 75px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  h1 .eg_img {
    width: auto;
    height: 18px;
    display: block;
  }
  h1 .eg_img img {
    width: auto;
    height: 100%;
    display: block;
  }
  /*=========================
▲▲下層FV▲▲
===========================*/
  /*=========================
▼▼背景模様（左右）▼▼
===========================*/
  .bg_right {
    position: relative;
  }
  .bg_right::before {
    content: "";
    display: block;
    min-width: 1436px;
    width: 90vw;
    height: 100%;
    background-color: #f7f7f5;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: 0;
    right: -50px;
    z-index: -1;
    border-radius: 7px;
  }
  .bg_left {
    position: relative;
  }
  .bg_left::before {
    content: "";
    display: block;
    min-width: 1436px;
    width: 90vw;
    height: 605px;
    background-color: #f7f7f5;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: 25px;
    left: -50px;
    z-index: -1;
    border-radius: 7px;
  }

  /*=========================
▲▲背景模様（左右）▲▲
===========================*/
  /*=========================
▼▼下層ページ内リンク▼▼
===========================*/
  .conts_link {
    margin-bottom: 75px;
    padding: 0;
  }
  .conts_link ul {
    width: 770px;
    margin: 0 auto;
    background-color: #f2f6fe;
    border-radius: 100px 0 100px 0;
    padding: 37px 130px 28px;
    display: flex;
    flex-wrap: wrap;
    min-height: 216px;
    justify-content: center;
  }
  .conts_link ul::after {
    content: "";
    display: block;
    width: 270px;
    height: 0;
    margin-right: 20px;
  }
  .conts_link ul li {
    font-weight: 600;
    width: 225px;
    margin-bottom: 6px;
    transition: .3s;
  }
  .conts_link ul li a {
    color: var(--text-color-blue);
    left: 30px;
    padding: 5px 0 5px 28px;
    position: relative;
    background-image: url("../img/share/arrow_down.png");
    background-repeat: no-repeat;
    background-size: 21px;
    background-position: left top 8px;
    transition: .5s;
    width: fit-content;
  }
  .conts_link ul li a:hover {
    transition: .5s;
  }
  .conts_link ul li a::after {
    content: "";
    position: absolute;
    width: calc(100% - 28px);
    height: 2px;
    background: var(--nav-color);
    bottom: 4px;
    left: 28px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.5s;
  }
  .conts_link ul li a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  /*=========================
▲▲下層ページ内リンク▲▲
===========================*/
  /*=========================
▼▼パーツ部分▼▼
===========================*/
  hgroup.title_box {
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color-blue);
  }
  h2.h2_title {
    font-size: 32px;
    line-height: 1.4;
    text-align: center;
    color: var(--text-color-blue);
    font-weight: 500;
    margin-bottom: 35px;
  }
  h3.h3_title {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-color-blue);
  }
  .btn {
    font-size: 22px;
    width: 520px;
    margin: 0 auto;
  }
  .btn a {
    padding: 22px 60px 21px;
    border-radius: 15px;
    border: 2px solid var(--btn-border-blue);
    line-height: 1.3;
    color: var(--text-color-white);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    font-weight: 600;
    transition: all 0.3s;
    background-color: var(--btn-bg-color-blue);
  }
  .btn a::after {
    content: "";
    display: block;
    width: 38px;
    height: 38px;
    background-image: url(../img/share/btn_right_arrow.png);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    transition: all 0.3s;
  }
  .btn a:hover {
    background-color: var(--btn-bg-color-white);
    color: var(--btn-bg-color-blue);
  }
  .btn a:hover::after {
    background-image: url(../img/share/btn_right_arrow_hover.png);
  }
  .reception_time {
    margin-bottom: 13px;
    border-collapse: collapse;
    border: 2px solid var(--border-color-blue);
    width: 600px;
  }
  .reception_time thead th {
    border: 2px solid var(--border-color-blue);
    font-size: 16px;
    line-height: 1.2;
    width: 65px;
    color: var(--text-color-blue);
    font-weight: 600;
    padding: 9px 6px 6px;
    text-align: center;
    background-color: var(--bg-color-blue03);
  }
  .reception_time thead .title_time {
    width: 129px;
  }
  .reception_time tbody td {
    border: 2px solid var(--border-color-blue);
    background-color: var(--bg-color-white);
  }
  .reception_time tbody .time {
    font-size: 16px;
    color: var(--text-color-blue);
    font-weight: 700;
    padding: 5px 4px 3px;
    font-feature-settings: "palt";
    line-height: 1.2;
    text-align: center;
    vertical-align: middle;
  }
  .reception_time .small {
    font-size: 12px;
    font-weight: 600;
    padding-top: 4px;
    display: block;
  }
  .reception_box .detail_box {
    margin-bottom: 6px;
  }
  .reception_box .main_information {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 6px;
  }
  .reception_box .main_information:last-of-type {
    margin-bottom: 0;
  }
  .reception_box .main_information dt {
    background-color: var(--bg-color-blue02);
    color: var(--text-color-white);
    border-radius: 4px;
    padding: 6px 8px 5px;
    font-size: 14px;
    line-height: 1;
    width: 74px;
    text-align: center;
  }
  .reception_box .main_information dd {
    font-size: 16px;
    margin-left: 10px;
    line-height: 1.6;
  }
  /*=========================
▲▲パーツ部分▲▲
===========================*/
  header {
    clear: both;
    float: left;
    border-top: 7px solid #2a59a6;
    width: 100%;
    position: relative;
    z-index: 999;
  }
  #header {
    margin-right: auto;
    margin-left: auto;
    width: 1200px;
  }
  #header .encircle {
    display: flex;
    min-width: 1200px;
    height: 115px;
    padding: 0 300px 17px 0;
    position: relative;
    justify-content: space-between;
    align-items: center;
  }
  #header_bg h1 {
    font-size: 12px;
    float: left;
    width: 340px;
    margin-top: 73px;
    text-align: left;
    line-height: 21px;
  }
  #header .link_box {
    color: #fff;
    padding-left: 26px;
    padding-bottom: 8px;
    position: absolute;
    top: 0;
    right: 0;
  }
  #header .link_box ul {
    clear: both;
    float: left;
    display: flex;
    width: 286px;
    justify-content: space-between;
    font-size: 18px;
    letter-spacing: -.02em;
    font-weight: 600;
  }
  #header .link_box ul li {
    width: 140px;
    text-align: center;
  }
  #header .link_box a {
    display: block;
    border-radius: 0 0 15px 15px;
    color: #fff;
    padding: 8px 0 7px;
    transition: 0.3s;
  }
  #header .link_box a:hover {
    padding-top: 20px;
  }
  #header .link_box .text_01 a {
    background-color: var(--bg-color-blue);
  }
  #header .link_box .text_02 a {
    background-color: #938473;
  }
  #header .link_box ul .icon {
    width: auto;
    height: 27px;
    display: flex;
    justify-content: center;
    margin-bottom: 3px;
  }
  #header .link_box ul .icon img {
    display: block;
    width: auto;
    height: 100%;
    opacity: 1;
  }
  #header .link_box .tel {
    font-size: 22px;
    text-align: center;
    clear: both;
    float: left;
    width: 214px;
    background-image: url(../img/share/tel_w.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 18px;
  }
  #header .tel_box {
    width: 333px;
    margin-top: 7px;
    margin-right: 20px;
    color: #2a59a6;
    text-align: right;
  }
  #header .tel_box dt {
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    padding-left: 60px;
    line-height: 14px;
    position: relative;
    top: 10px;
  }
  #header .tel_box dd.tel {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.6;
    padding-left: 58px;
    padding-bottom: 4px;
    font-family: 'roboto';
  }
  #header .tel_box dd.tel .header_small {
    font-size: 21px;
    font-weight: 600;
  }
  #header .tel_box dd.closed {
    font-size: 11px;
    font-weight: 500;
    padding-left: 60px;
    position: relative;
    top: -12px;
    font-feature-settings: "palt";
  }
  #header #background_color {
    padding-top: 14px;
    width: 280px;
  }
  #header #background_color .logo {
    float: left;
    text-align: center;
    margin-bottom: 0;
  }
  #header #background_color .logo a img {
    display: block;
    width: 100%;
    height: auto;
  }
  #header #background_color .tel_icon {
    display: none;
  }
  #header #nav_pc ul {
    width: 1200px;
    display: flex;
    justify-content: center;
  }
  #header #nav_pc ul li:last-of-type {
    padding-right: 0;
  }
  #header #nav_pc ul li a {
    font-weight: 600;
    vertical-align: middle;
    color: var(--nav-color);
    position: relative;
    padding: 10px 28px 26px;
    line-height: 1.3;
  }
  #header #nav_pc ul li a::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 4px;
    background: var(--nav-color);
    bottom: 0;
    left: 10%;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  #header #nav_pc ul li a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  #header #nav_sp {
    clear: both;
    float: left;
    width: 1000px;
    margin-bottom: 13px;
    display: none;
  }
  /*=========================
▲▲全ページ共通▲▲
===========================*/
  /*=========================
▼▼下層ページ共通▼▼
===========================*/
  #main_img {
    clear: both;
    width: 100%;
    text-align: center;
  }
  #main_img img {
    width: 1114px;
    vertical-align: bottom;
    margin-right: auto;
    margin-left: auto;
  }
  #page_title_box_bg {
    clear: both;
    width: 1100px;
    padding-top: 28px;
    margin-bottom: 38px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 28px;
  }
  #page_title_box {
    width: 1100px;
    padding-left: 12px;
  }
  #page_title_box .title {
    font-size: 30px;
    line-height: 21px;
    padding-left: 36px;
    float: left;
    margin-right: 30px;
  }
  #page_title_box .detail_title {
    font-size: 26px;
    line-height: 17px;
    background-image: url(../img/share/bg_05.png);
    background-repeat: no-repeat;
    background-position: left 3px;
    padding-left: 36px;
    float: left;
    display: none;
  }
  #page_title_box .title.color .small {
    font-size: 10px;
    color: #bbbcbe;
    letter-spacing: 0.2em;
  }
  #page_title_box .page_link {
    float: right;
    padding-right: 20px;
  }
  #page_title_box .page_link li {
    background-image: url(../img/share/icon_link_02.png);
    background-size: 17px;
    background-repeat: no-repeat;
    background-position: left center;
    display: inline;
    white-space: nowrap;
    padding-left: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    margin-right: 10px;
  }
  #page_title_box .link_box {
    float: right;
    margin-top: -6px;
  }
  #page_title_box .link_box li {
    float: right;
    width: 214px;
    border-radius: 6px;
    /* CSS3草案 */
    -webkit-border-radius: 6px;
    margin-left: 10px;
  }
  #contents_bg {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
  }
  /*=========================
▲▲下層ページ共通▲▲
===========================*/
  /*=========================
▼▼お知らせ一覧ページ▼▼
===========================*/
  #news_contents {
    width: 1100px;
    clear: both;
    float: left;
    margin-bottom: 107px;
  }
  #news_contents #right_column .notice_box {
    clear: both;
    float: left;
    width: 750px;
    margin-bottom: 21px;
  }
  #news_contents #right_column .notice_box dl {
    clear: both;
    float: left;
    width: 750px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #3cabf1;
    padding-bottom: 7px;
    margin-bottom: 11px;
  }
  #news_contents #right_column .notice_box dl dt {
    font-size: 16px;
    color: #053967;
  }
  #news_contents #right_column .notice_box dl dd {
    line-height: 26px;
  }
  #news_contents #right_column .notice_box .list {
    margin-right: 15px;
    margin-left: 15px;
    text-align: right;
    display: inline;
    float: right;
  }
  #news_contents #right_column .notice_box .list a {
    text-decoration: underline;
    color: #606465;
  }
  #news_contents #right_column .notice_box .list a:hover {
    text-decoration: none;
    color: #606465;
  }
  /*=========================
▲▲お知らせ一覧ページ▲▲
===========================*/
  /*=========================
▼▼アクセスページ▼▼
===========================*/
  #access_contents {
    width: 1100px;
    clear: both;
  }
  #access_contents #section_01 {
    clear: both;
    width: 100%;
    margin-bottom: 69px;
    float: left;
  }
  #access_contents #section_01 .title {
    font-size: 26px;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #e4e4e4;
    padding-bottom: 14px;
    margin-bottom: 39px;
    clear: both;
    width: 1000px;
    float: left;
  }
  #access_contents #section_01 .encircle {
    float: left;
    width: 100%;
    margin-right: 30px;
    margin-bottom: 40px;
  }
  #access_contents #section_01 .detail_box {
    clear: both;
    font-size: 17px;
    line-height: 30px;
    margin-bottom: 20px;
    padding-left: 14px;
    width: 736px;
    float: left;
  }
  #access_contents #section_01 .detail_box .text {
    float: left;
    width: 100%;
    clear: both;
  }
  #access_contents #section_01 .medical_box {
    float: left;
    width: 100%;
    margin-bottom: 8px;
  }
  #access_contents #section_01 .medical_box table {
    width: 100%;
    border: 1px solid #007cc8;
  }
  #access_contents #section_01 .medical_box table tr {
    width: 410px;
    text-align: center;
  }
  #access_contents #section_01 .medical_box table tr .word_01 {
    width: 190px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    color: #fff;
    background-color: #007cc8;
  }
  #access_contents #section_01 .medical_box table tr .text_01 {
    height: 48px;
    line-height: 48px;
    color: #fff;
    background-color: #007cc8;
  }
  #access_contents #section_01 .medical_box table tr .word_02 {
    width: 130px;
    height: 72px;
    padding-top: 4px;
    line-height: 22px;
    vertical-align: middle;
    text-align: center;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #007cc8;
    background-color: #ffffff;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #007cc8;
  }
  #access_contents #section_01 .medical_box .small {
    font-size: 13px;
  }
  #access_contents #section_01 .medical_box table tr .text_02 {
    height: 42px;
    line-height: 42px;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: #007cc8;
    background-color: #fff;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #007cc8;
    vertical-align: middle;
  }
  #access_contents #section_01 .map_img {
    width: 620px;
    clear: both;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 40px;
  }
  #access_contents #section_01 .google_map {
    clear: both;
    float: left;
    width: 100%;
  }
  #access_contents #section_02 {
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 107px;
  }
  #access_contents #section_02 a {
    color: #053967;
    text-decoration: underline;
  }
  #access_contents #section_02 a:hover {
    color: #053967;
    text-decoration: none;
  }
  #access_contents #section_02 .left_box {
    float: left;
    width: 100%;
    clear: both;
    margin-bottom: 40px;
  }
  #access_contents #section_02 .right_box {
    float: left;
    width: 100%;
    clear: both;
  }
  #access_contents #section_02 .title {
    font-size: 26px;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #e4e4e4;
    padding-bottom: 14px;
    margin-bottom: 25px;
    clear: both;
    float: left;
    width: 470px;
  }
  #access_contents #section_02 .text {
    width: 470px;
    line-height: 32px;
    clear: both;
    float: left;
    padding-left: 16px;
  }
  /*=========================
▲▲アクセスページ▲▲
===========================*/
  /*=========================
▼▼使っていない▼▼
===========================*/
  #recruit_contents {
    width: 1000px;
    clear: both;
    margin-right: auto;
    margin-left: auto;
    margin-top: -20px;
  }
  #recruit_contents #section_01 {
    clear: both;
    float: left;
    width: 1000px;
    margin-bottom: 114px;
    padding-top: 30px;
  }
  #recruit_contents #section_01 .profile_img_pc {
    float: left;
    width: 330px;
    margin-right: 80px;
  }
  #recruit_contents #section_01 .profile_img_sp {
    display: none;
  }
  #recruit_contents #section_01 .right_box {
    float: left;
    width: 590px;
  }
  #recruit_contents #section_01 .right_box .encircle {
    clear: both;
    float: left;
    width: 590px;
    margin-bottom: 44px;
  }
  #recruit_contents #section_01 .right_box .encircle .name {
    font-size: 25px;
    line-height: 28px;
    margin-top: -10px;
    float: left;
  }
  #recruit_contents #section_01 .right_box .encircle .name .small {
    font-size: 12px;
  }
  #recruit_contents #section_01 .right_box .detail_box {
    clear: both;
    float: left;
    width: 590px;
    margin-bottom: 40px;
  }
  #recruit_contents #section_01 .right_box .detail_box_none {
    clear: both;
    float: left;
    width: 590px;
  }
  #recruit_contents #section_01 .right_box .titile {
    font-size: 18px;
    color: #505253;
    margin-bottom: 24px;
    clear: both;
    float: left;
    width: 590px;
  }
  #recruit_contents #section_01 .right_box .chronology {
    clear: both;
    float: left;
    width: 590px;
  }
  #recruit_contents #section_01 .right_box .chronology table {
    width: 590px;
  }
  #recruit_contents #section_01 .right_box .chronology table tr {
    width: 590px;
  }
  #recruit_contents #section_01 .right_box .chronology table tr .word {
    width: 166px;
    border-bottom: thin dotted #c3c3c3;
    padding-right: 25px;
  }
  #recruit_contents #section_01 .right_box .chronology table tr .text {
    text-align: left;
    padding-bottom: 18px;
    border-bottom: thin dotted #c3c3c3;
  }
  #recruit_contents #section_01 .right_box .list {
    clear: both;
    float: left;
    width: 590px;
  }
  #recruit_contents #section_01 .right_box .button_sp.margin {
    display: none;
  }
  /*=========================
▲▲使っていない▲▲
===========================*/
  /*=========================
▼▼医療機器・検査説明▼▼
===========================*/
  #inspection_contents {
    width: 1100px;
    clear: both;
    float: left;
    margin-bottom: 29px;
  }
  #inspection_contents .u_space {
    padding-bottom: 78px;
  }
  #inspection_contents .title {
    font-size: 26px;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #e4e4e4;
    padding-bottom: 14px;
    margin-bottom: 39px;
    clear: both;
    float: left;
    width: 1000px;
  }
  #inspection_contents .lead {
    margin-bottom: 30px;
  }
  #inspection_contents .box {
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 28px;
  }
  #inspection_contents .box .img {
    width: 200px;
    float: left;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    /* CSS3草案 */
    -webkit-border-radius: 10px;
    /* Safari,Google Chrome用 */
    -moz-border-radius: 10px;
    /* Firefox用 */
    box-sizing: border-box;
    line-height: 0px;
  }
  #inspection_contents .box img {
    width: 100%;
  }
  #inspection_contents .box dl {
    float: right;
    width: 530px;
  }
  #inspection_contents .box dl dt {
    font-size: 20px;
    margin-bottom: 6px;
    color: #053967;
  }
  #inspection_contents .full {
    margin-top: 4px;
    clear: both;
    float: left;
    width: 100%;
    margin-top: 14px;
  }
  /*=========================
▲▲医療機器・検査説明▲▲
===========================*/
  /*=========================
▼▼ごあいさつ▼▼
===========================*/
  #doctor_contents {
    width: 1100px;
    clear: both;
    float: left;
    margin-bottom: 107px;
  }
  #doctor_contents #section_01 {
    clear: both;
    float: left;
    width: 750px;
    margin-bottom: 42px;
  }
  #doctor_contents #section_01 .left_box {
    float: left;
    width: 460px;
    clear: both;
    padding-left: 14px;
  }
  #doctor_contents #section_01 .left_box dl {
    clear: both;
    float: left;
    width: 446px;
    text-align: left;
    padding-left: 14px;
  }
  #doctor_contents #section_01 .midashi {
    clear: both;
    float: left;
    width: 736px;
    font-size: 22px;
    line-height: 35px;
    margin-bottom: 16px;
    color: #0a3a68;
    padding-left: 14px;
  }
  #doctor_contents #section_01 .left_box p {
    clear: both;
    float: left;
    margin-bottom: 11px;
    line-height: 27px;
  }
  #doctor_contents #section_01 .right_box {
    width: 250px;
    float: right;
  }
  #doctor_contents #section_01 .right_box li {
    width: 100%;
    clear: both;
    margin-bottom: 5px;
  }
  #doctor_contents #section_01 .right_box li img {
    width: 100%;
  }
  #doctor_contents #section_02 {
    float: left;
    width: 750px;
    clear: both;
  }
  #doctor_contents #section_02 .pc_img_area {
    float: left;
    width: 260px;
    margin-right: 30px;
  }
  #doctor_contents #section_02 .pc_img_area .img {
    margin-bottom: 8px;
  }
  #doctor_contents #section_02 .pc_img_area .img img {
    width: 100%;
  }
  #doctor_contents #section_02 .right_box {
    float: left;
    width: 460px;
  }
  #doctor_contents #section_02 .right_box .encircle {
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 44px;
  }
  #doctor_contents #section_02 .right_box .encircle .name {
    font-size: 25px;
    line-height: 28px;
    float: left;
    margin-bottom: 10px;
  }
  #doctor_contents #section_02 .right_box .encircle .name .small {
    font-size: 18px;
    line-height: 34px;
  }
  #doctor_contents #section_02 .right_box .detail_box {
    float: left;
    width: 100%;
    margin-bottom: 40px;
  }
  #doctor_contents #section_02 .right_box .detail_box .title {
    clear: both;
    float: left;
    font-size: 21px;
    color: #053967;
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    border-bottom-color: #7ca4d1;
    padding-bottom: 8px;
    width: 100%;
    margin-bottom: 14px;
    background-image: url(../img/index/bg_02.jpg);
    background-repeat: no-repeat;
    padding-left: 18px;
    background-position: left 3px;
    box-sizing: border-box;
  }
  #doctor_contents #section_02 .right_box .detail_box_none {
    clear: both;
    float: left;
    width: 100%;
  }
  #doctor_contents #section_02 .right_box .chronology {
    clear: both;
    float: left;
    width: 100%;
  }
  #doctor_contents #section_02 .right_box .chronology table {
    width: 100%;
  }
  #doctor_contents #section_02 .right_box .chronology table td {
    width: 100%;
    clear: both;
    display: block;
  }
  #doctor_contents #section_02 .right_box .chronology table th {
    width: 100%;
    display: block;
    color: #093662;
  }
  #doctor_contents #section_02 .right_box .chronology table tr .text {
    text-align: left;
    padding-bottom: 18px;
  }
  #doctor_contents #section_02 .profile_img_sp {
    display: none;
  }
  #doctor_contents #section_02 .img {
    clear: both;
    float: left;
    width: 100%;
  }
  #doctor_contents #section_03 {
    float: left;
    width: 750px;
    clear: both;
  }
  #doctor_contents #section_03 .profile_img_sp {
    display: none;
  }
  #doctor_contents #section_03 .chronology {
    clear: both;
    float: left;
    width: 100%;
  }
  #doctor_contents #section_03 .chronology table {
    width: 100%;
  }
  #doctor_contents #section_03 .chronology table th {
    color: #093662;
    width: 200px;
  }
  #doctor_contents #section_03 .chronology table tr .text {
    text-align: left;
    padding-bottom: 18px;
  }
  #doctor_contents #section_03 .list {
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 2px;
    text-indent: -1em;
    padding-left: 1em;
  }
  #doctor_contents #section_03 .detail_box {
    float: left;
    width: 100%;
    margin-bottom: 40px;
    clear: both;
  }
  #doctor_contents #section_03 .box {
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 44px;
  }
  #doctor_contents #section_03 .box dl {
    clear: both;
    float: left;
    width: 736px;
    padding-left: 16px;
  }
  #doctor_contents #section_03 .box dl dt {
    clear: both;
    float: left;
    width: 100%;
  }
  #doctor_contents #section_03 .box dl dd {
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 14px;
  }
  #doctor_contents .button_sp {
    width: 100%;
    clear: both;
    background-color: #053967;
    border-radius: 6px;
    /* CSS3草案 */
    -webkit-border-radius: 6px;
    /* Safari,Google Chrome用 */
    -moz-border-radius: 6px;
    margin-right: auto;
    margin-left: auto;
  }
  #doctor_contents .button_sp a {
    display: block;
    height: 48px;
    line-height: 48px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
  }
  #doctor_contents .button_sp a .icon {
    background-image: url(../img/index/button_bg.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 15px;
    display: inline-block;
    padding-left: 24px;
    line-height: 48px;
    font-weight: bold;
  }
  /*=========================
▲▲ごあいさつ▲▲
===========================*/
  /*=========================
▼▼施設案内▼▼
===========================*/
  #facility_contents {
    width: 1100px;
    clear: both;
    float: left;
    margin-bottom: 71px;
  }
  #facility_contents .set {
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 36px;
  }
  #facility_contents .box {
    float: left;
    width: 360px;
    margin-right: 30px;
    margin-bottom: 28px;
  }
  #facility_contents .p1 {
    margin-right: 31px;
  }
  #facility_contents .none {
    margin-right: 0px;
  }
  #facility_contents .preparation {
    text-align: center;
    font-size: 24px;
    margin-top: 58px;
    width: 100%;
    float: left;
    clear: both;
  }
  #facility_contents .box .img {
    width: 100%;
    float: left;
    clear: both;
  }
  #facility_contents .box .img img {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
  }
  #facility_contents .box dl {
    clear: both;
    float: left;
    width: 100%;
  }
  #facility_contents .box dl dt {
    font-size: 16px;
    color: #053967;
    font-weight: bold;
  }
  #facility_contents .box dl dd {
    line-height: 27px;
  }
  /*=========================
▲▲施設案内▲▲
===========================*/
  /*=========================
▼▼当院の特徴▼▼
===========================*/
  #about_contents {
    width: 1100px;
    clear: both;
    float: left;
    margin-bottom: 73px;
  }
  #about_contents #section_02 {
    clear: both;
    float: left;
    width: 750px;
  }
  #about_contents #section_02 .title {
    font-size: 26px;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #e4e4e4;
    padding-bottom: 14px;
    margin-bottom: 39px;
    clear: both;
    float: left;
    width: 1000px;
  }
  #about_contents #section_02 dl {
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 42px;
  }
  #about_contents #section_02 dl dt {
    font-size: 26px;
    color: #053967;
    float: left;
    background-image: url(../img/about/bg.png);
    background-repeat: no-repeat;
    height: 126px;
    width: 206px;
    padding-top: 90px;
    margin-right: 34px;
    text-align: center;
    background-size: 80%;
    background-size: contain;
  }
  #about_contents #section_02 dl .space {
    padding-top: 75px;
    line-height: 32px;
  }
  #about_contents #section_02 dl dd {
    float: left;
    width: 510px;
    text-align: left;
    margin-top: 2px;
    font-size: medium;
  }
  /*=========================
▲▲当院の特徴▲▲
===========================*/
  /*=========================
▼▼診療案内▼▼
===========================*/
  #medical_contents {
    width: 1100px;
    clear: both;
    float: left;
    margin-bottom: 77px;
  }
  #medical_contents .encircle {
    width: 750px;
    float: right;
    margin-bottom: 54px;
  }
  .cat_title {
    clear: both;
    float: left;
    font-size: 23px;
    color: #053967;
    padding-bottom: 10px;
    margin-bottom: 17px;
    background-image: url(../img/index/bg_02.jpg);
    background-repeat: no-repeat;
    padding-left: 33px;
    background-position: 15px 20px;
    /* box-shadow */
    box-shadow: 0px 0px 4px 0px #e0e0e0;
    -moz-box-shadow: 0px 0px 4px 0px #e0e0e0;
    -webkit-box-shadow: 0px 0px 4px 0px #e0e0e0;
    /* border-radius */
    border-radius: 6px 6px 0px 0px;
    -moz-border-radius: 6px 6px 0px 0px;
    -webkit-border-radius: 6px 6px 0px 0px;
    border-left: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
    border-bottom: 3px solid #0a3968;
    border-top: 1px solid #e1e1e1;
    width: 100%;
    background-color: #ffffff;
    padding-top: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  #medical_contents .encircle .lead {
    clear: both;
    margin-bottom: 24px;
    width: 736px;
    padding-left: 14px;
  }
  #medical_contents .encircle ul {
    padding-left: 14px;
    width: 736px;
    float: left;
    clear: both;
  }
  #medical_contents .encircle ul .sub_title {
    font-size: 18px;
    color: #053967;
    line-height: 28px;
  }
  #medical_contents .encircle ul .text {
    margin-bottom: 18px;
  }
  /*=========================
▲▲診療案内▲▲
===========================*/
  /*=========================
▼▼学会発表・論文発表・著者▼▼
===========================*/
  #detail_contents {
    width: 1100px;
    clear: both;
    float: left;
    margin-bottom: 77px;
  }
  #detail_contents .encircle {
    clear: both;
    float: left;
    width: 100%;
  }
  #detail_contents .box {
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 44px;
  }
  #detail_contents .box dl {
    clear: both;
    float: left;
    width: 736px;
    padding-left: 16px;
  }
  #detail_contents .box dl dt {
    clear: both;
    float: left;
    width: 100%;
  }
  #detail_contents .box dl dd {
    clear: both;
    float: left;
    width: 100%;
    margin-bottom: 14px;
  }
  #detail_contents .box .text {
    clear: both;
    float: left;
    width: 736px;
    margin-bottom: 14px;
    padding-left: 16px;
  }
  /*=========================
▲▲学会発表・論文発表・著者▲▲
===========================*/
  footer {
    padding-top: 35px;
  }
  footer .auto {
    width: 1200px;
  }
  .footer_block {
    display: flex;
    margin-bottom: 38px;
    justify-content: center;
  }
  footer .left_box {
    width: 526px;
    position: relative;
    padding-right: 58px;
  }
  .footer_logo {
    width: 305px;
    margin: 0 auto 18px;
  }
  footer .address_box {
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  footer .address {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0px;
    letter-spacing: 1px;
    color: var(--text-color-blue);
    text-align: center;
  }
  .tel_number {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
    color: var(--text-color-blue);
  }
  .center_border {
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
  }
  .center_border::before {
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background-color: var(--border-color-blue06);
    position: absolute;
    top: 9px;
    right: 0;
  }

  .number_box {
    display: flex;
    margin-bottom: 26px;
    justify-content: center;
  }
  .tel_number .number {
    display: inline-block;
    letter-spacing: 1px;
  }
  #footer .tel_number .number a {
    color: var(--text-color-blue);
  }
  footer .right_box {
    width: 616px;
    margin-top: 3px;
  }
  footer .map {
    position: relative;
    width: 100%;
    padding-top: 68.5%;
    overflow: hidden;
    margin-bottom: 29px;
  }
  footer .map iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  footer .medical_hours {
    color: var(--text-color-blue03);
    line-height: 1.4;
    margin-bottom: 13px;
    font-weight: 600;
  }
  footer .reception_time thead th {
    font-size: 16px;
    font-weight: 400;
    border: none;
    color: var(--text-color-black);
    background-color: #eef0f3;
    padding: 15px 7px 18px;
    width: 40px;
  }
  footer .reception_box .main_information {
    margin-bottom: 7px;
  }
  footer .reception_box .main_information dt {
    font-size: 16px;
    padding: 5px 8px 6px;
  }
  footer .reception_box .main_information dd {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-color-blue);
  }
  footer .reception_time tbody .time {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color-black);
    padding: 11px 4px 14px;
    font-family: 'roboto';
  }
  footer .caution_list li {
    font-size: 13px;
    margin-bottom: 7px;
  }
  footer .reception_time {
    width: 100%;
    border: 1px solid #eef0f3;
  }
  footer .reception_time tbody td {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #eef0f3;
    vertical-align: middle;
    padding: 5px 4px 3px;
    margin: 0 auto;
    position: relative;
  }
  footer .reception_time tbody td img {
    width: 15px;
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translateX(-50%);
  }
  footer .copy {
    text-align: center;
    font-size: 12px;
    background-color: var(--text-color-blue);
    padding: 10px 0;
    color: var(--bg-color-white);
    font-family: 'roboto';
  }
}