@charset "UTF-8";
/* Scss Document */
/* CSS Document */
@media (min-width: 641px) and (max-width: 1300px) {
  body,
  .nav_wrap.fixed,
  .mainvisual_wrap,
  #mainvisual,
  header,
  footer {
    min-width: 1300px;
  }
  .tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap {
    width: 1300px;
  }
}
@media screen and (max-width: 640px) {
  :root {
    --text-color: #333;
    /*メイン色*/
    --main-color: #e7ad70;
    /*サブ色*/
    --sub-color: #acb2bb;
    /*サイドメニュー・レイアウト類の背景色*/
    --bg-color: #f5f5f5;
    /*境界線色*/
    --border-color: #ecdfca;
    /*ボタンなどの色*/
    --btn-color: #000;
    /*フォント*/
    --vdl: vdl-v7mincho, sans-serif;
    --San: noto-sans, sans-serif;
    --Ser: noto-serif, serif;
    --Gar: cormorant-garamond, serif;
  }
  body {
    font-size: 14px;
  }
  body,
  .nav_wrap.fixed,
  #mainvisual .inner,
  header,
  footer {
    min-width: 100%;
  }
  /* ナビ展開時スクロール禁止処理 */
  body.nav-open {
    overflow: hidden !important;
  }
  /*============================================================================

    header

  ============================================================================*/
  header {
    display: none;
  }
  /*============================================================================

    nav

  ============================================================================*/
  .nav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
  }
  .nav_wrap .header_logo {
    width: calc(100% - 56px);
  }
  .nav_wrap .header_logo a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 0;
  }
  .nav_wrap .header_logo img {
    width: 100%;
    height: 45px;
  }
  /* ハンバーガーボタン */
  .btn_tgl_menu {
    position: relative;
    right: 0;
    color: #fff;
    width: 55px;
    background: var(--text-color);
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .btn_tgl_menu i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: auto;
    font-style: normal;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  .btn_tgl_menu span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 35px;
    height: 2px;
    background: #fff;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
  }
  .btn_tgl_menu span:nth-of-type(1) {
    top: 10px;
  }
  .btn_tgl_menu span:nth-of-type(2) {
    top: 20px;
  }
  .btn_tgl_menu span:nth-of-type(3) {
    top: 30px;
  }
  /* MENUボタン押下時 */
  .btn_tgl_menu.active {
    right: 16.25rem;
  }
  .btn_tgl_menu.active span:nth-of-type(1) {
    top: 20px;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
  .btn_tgl_menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .btn_tgl_menu.active span:nth-of-type(3) {
    top: 20px;
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
  /* ドロップダウンメニュー */
  .tgl_menu_list {
    position: fixed;
    top: 0;
    right: 0;
    right: -16.25rem;
    z-index: 2;
    overflow: hidden;
    width: 16.25rem;
    height: 100%;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: var(--text-color);
    padding: 15px;
  }
  .tgl_menu_list ul {
    flex-flow: column wrap;
  }
  .tgl_menu_list ul li {
    display: block;
    border-bottom: 1px solid #fff;
    width: 100%;
  }
  .tgl_menu_list ul li:first-child {
    border-top: 1px solid #fff;
  }
  .tgl_menu_list ul li::after {
    display: none;
  }
  .tgl_menu_list ul li a,
  .tgl_menu_list ul li p {
    display: block;
    text-align: left;
    padding: 15px 10px;
    width: auto;
    color: #fff;
    font-weight: normal;
  }
  .tgl_menu_list ul li a span,
  .tgl_menu_list ul li p span {
    display: none;
  }
  .tgl_menu_list ul li a:hover {
    color: #fff;
  }
  body.nav-open .tgl_menu_list {
    overflow-y: scroll;
    right: 0;
  }
  /* ------- スライドメニュー シングル------- */
  .tgl_menu_list ul li.nav_single_menu div {
    position: static;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding-bottom: 10px;
    box-shadow: none;
  }
  .tgl_menu_list ul li.nav_single_menu div a {
    margin-left: 15px;
    background: none;
    padding: 3px;
    line-height: 2;
    text-indent: -1.2em;
    padding-left: 1.2em;
    border-bottom: none;
  }
  .tgl_menu_list ul li.nav_single_menu div a::before {
    position: static;
    display: inline;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 10px;
  }
  .tgl_menu_list ul li.nav_single_menu div a i.nav_arrow {
    display: none;
  }
  .tgl_menu_list ul li.nav_single_menu div a:hover {
    color: #fff;
    background: none;
  }
  /* ------- スライドメニュー メガ------- */
  .tgl_menu_list .nav_mega_menu {
    position: relative;
  }
  .tgl_menu_list .nav_mega_menu p::before {
    position: absolute;
    display: flex;
    align-items: center;
    width: auto;
    height: auto;
    border: none;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f067";
  }
  .tgl_menu_list .nav_mega_menu .mega_menu_wrap {
    display: none;
    position: static;
    opacity: 0;
    visibility: hidden;
    background: none;
    box-shadow: none;
    transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .tgl_menu_list .nav_mega_menu.active .mega_menu_wrap {
    opacity: 1;
    visibility: visible;
  }
  .tgl_menu_list .mega_menu_inner {
    display: block;
    padding: 0 0 10px 0;
    width: 100%;
  }
  .tgl_menu_list .mega_menu_top a {
    padding: 12px 12px 12px 0;
  }
  .tgl_menu_list .mega_menu_top a::before {
    position: static;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    border: none;
    margin-right: 10px;
  }
  .tgl_menu_list .menu_list {
    margin-left: 0;
  }
  .tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list p {
    display: none;
  }
  .tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list li {
    border: none !important;
  }
  .tgl_menu_list .nav_mega_menu .mega_menu_inner .menu_list li a {
    padding: 3px;
    padding-left: 1.2em;
  }
  .tgl_menu_list .nav_mega_menu div a {
    margin-left: 15px;
    background: none;
    padding: 3px;
    line-height: 2;
    text-indent: -1.2em;
    padding-left: 1.2em;
  }
  /* メガメニュー展開時 */
  .tgl_menu_list .nav_mega_menu.active p::before {
    content: "\f068";
  }
  /* ナビ展開時の後ろの背景 */
  .nav_overlay {
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
  body.nav-open .nav_overlay {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  /* ヘッダー固定ボタンエリア */
  .btn_area {
    width: 100%;
  }
  .btn_area ul {
    display: flex;
    background: #fff;
    padding: 5px 2.5px;
  }
  .btn_area li.btn {
    width: 100%;
    margin: 0 2.5px;
  }
  .btn_area li.btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 10px 2%;
  }
  .btn_area li.btn a i {
    width: 15px;
    margin-right: 3px;
  }
  .btn_area li.btn_tel {
    background: #666;
  }
  .btn_area li.btn_yoyaku {
    background: var(--main-color);
  }
  .btn_area li.btn_monshin {
    background: #00A3BB;
  }
  .btn_area li.btn_access {
    background: #666;
  }
  /* 準備中用のクラス */
  .btn_area li.btn.coming {
    background: #aaa !important;
  }
  .btn_area li.btn.coming a {
    pointer-events: none;
    padding: 2px 2% 18px;
  }
  .btn_area li.btn.coming a::before {
    content: "（準備中）";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 90%;
  }
  .nav_wrap.fixed {
    background: #fff;
  }
  /*============================================================================

  #mainvisual

  ============================================================================*/
  #mainvisual {
    background-position: center;
    background-attachment: scroll;
    background-size: cover;
    height: 200px;
    margin-top: 110px;
  }
  #mainvisual .inner {
    width: auto;
    height: inherit;
  }
  /* 下層ページヘッドライン */
  #mainvisual p.headline {
    margin-top: 0;
    font-size: 22px;
  }
  /*============================================================================

  #contents

  ============================================================================*/
  #container::after {
    top: 440px;
    left: 0;
    width: 100%;
    height: 328px;
  }
  .box1 {
    width: auto;
    margin: 0 6%;
  }
  .box2 {
    width: auto;
    margin: 0 6% 80px;
  }
  #contents {
    padding-top: 0;
    width: auto;
  }
  #contents_left {
    width: auto;
    float: none;
    margin-right: 0;
  }
  #contents_right {
    width: auto;
    padding: 0 6%;
    float: none;
  }
  /*============================================================================

  footer

  ============================================================================*/
  .footer_info {
    width: auto;
    padding: 0 5%;
    margin-bottom: 40px;
  }
  .footer_info_left,
  .footer_info_right {
    width: 100%;
  }
  .footer_info_left {
    margin-bottom: 20px;
  }
  .footer_info_logo,
  .footer_info_logo img {
    width: 222px;
    height: 148px;
  }
  .footer_info_sche {
    float: none;
    width: 100%;
  }
  .footer_info_sche .tb01 :is(th, td) {
    font-size: 13.5px;
  }
  .footer_info_sche p {
    margin: 0;
  }
  .footer_info_detail dd:nth-of-type(1) {
    padding: 32px 0 26px 18px;
  }
  .footer_info_detail dd a {
    font-size: 26px;
  }
  .footer_info_detail dd a span img {
    width: 20px;
    height: auto;
  }
  .footer_info_access_desc ul {
    flex-wrap: wrap;
    justify-content: left;
    gap: 15px;
  }
  .footer_couns {
    display: flex;
    flex-flow: column wrap;
    padding: 0 5%;
  }
  .footer_couns_pop p {
    font-size: 20px;
  }
  
  .footer_bnr_area {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
  .detail_couns {
    position: relative;
    top: 0;
    bottom: 0;
    padding: 20px 3% 80vw;
    background: url(../images/bg_counseling.jpg) no-repeat center bottom 20px/calc(100% - 40px) auto;
  }
  .detail_couns_inner {
    padding: 0;
  }
  .detail_couns_inner p {
    font-size: 14px;
    letter-spacing: 0;
  }
  .detail_couns_inner p strong {
    font-size: 20px;
  }
  .reserve_couns dl {
    justify-content: left;
    gap: 0 10px;
  }
  .reserve_couns dl dd a {
    font-size: min(6.5vw, 30px);
  }
  .reserve_couns .btn02 a {
    font-size: 16px;
    padding: 11.5px 50px 11.5px 25px;
  }
  .bg_couns {
    display: none;
  }
  .footer_navi .inner {
    flex-wrap: wrap;
    width: 100%;
    padding: 50px 5% 100px;
  }
  .global_nav {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .medical_nav {
    flex-wrap: wrap;
  }
  .medical_nav .nav_title {
    width: 100%;
    height: auto;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    border: none;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    padding: 14px 0;
  }
  .ortho_list p {
    margin-bottom: 0;
  }
  .pagetop {
    right: 5%;
  }
  .copy {
    margin-top: 35px;
  }
  /*============================================================================

  $top

  ============================================================================*/
  .top_news .title_wrap {
    margin-bottom: 15px;
  }
  .top_news_inner {
    flex-wrap: wrap;
  }
  .news_list li {
    margin-bottom: 20px;
    overflow: unset;
    white-space: wrap;
    text-overflow: unset;
  }
  .news_list li a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .item_concept:nth-of-type(odd) {
    margin-top: 0;
  }
  .item_concept .num {
    top: -50px;
  }
  .item_concept .num img {
    max-width: 100px;
    width: 100%;
  }
  .item_concept .detail {
    margin: -35px auto 0;
    max-width: 320px;
    width: 95%;
    padding: 25px 20px 17px;
  }
  .item_concept .detail h3 {
    font-size: 20px;
  }
  .item_concept .detail p {
    font-size: 15px;
  }
  .item_case ul {
    margin-left: 10px;
  }
  .top_child {
    padding: 80px 0 0;
  }
  .top_child::before {
    height: 240px;
    background-size: cover;
  }
  .top_child .title_wrap {
    -webkit-filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff);
            filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff);
  }
  .top_child .title_wrap h2 {
    font-size: 24px;
  }
  .top_child .title_wrap span {
    font-size: 16px;
  }
  .doctor_flex {
    flex-direction: column-reverse;
  }
  .top_doctor .text {
    width: auto;
  }
  .top_doctor .title_wrap {
    display: block;
    position: static;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .top_doctor .title_wrap h2 {
    text-align: center;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
  .top_doctor .title_wrap span {
    text-align: center;
    margin-bottom: 0;
  }
  .top_doctor::after {
    left: 10%;
    width: 100%;
    height: 80%;
  }
  .top_doctor .doctor_flex .text {
    padding-top: 40px;
    width: 100%;
    margin-left: 0;
  }
  .top_doctor .doctor_flex .text h3 {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    font-size: 20px;
    margin: 0 auto 50px;
  }
  .top_doctor .doctor_flex .text p {
    font-size: 15px;
    -webkit-filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff);
            filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff) drop-shadow(0 0 2px #fff);
  }
  .top_doctor .bg_greet_img01 {
    top: -130px;
    left: -6%;
  }
  .top_doctor .bg_greet_img01 img {
    width: 150px;
  }
  .top_doctor .bg_greet_img02 {
    right: -6%;
    bottom: -50px;
  }
  .top_doctor .bg_greet_img02 img {
    width: 150px;
  }
  .top_doctor .top_doctor_img {
    width: 100%;
    margin-right: auto;
  }
  .top_doctor .btn01 {
    text-align: center;
  }
  .doctor_flex .text {
	width: auto;
	margin: 0 6% 80px;
  }
  .doctor_flex .text h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .top_doctor_img {
    width: 100%;
    margin-bottom: 15px;
  }
  .top_doctor_img p {
    text-align: center;
  }
  .top_doctor_img p img {
    width: 70%;
    margin: 0 auto 15px;
    display: block;
  }
  .top_doctor_img dt {
    margin-bottom: 17px;
    padding: 0 10%;
    text-align: center;
  }
  .top_doctor_img dd {
    text-align: center;
  }
  .top_concept .title_wrap h2 .small {
  	position: relative;
    top: -35px;
    right: -34px;
    font-size: 16px;
  }
  .ortho_flex_wrap {
  	justify-content: center;
  }
  .case_flex_wrap {
  	justify-content: center;
  }
  .item_case {	
    max-width: 380px;
  }
  .item_case:nth-of-type(1) {
	margin-left: 0;	
  }
  .item_case:nth-of-type(3) {
	margin-right: 0;	
  }
  .item_case a {
	padding: 32px 30px 20px;
  }
  /*============================================================================

  $breadcrumbs ぱんくず

  ============================================================================*/
  .breadcrumbs {
    width: 90%;
    margin: 0 5% 40px;
  }
  .breadcrumbs li {
    display: inline-block;
  }
  /*============================================================================

  $共通

  ============================================================================*/
  #contents {
    padding-bottom: 70px;
  }
  .box {
    width: auto;
    padding: 0 6% 8%;
  }
  .text {
    float: none;
    width: auto;
    padding: 0;
    border: none;
  }
  .img_cont img{
  	height: auto;;
  }
  /*============================================================================

  $見出し

  ============================================================================*/
  h1 {
    font-size: 12px;
    width: auto;
    padding: 5px 15px;
    text-align: center;
    position: static;
    margin-top: 0 !important;
  }
  .title_wrap span:nth-of-type(1) img {
    width: auto;
    max-height: 50px;
  }
  .title_wrap span:nth-of-type(2) img{
    width: auto;
    max-height: 150px;
  }
  .tit01,
  .tit02,
  .tit03,
  .tit04 {
    margin-bottom: 25px;
  }
  .tit01 {
    font-size: 200%;
  }
  .tit02 {
    font-size: 180%;
  }
  .tit03 {
    font-size: 160%;
  }
  .nowrap {
    white-space: normal;
  }
  /* テーブル */
  .tb01 {
    white-space: inherit;
  }
  .tb01 th {
    width: 30%;
    font-size: 14px;
  }
  .tb01 td {
    font-size: 14px;
    text-align: center;
  }
  .tb03,
  .tb03 th {
    white-space: inherit;
  }
  .tb03.w075par {
    width: 100%;
  }
  /* 縦積みにした時 */
  .tb03.ver th,
  .tb03.ver td {
    display: block;
    width: 100%;
  }
  .tb03.ver td {
    border-top: none;
  }
  .tb03.ver th:not(:first-child) {
    border-top: none;
  }
  /* 横スクロール */
  .scroll_tb {
    overflow-x: scroll;
  }
  .scroll_tb table {
    width: 816px;
  }
  .scroll_tb table th {
    position: sticky;
    left: 0;
  }
  .scroll_tb table th::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 1px solid #00408f;
  }
  .tb04,
  .tb04 th {
    white-space: normal;
  }
  .tb04 th {
    font-size: 13px;
  }
  .tb04 td,
  .tb04 th {
    padding: 2%;
  }
  /* 横スクロールテーブル */
  .js-scrollable table {
    min-width: 860px;
  }
  .btn02 a {
    padding: 10px 65px 10px 15px;
  }
  /* アンカーリンク */
  .ank02 {
    width: 100%;
  }
  .ank02 li {
    width: 100%;
  }
  .ank03 {
    width: 100%;
  }
  .ank03 li {
    width: 100%;
  }
  .ank04 {
    width: 100%;
  }
  .ank04 li {
    width: 100%;
  }
  /* 画像右寄せ */
  .img_fr {
    float: none;
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }
  .img_fr img {
    margin-bottom: 15px;
  }
	
  .img_flex {
	
  }
	
  .img_flex img{
	width: calc(100% / 2 - 20px);
  }
	
  /*============================================================================

  $doctor

  ============================================================================*/
  /* ごあいさつ */
  .doctor_greet .text {
    float: none;
    width: auto;
  }
  /* 経歴、資格 */
  .doctor_carr_sec1 {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  /*============================================================================

  $chinese

  ============================================================================*/
  .chinese_flex{
  	   flex-direction: column;
  }
  .chinese_flex.reverse{
  	   flex-direction: column-reverse;
  }
  .chinese_flex .text{
  	   width: 100%;
  }
  .chinese_flex .chinese_img{
  	   width: 100%;
  }
  
  
  .chinese .feature_box li {
    width: 40%;
}
  
  
  /*============================================================================

  $clinic

  ============================================================================*/
  .clinic_sec1 {
    max-width: 100%;
  }
  /* 医院概要 */
  .clinic_sec1 dt {
    width: 30%;
  }
  .clinic_sec1 dd a:hover {
    color: inherit;
  }
  .clinic_sec1 .schedule {
    width: 100%;
    margin: auto;
  }
  .clinic_sec1 .schedule .tb01 {
    width: 100%;
  }
  [class^=clinic_slide_wrap]:not(.clinic_slide_wrap_flex) {
    max-width: 100%;
  }
  /* 院内スライド横 */
  .clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-slider {
    display: block !important;
  }
  .clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-list {
    width: 100%;
  }
  .clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots {
    margin-top: 20px;
    width: 100%;
    justify-content: flex-start;
  }
  .clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots li {
    width: calc((100% - 25px) / 5);
    margin-bottom: 10px;
  }
  .clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots li:nth-of-type(5),
	.clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots li:last-child {	
    margin-right: 0;
  }
  /*============================================================================

  $facilities

  ============================================================================*/
  .facilities_equip dl {
    width: 100%;
    margin-left: 0;
    padding: 6% 10% 10%;
  }
  .facilities_equip_img {
    width: 100%;
    margin-bottom: 8%;
    margin-left: 0;
  }
  .facilities_equip2 dl,
  .facilities_equip2 dl:nth-child(3n) {
    width: 90%;
    margin: 0 5% 30px;
  }
  .facilities_equip2 dl:nth-child(even) {
    margin-right: 5%;
  }
  .facilities_equip3 dl {
    width: 90%;
    margin: 0 5% 30px;
  }
  .facilities_equip3 dl:nth-child(even) {
    margin-right: 5%;
  }
  .facilities_equip3 dl,
  .facilities_equip3 dl:nth-child(3n) {
    width: 90%;
    margin: 0 5% 30px;
  }
  /*============================================================================

  $access

  ============================================================================*/
  .access_wrap [class^=access] {
    margin-bottom: 40px;
    width: 100%;
  }
  .access_wrap [class^=access]:last-child {
    margin-bottom: 0;
  }
  .access_wrap [class^=access] iframe {
    height: 300px;
  }
  .access_list {
    padding: 30px 15px 0;
  }
  .access_list dl {
    width: 100%;
    margin-bottom: 30px;
  }
    
  /*============================================================================

  $child-ortho

  ============================================================================*/
    
  .flexbox_child {
    flex-direction: column;
    gap: 15px;
  }
    
  .flexbox_child div{
    width: 100%;
    justify-content: center;
  }
    
  .flexbox_child div strong{
    white-space: nowrap;
  }
    
  .flexbox_child div i {
    transform: rotate(90deg);
  }
    
    
  /*============================================================================

  $first

  ============================================================================*/
  /*============================================================================

  $medical

  ============================================================================*/
  /*============================================================================

  $contact

  ============================================================================*/
  .contact th,
  .contact td {
    display: block;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #1F2774;
    padding: 10px 5%;
  }
	
	.contact th {
		width: 100%;	
	}
	
  .contact tr:last-child td {
    border-bottom: none;
  }
  .contact input[type=date] {
    display: block;
    margin-bottom: 10px;
  }
  .contact select {
    display: block;
    margin-bottom: 20px;
  }
  .submit_btn input {
    max-width: 110px;
  }
  /*==================================================================

  .layout

  ==================================================================*/
  .layout_tit {
    font-size: 18px;
  }
  .layout_tit em {
    font-size: 24px;
  }
  /* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
  .layout01 .layout01_box {
    display: block;
  }
  .layout01 .layout01_title {
    width: 100%;
  }
  .layout01 .layout01_text {
    width: 100%;
  }
  .layout01 .layout01_text img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  /* 2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章 */
  .layout02 {
    display: block;
  }
  .layout02 .layout02_box {
    width: 100%;
  }
  .layout02 .layout02_box img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  .layout02.ct .layout02_box {
	width: 100%;
  }
	
  /* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章 */
  .layout03 {
    margin: 0 0 15px;
  }
  .layout03 .layout03_box {
    display: block;
  }
  .layout03 .layout03_title {
    width: 100%;
  }
  .layout03 .layout03_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
    padding: 0;
  }
  .layout03 .layout03_text {
    width: 100%;
    padding: 15px 3% 1%;
  }
  /* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */
  .layout04 .layout04_box {
    display: block;
  }
  .layout04 .layout04_title {
    width: 100%;
    padding: 2%;
  }
  .layout04 .layout04_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  .layout04 .layout04_text {
    width: 100%;
  }
  /* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
  .layout05 .layout05_box {
    display: block;
  }
  .layout05 .layout05_title {
    width: 100%;
    text-align: center;
    display: block;
  }
  .layout05 .layout05_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  .layout05 .layout05_text1:nth-child(2) {
    width: 100%;
    margin-top: 10px;
  }
  .layout05 .layout05_text1:nth-child(3) {
    width: 100%;
    border-left: none;
  }
  /* 1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章 */
  .layout06 {
    margin: 0 0 15px;
  }
  .layout06 .layout06_box {
    display: block;
  }
  .layout06 .layout06_title {
    width: 100%;
    padding: 3%;
    display: block;
    text-align: center;
  }
  .layout06 .layout06_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  /* 数字 */
  .layout06 .layout06_text1:nth-child(2) {
    width: 100%;
    margin-top: 10px;
  }
  .layout06 .layout06_text1:nth-child(3) {
    width: 100%;
    border-left: none;
  }
  /* 3つ並びのレイアウト。 */
  .layout07 {
    display: block;
  }
  .layout07 .layout07_box {
    display: block;
    width: 100%;
  }
  /* layout09 */
  .layout09 .layout09_box {
    display: block;
  }
  .layout09 .layout09_title {
    width: 100%;
    text-align: center;
    display: block;
  }
  .layout09 .layout09_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  .layout09 .layout09_text1 {
    width: 100%;
    margin-top: 10px;
  }
  /* layout10 */
  .layout10 .flow_box {
    justify-content: space-between;
    padding: 6%;
  }
  .layout10 .flow_box::before {
    display: none;
  }
  .layout10 .flow_box .number {
    width: 42px;
    height: 42px;
    margin-right: 0;
    font-size: 20px;
  }
  .layout10 .flow_box .layout10_box {
    width: 80%;
  }
  .layout10 .flow_box .layout10_text .title {
    font-size: 14px;
    line-height: 1.4;
  }
  .layout10 .flow_box .layout10_text .title span {
    display: block;
    padding-bottom: 8px;
    font-weight: bold;
  }
  .layout10 .flow_box .layout10_text .title span::after {
    display: none;
  }
  .course_ablation::before {
    display: none;
  }
  /* layout11 */
  [class^=layout11_text] dl dt,
  [class^=layout11_text] dl dd {
    margin-left: 0;
    width: 100%;
  }
  [class^=layout11_text] dl dd.cell_big {
	width: 100%;
  }
	
  [class^=layout11_text] dl dt {
    margin-bottom: 0;
  }
  [class^=layout11_text] dl dd {
    margin-bottom: 10px;
  }
  .layout11_image02 {
    /*flex-wrap: wrap;
	gap: 0;*/
	margin-bottom: 20px;
  }
  .layout11_box .layout11_image02:last-of-type {
	margin-bottom: 0;
  }
	
  .layout11_image02 span {
    width: 100%;
  }
  /*.layout11_image02 span:last-child {
    margin-top: 30px;
  }*/
  /*.layout11_image02 span:last-child::before {
    top: -28px;
    bottom: auto;
    left: 0;
    right: 0;
    justify-content: center;
    content: "\f078";
  }*/
	
  .layout11_video video {
		margin: 0 auto;
  }
	
  .layout11_image02.big_img {
	gap: 0;
  }

  .layout11_image02.big_img span:first-of-type {
    margin-bottom: 50px;
  }

.layout11_image02.big_img span:last-child::before {
	font-size: 24px;
	transform: translate(-50%, -66%);
	
}
  /*============================================================================

  $news

  ============================================================================*/
  /*============================================================================

  $mpcloud_schedule

  ============================================================================*/
  #mpcloud_schedule {
    width: 100%;
    right: 0;
    left: 0;
    border-radius: 0;
  }
  .time_close {
    right: 20px;
    font-size: 17px;
  }
  .schedule_time {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .schedule_time dt {
    width: 35%;
    margin-bottom: 5px;
  }
  .schedule_time dd {
    width: 65%;
    margin-bottom: 5px;
  }
  .schedule_time dd i {
    margin: 0 3px 0 15px;
    vertical-align: text-bottom;
  }
  /*common*/
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .pc_inline {
    display: none !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .pc_table {
    display: table !important;
  }
  .sp_table {
    display: table !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .sp_mb00 {
    margin-bottom: 0 !important;
  }
  .sp_mr00 {
    margin-right: 0 !important;
  }
  .sp_ml00 {
    margin-left: 0 !important;
  }
  .sp_mt00 {
    margin-top: 0 !important;
  }
  .sp_pb00 {
    padding-bottom: 0 !important;
  }
  .sp_pr00 {
    padding-right: 0 !important;
  }
  .sp_pl00 {
    padding-left: 0 !important;
  }
  .sp_pt00 {
    padding-top: 0 !important;
  }
  .sp_center {
    text-align: center;
  }
}
@media screen and (max-width: 320px) {
  .main_open {
    position: absolute;
    top: auto;
    bottom: 50px;
    right: 0;
    left: 0;
    width: 50%;
    margin: auto;
  }
  .sp_inline_iP {
    display: inline !important;
  }
}