@charset "UTF-8";
/* Scss Document */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both; }

.animated.infinite { -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; }

.fadeIn { -webkit-animation-name: fadeIn; animation-name: fadeIn; }

@-webkit-keyframes fadeIn { from { opacity: 0; }
  to { opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; }
  to { opacity: 1; } }
/*fadein*/
.fadeInDown { -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-name: fadeInDown; animation-name: fadeInDown; visibility: visible !important; }

@-webkit-keyframes fadeInDown { 0% { opacity: 0; -webkit-transform: translateY(-20px); }
  100% { opacity: 1; -webkit-transform: translateY(0); } }
@keyframes fadeInDown { 0% { opacity: 0; -webkit-transform: translateY(-20px); transform: translateY(-20px); }
  100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } }
/*bounce in*/
.bounceIn { opacity: 0; -webkit-animation-name: bounceIn; animation-name: bounceIn; -webkit-animation-duration: 450ms; animation-duration: 450ms; -webkit-animation-timing-function: linear; animation-timing-function: linear; -webkit-animation-fill-mode: forwards; animation-fill-mode: forwards; -webkit-animation-delay: 0.5s; animation-delay: 0.5s; }

@-webkit-keyframes bounceIn { 0% { opacity: 0; -webkit-transform: scale(0.3) translate3d(0, 0, 0); transform: scale(0.3) translate3d(0, 0, 0); }
  50% { opacity: 0.9; -webkit-transform: scale(1.1); transform: scale(1.1); }
  80% { opacity: 1; -webkit-transform: scale(0.89); transform: scale(0.89); }
  100% { opacity: 1; -webkit-transform: scale(1) translate3d(0, 0, 0); transform: scale(1) translate3d(0, 0, 0); } }

@keyframes bounceIn { 0% { opacity: 0; -webkit-transform: scale(0.3) translate3d(0, 0, 0); transform: scale(0.3) translate3d(0, 0, 0); }
  50% { opacity: 0.9; -webkit-transform: scale(1.1); transform: scale(1.1); }
  80% { opacity: 1; -webkit-transform: scale(0.89); transform: scale(0.89); }
  100% { opacity: 1; -webkit-transform: scale(1) translate3d(0, 0, 0); transform: scale(1) translate3d(0, 0, 0); } }
/*fade in left*/
.fadeInLeft { -webkit-animation-name: fadeInLeft; animation-name: fadeInLeft; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-duration: 1s; animation-duration: 1s; visibility: visible !important; }

@-webkit-keyframes fadeInLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); }
  to { opacity: 1; -webkit-transform: none; transform: none; } }
@keyframes fadeInLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); }
  to { opacity: 1; -webkit-transform: none; transform: none; } }
.fadeInRight { -webkit-animation-name: fadeInRight; animation-name: fadeInRight; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-duration: 1s; animation-duration: 1s; visibility: visible !important; -webkit-animation-delay: -0.4s; animation-delay: -0.4s; }

@-webkit-keyframes fadeInRight { from { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); }
  to { opacity: 1; -webkit-transform: none; transform: none; } }
@keyframes fadeInRight { from { opacity: 0; -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); }
  to { opacity: 1; -webkit-transform: none; transform: none; } }
@-webkit-keyframes bounceInUp { from,
  60%,
  75%,
  90%,
  to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0); transform: translate3d(0, 3000px, 0); }
  60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); }
  75% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); }
  90% { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0); }
  to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } }
@keyframes bounceInUp { from,
  60%,
  75%,
  90%,
  to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from { opacity: 0; -webkit-transform: translate3d(0, 3000px, 0); transform: translate3d(0, 3000px, 0); }
  60% { opacity: 1; -webkit-transform: translate3d(0, -20px, 0); transform: translate3d(0, -20px, 0); }
  75% { -webkit-transform: translate3d(0, 10px, 0); transform: translate3d(0, 10px, 0); }
  90% { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0); }
  to { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } }
.bounceInUp { -webkit-animation-name: bounceInUp; animation-name: bounceInUp; }

@-webkit-keyframes bounce { from,
  20%,
  53%,
  80%,
  to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  40%,
  43% { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); -webkit-transform: translate3d(0, -30px, 0); transform: translate3d(0, -30px, 0); }
  70% { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); -webkit-transform: translate3d(0, -15px, 0); transform: translate3d(0, -15px, 0); }
  90% { -webkit-transform: translate3d(0, -4px, 0); transform: translate3d(0, -4px, 0); } }
@keyframes bounce { from,
  20%,
  53%,
  80%,
  to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  40%,
  43% { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); -webkit-transform: translate3d(0, -30px, 0); transform: translate3d(0, -30px, 0); }
  70% { -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); -webkit-transform: translate3d(0, -15px, 0); transform: translate3d(0, -15px, 0); }
  90% { -webkit-transform: translate3d(0, -4px, 0); transform: translate3d(0, -4px, 0); } }
.bounce { -webkit-animation-name: bounce; animation-name: bounce; -webkit-transform-origin: center bottom; transform-origin: center bottom; }

@-webkit-keyframes fadeInUp { from { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); }
  to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } }
@keyframes fadeInUp { from { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); }
  to { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } }
.fadeInUp { -webkit-animation-name: fadeInUp; animation-name: fadeInUp; }

a:hover { opacity: 0.75; filter: alpha(opacity=75); }

@media print, screen and (min-width: 992px) { .pchide { display: none !important; }
  .fixed_bottom { z-index: 9999; position: fixed; right: 0; bottom: 0; padding: 1rem; }
  .fixed_bottom .fixed_bottom_btn a { text-decoration: none; background: #f9bbcd; color: #fff; font-weight: bold; font-size: .8rem; display: block; padding: 1rem; border-radius: 5px; } }
@media (max-width: 991.98px) { .sphide { display: none !important; }
  html { overflow: auto; }
  body { overflow: hidden; min-width: 100%; padding-bottom: 75px; }
  body * { -webkit-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
  #header h1 { white-space: normal; overflow-x: visible; padding: 0 5px; margin: 0; height: auto; width: 100%; color: #999; text-align: left; line-height: 1.5; }
  #header h1.txt_c { text-align: center; }
  /*lightbox*/
  #lightbox, .lb-outerContainer, .lb-image, .lb-dataContainer, #lightbox-container-image-data-box, #jquery-lightbox, #lightbox-container-image-box, #lightbox-image { width: 100% !important; height: auto !important; -webkit-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
  #lightbox-nav-btnPrev { height: 100px !important; }
  #lightbox-nav-btnNext { height: 100px !important; }
  /*mailform*/
  table.infield, ul.confirm_layer li, ul.confirm_layer, div#confirmBody { width: 100% !important; height: auto !important; margin-left: auto !important; margin-right: auto !important; left: 0 !important; }
  div#confirmBody div.mfp_title img { max-width: 100% !important; height: auto !important; }
  .confirm_bottom, .confirm_top { display: none !important; }
  div#confirmBody div.mfp_title { height: 50px; }
  /*hamburger2*/
  .hamburger { margin: 0px; height: 50px; background-color: #82cddb; border-bottom: 1px solid #fff; text-align: left; font-size: 20px; line-height: 1; font-weight: bold; }
  .hamburger span { padding-right: 5px; }
  .hamburger a { display: block; padding: 14px 10px; color: #fff; text-decoration: none; }
  .hamburger small { font-weight: normal; font-size: .8rem; }
  #spnav_open { z-index: 20; background-color: #82cddb; position: relative; margin: 0px 0 0; padding: 0px 0px 0; position: absolute; top: 51.2px; left: 0px; width: 100%; }
  #spnav_open a { border-bottom: 1px solid #fff; text-decoration: none; color: #fff; padding: 10px 10px; display: block; width: 100%; text-align: left; font-weight: bold; }
  /*hamburger2*/
  /*lightbox*/
  #imageDataContainer, img#lightboxImage, #outerImageContainer, #lightbox, .lb-outerContainer, .lb-image, .lb-dataContainer, #lightbox-container-image-data-box, #jquery-lightbox, #lightbox-container-image-box, #lightbox-image { width: 100% !important; height: auto !important; -webkit-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
  ul.lightbox { width: 100%; height: auto; margin: 10px auto; }
  #prevLink, #nextLink { height: 95% !important; }
  ul.lightbox li { width: 100%; height: auto; float: none; }
  ul.lightboxtext li { width: 100%; float: none; }
  ul.lightboxtext { width: 100%; margin: 0 0 0 0px; }
  .img_fluid, .img-fluid { max-width: 100% !important; height: auto !important; margin: 0 auto; display: block; }
  .float_none { float: none !important; }
  .text_center { text-align: center !important; }
  .text_right { text-align: right !important; }
  .text_left { text-align: left !important; }
  #rightmenu { width: 100%; min-width: auto; height: auto; float: none; -webkit-box-sizing: border-box; box-sizing: border-box; margin: 0; padding: 0; }
  .fixed_bottom { z-index: 9999; position: fixed; left: 0; bottom: 0; background: #F8F8FA; width: 100%; text-align: center; background: #fff; border-top: 1px solid #ddd; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-pack: distribute; justify-content: space-around; }
  .fixed_bottom .fixed_bottom_btn { -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; padding: .5rem .25rem; }
  .fixed_bottom .fixed_bottom_btn a { text-decoration: none; background: #f9bbcd; color: #fff; font-weight: bold; font-size: .8rem; display: block; padding: .75rem .25rem; border-radius: 5px; }
  #dom_overlay_container, canvas#canvas, #flashArea, #animation_container, #flash { height: auto !important; width: 100% !important; }
  #flash { padding-bottom: 20%; }
  #header { height: 100%; }
  #header-contents { background-image: none; width: 100%; height: auto; }
  #footer, #menu, #header-maincontents { display: none; }
  #contents { width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; /* Flexコンテナ化 */ display: -webkit-flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; /* 縦向きに配置 */ padding-top: 0; background: none; }
  #left-navi { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; float: none; margin-left: auto; margin-right: auto; width: 240px; padding-left: 0px; }
  #maincontents { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; float: none; width: 100%; }
  #maincontents-pad { margin-right: 0px; margin-left: 0px; }
  .slider { width: 100% !important; }
  .slider img { height: auto; max-width: 100%; margin-left: auto; margin-right: auto; }
  .cont-mid { width: 100%; background-image: none; }
  #maincontents .news-title { line-height: auto; height: auto; width: 100%; }
  #maincontents .news-caption { line-height: auto; padding-top: 10px; padding-bottom: 10px; width: 100%; }
  #maincontents .section-title { line-height: 1.5; height: auto; width: 100%; background-color: #82cddb; background-image: none; font-size: 1rem; padding: 5px 15px; background: #d1f2f8; border-top: 3px solid #f9bbcd; border-bottom: 3px solid #82cddb; text-indent: 0; font-weight: bold; }
  .align-bright { width: 100%; text-align: center; }
  .about-cl { width: 100%; }
  .cl-intro { padding-top: 240px; padding-bottom: 30px; padding-left: 20px; font-size: 90%; line-height: 130%; }
  .float-r, .float-l { float: none; padding-bottom: 10px; padding-left: 0; padding-right: 0; text-align: center; }
  #maincontents .section-subtitle { width: 100%; height: auto; line-height: auto; text-indent: 0; padding-left: 15px; }
  #maincontents .table-lbline { width: 100%; }
  #maincontents .section-bkbelt { height: auto; line-height: auto; width: 100%; background-size: cover; background-position: center center; }
  #maincontents .section-subtitle-belt { width: 100%; text-indent: 0px; padding-left: 15px; height: auto; line-height: auto; }
  .surgery_map iframe { width: 100% !important; height: 300px !important; }
  .list_yoko3, .list_yoko5 { padding: 0 15px; margin-top: 16px; margin-bottom: 16px; width: 100%; font-size: 14px; margin-left: 0 !important; }
  .list_yoko3 li, .list_yoko5 .lastli, .list_yoko5 li { width: 100% !important; margin-right: 8px; float: none; text-align: center; border: 1px solid #6CF; padding-top: 3px; padding-right: 5px; padding-bottom: 3px; padding-left: 5px; margin-bottom: 12px; }
  .table_kenshin { width: 100%; }
  .table_kenshin th, .table_kenshin td { word-break: break-all; font-size: 13px; }
  .table_kenshin2 { margin: 0px; width: 100%; border: 1px solid #CCC; }
  .table_kenshin2 th, .table_kenshin2 td { font-size: 13px; }
  .paragraph-normal table, .table-lbline table { float: none !important; width: auto !important; }
  .paragraph-normal table td, .paragraph-normal table th, .table-lbline table td, .table-lbline table th { font-size: 13px; }
  #maincontents .section-dot-line { background-image: url(../images/bk_dot_line01.png); background-repeat: repeat-x; height: auto; line-height: auto; width: 100%; }
  .faqblock, .w100 { width: 100% !important; }
  .question { width: 100%; }
  .cont-cap ul { width: 100%; }
  .table-responsive { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table-responsive table { min-width: 672px; }
  .table-reset table td, .table-reset table th { width: auto !important; } }
/* pickup
--------------------------------------------------------------*/
.top-pickup a { display: block; padding: 15px; -webkit-box-sizing: border-box; box-sizing: border-box; border: 1px solid #cdcdcd; border-radius: 10px; overflow: hidden; }
.top-pickup a:hover { text-decoration: none; }
.top-pickup a dl dt { color: #ff4d77; margin: 0 0 7px; }
.top-pickup a dl dd { font-size: 14px; }
.top-pickup a dl dd:first-of-type { margin: -15px -15px 15px; }
.top-pickup a dl dd img { width: 100%; }
@media print, screen and (min-width: 992px) { .top-pickup { width: 702px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
  .top-pickup a { width: 225px; margin: 15px 0 10px; } }
@media (max-width: 991.98px) and (min-width: 700px) { .top-pickup { margin: 0 15px; max-width: 100%; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
  .top-pickup a { width: 32%; margin: 15px 0 10px; } }
@media (max-width: 699px) { .top-pickup a { margin: 15px 15px 0; padding: 0; }
  .top-pickup a dl { /*text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;*/ padding: 15px; } }

/* anchor
--------------------------------------------------------------*/
.anc-box { width: 702px; -webkit-box-sizing: border-box; box-sizing: border-box; border-radius: 5px; padding: 20px; background: #F1FBFD; }
.anc-box dl dt { color: #57A3B1; margin: 0 0 10px; }
.anc-box dl dd { margin: 0 0 10px; }
.anc-box dl dd a { display: inline-block; position: relative; padding-left: 1.1em; color: #57A3B1; }
.anc-box dl dd a::before { content: '≫'; display: inline-block; position: absolute; left: 0; top: 0; }
.anc-box ul li { display: block; margin: 0 1em 0 0; }
.anc-box ul li a { display: inline-block; position: relative; padding-left: 1.1em; }
.anc-box ul li a::before { content: '≫'; display: inline-block; -moz-transform: rotate(90deg); -webkit-transform: rotate(90deg); -o-transform: rotate(90deg); -ms-transform: rotate(90deg); position: absolute; left: 0; top: 0; color: #57A3B1; }
.anc-box ul li.sub { padding-left: 1.1em; }
@media print, screen and (min-width: 992px) { .anc-box .line-2 { overflow: hidden; }
  .anc-box .line-2 ul { width: 50%; float: left; }
  .anc-box .line-2 ul.sml { width: 40%; }
  .anc-box .line-2 ul.lag { width: 60%; } }
@media (max-width: 991.98px) { .anc-box { width: auto; margin: 15px 15px 0; } }

.cont-mid .anc-box { width: 100%; }
@media (max-width: 991.98px) { .cont-mid .anc-box { margin: 15px 0 0; } }

/* CSS Document */

/*# sourceMappingURL=rwd.css.map */