@media screen and (max-width:767px) { 
    /*　画面サイズが767px以下(PC以下)の場合読み込む　*/
    body{
	font-size: 16px;
    }
}
@media screen and (min-width:768px){
    /*　画面サイズが768px以上(PC以上)の場合読み込む　*/
    body{
	font-size: 20px;
    }
}
body{
    margin-top:50px;
}

.navbar {
    border-radius: 0;
    border-color: #F00;
    border-width: 0 0 6px 0;
}
.navbar-default {
    background-color: white;
}
.navbar-nav {
    float: left;
    margin: 0;
    color: #000;
    font-weight: bold;
}

.break {
    margin-top: 5px;
    margin-bottom: 5px;
}

.row-center{
    text-align:center;
    letter-spacing:-0.4em;
}
.row-center > [class*='col-'] {
    display:inline-block;
    letter-spacing:0;
    vertical-align:top;
    float:none !important;
}

h2{
    background-color:#fef135;
    padding: 5px 10px;
    border-radius: 4px;
    color: #0f718d;
    font-weight: bolder;
}

h3{
    background-color:#0f718d;
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
}
h4{
    font-weight: bold;
}

.panel-default {
    border-color: #0f718d;
}

.panel-default>.panel-heading {
    color: white;
    background-color: #0f718d;
    border-color: #0f718d;
}

.panel {
    border-width: 4px;
    border-radius: 8px;
}

.toThePageTop {
    background-color: red;
    color: white;
}

.btn-circle {
    width: 30px;
    height: 30px;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.428571429;
    border-radius: 15px;
}
.btn-circle.btn-lg {
    width: 50px;
    height: 50px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 25px;
}
.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    font-size: 24px;
    line-height: 1.33;
    border-radius: 35px;
}
.to-top .btn-danger {
    background-color: red;
    border: none;
}

.to-top .btn-danger a {
    color: white;
}

.to-top > a {
    color: red;
}
.to-top > a:hover, .to-top > a:focus  {
    text-decoration: none;
}

hr {
    border-top: 4px solid red;
}

hr.line-sec1 {
    border-top: 6px solid red;
}

ol, ul {
    padding-left: 1.5em;
}

/* Facebookボタンだけずれる問題への対処 */
.fb_iframe_widget {
  width: auto !important;
  display: inline-block !important;
}
.fb_iframe_widget > span {
  vertical-align: baseline !important;
}