@charset "UTF-8";

/* --------------------------------
 * base
 * -------------------------------- */
* {
  box-sizing: border-box;
}
html { scroll-behavior: smooth;}
body,
a,
.table {
  color: #666;
  font-family: 'Rubik', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.3rem;
  font-family: 'Rubik', sans-serif !important;
}

.text-blue {
  color: #6b90db !important;
}

.bg-blue,
.thead-blue,
.badge-primary {
  background-color: #6b90db !important;
}

.bg-gray {
  background-color:#f5f4f4 !important;
}


.bg-lightblue {
  background-color: #ecf7fb !important;
}

.bg-pink {
  background-color: #DB8F81 !important;
}

.bg-green {
  background-color: #00B900 !important;
}

.border-blue {
  border-color: #B2C2E1 !important;
}

.border-top {
  border-width: 2px !important;
}

p {
  line-height: 1.6rem;
  font-size: 18px;
  font-family: 'Rubik', sans-serif !important;
}

/* --------------------------------------------------
    ファーストビュー
-------------------------------------------------- */
.header {
  height: 100vh;
}

.header .jumbotron {
  background-image: url("../img_beauty/main-img.jpg");
  background-size: cover;
  background-position: center top;
  position: relative;
  height: 90%;
  margin-bottom: 0;
}

/* nav
-------------------------------------------------- */
nav.fixed {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  font-family: 'Rubik', sans-serif !important;
}

/*    キービジュアル
-------------------------------------------------- */
/*下層ページ*/
.under-layer .jumbotron {
  background-image: url("../img/main-img.jpg");
  background-size: cover;
  background-position: center top;
  margin-bottom: 0;
  font-family: 'Rubik', sans-serif !important;
}

/* --------------------------------------------------
    メイン
-------------------------------------------------- */

/*    トップページ
-------------------------------------------------- */
.tokucho h3 span {
  font-family: 'Rubik', sans-serif !important;
  margin-right: 1rem;
  border-bottom: 5px solid #B2C2E1;
}

/*    院内紹介
-------------------------------------------------- */
figcaption {
  padding-left: 1rem;
  border-left: 3px solid #6b90db;
}

/* --------------------------------------------------
    サンプルページ
-------------------------------------------------- */

/*   チャート
-------------------------------------------------- */
.flow > li .flow-icon {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 50px;
  width: 50px;
  color: #fff;
  background-color: #6b90db;
  margin: 0 auto 20px;
  display: block;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
}

.flow > li .flow-icon::before {
  content: "";
  border: solid transparent;
  border-width: 8px;
  border-top-color: #6b90db;
  position: absolute;
  top: calc(100% - .2rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* --------------------------------------------------
    スペーサー
-------------------------------------------------- */

.spacer_5 {
	padding-top: 5px;
}
.spacer_10 {
	padding-top: 10px;
}
.spacer_20 {
	padding-top: 20px;
}
.spacer_30 {
	padding-top: 30px;
}
.spacer_50 {
	padding-top: 50px;
}
.spacer_100 {
	padding-top: 100px;
}

/* --------------------------------------------------
    to top　ボタン
-------------------------------------------------- */
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #3f98ef;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -13px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* --------------------------------------------------
    テーブル
-------------------------------------------------- */
.design08 {
 width: 100%;
 text-align: center;
 border-collapse: collapse;
 border-spacing: 0;
}
.design08 th {
 padding: 10px;
 background: #6b90db;
 border: solid 1px #666666;
 color: #ffffff;
 font-size:18px;
 font-weight: 500;
}
.design08 td {
 padding: 10px;
 border: solid 1px #666666;
 background: #fff;
}

/* --------------------------------------------------
    NEW　blink
-------------------------------------------------- */
.blink {
  animation: blinkAnime 1s infinite alternate;
}
@keyframes blinkAnime{
   0% { color: #ff981a }
 100% { color: #ff0000 }
}

/* --------------------------------------------------
   リンク装飾none
-------------------------------------------------- */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

/* --------------------------------------------------
   navvbar
-------------------------------------------------- */
.navbar-light .navbar-nav .nav-link {
    color:#39C;
	font-size: 18px;
}
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .8rem;
    }
	
/* --------------------------------------------------
   角丸BOX
-------------------------------------------------- */
.kadomaru_blue {
	width: 90%;
	font-size: 18px;
	padding: 15px;
	margin: 20px auto 0 auto;
	border: 2px solid #B2C2E1;
	border-radius: 15px;
}
.kadomaru_blue p{
	text-indent: -1em;
    padding-left: 1em;
}