/*共通*/
html,
body {
  overflow-x: hidden;
}

body {
  color:#000;
  font-family: 'Noto Sans JP', sans-serif;
  padding-bottom: 0;

}

p {
  line-height: 2.0em;
  font-weight: 100;
  font-style: normal;
  font-size: 14px;

}

/* ----------------------------------------------- ナビゲーションバー */
.navbar{
    background-color: #fff;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.navbar_brand_logo{
 /*高さを50pxの正方形へ変更*/
  height: 50px;
 /*imgはインライン要素なのでインラインブロックに設定*/
  display: inline-block;
}
.my_navbar_brand,
.my_nav_link{
  /*フォントサイズを16pxに設定*/
  font-size: 16px;
  /*フォント色を黒色に設定*/
  color: #000;
}
/*Bootstrapのボタンに初期設定されている周囲のborder(枠線)を消す*/
.navbar-toggler{
  padding: 0 !important;
  border: none;
}
/*ハンバーガーボタンがチェック状態である（押されている）とき、閉じるボタンを表示する*/
#hamburger_btn_check:checked~.hamburger_btn .btn_close{
  display: block;
}
/*ハンバーガーボタンがチェック状態である（押されている）とき、ハンバーガーボタンを表示しない*/
#hamburger_btn_check:checked~.hamburger_btn .btn_open{
  display: none;
}
/*最初に表示した時は、閉じるボタンは表示しない*/
.btn_close{
  display: none;
}
/*ハンバーガーボタンが押されているかを判断するためのチェックボックスは隠す*/
#hamburger_btn_check{
  display: none;
}
.main_nav>li>a:hover{
    color: #2794CD;
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
    .navbar_brand_logo{
        height: 38px;
    }
}
@media screen and (max-width: 767px){
    .navbar_brand_logo{
        height: 35px;
    }
}

/* ----------------------------------------------- カールセル */
#myCarousel{
    margin-top: 60px;
}
.my_carousel_caption{
  /*フォントサイズ32px*/
  font-size: 32px;
  /*上下に余白追加*/
  padding-bottom: 350px;

  /*フォントは白色*/
  color: #ffffff;
  text-shadow: -2px -2px 0#289CF7, -2px -2px 0#289CF7, -2px -2px 0#289CF7, -2px -2px 0#289CF7;

  /*テキスト中央揃え*/
  text-align: center;
  line-height: 1.5em;
}

/*スマホ画面幅（画面幅が最大375pxまで）の場合、以下のスタイルを適用
@media screen and (max-width:375px){
  .my_carousel_caption{
    /*フォントサイズを27pxにする
  font-size: 27px;
  }
}*/


/*carousel-itemの高さを32remに指定*/
.carousel-item{
  height: 32rem;
}
/*carousel-item直下の子要素imgタグに設定*/
.carousel-item>img{
  /*絶対位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  /*高さはcarousel-itemに揃える*/
  height: 600px;
  object-fit: cover;
}

/* PCの場合 */
.pc	{ display:inline!important; }
.mb	{ display:none!important; }

@media only screen and (min-width: 768px) and (max-width: 1024px){
    .carousel-item>img{
        object-fit: cover;
        height: 430px;
    }
    .my_carousel_caption{
        font-size: 26px;
        padding-bottom: 360px;
    }
    .carousel-inner{
        height: 430px;
    }
}
@media screen and (max-width: 767px){
    .carousel-item>img{
        object-fit: cover;
        object-position: 50% 50%;
        height: 380px;
    }
    .my_carousel_caption{
        font-size: 17px;
        padding-bottom: 380px;
    }
    .carousel-inner{
        height: 380px;
    }
    .pc	{ display:none!important; }
    .mb { display:inline!important; }
}

/*---------------------------------ニュースとブログ*/
.news{
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px;
}
.home_title{
    letter-spacing: 2px;
    color: #2794CD;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 500;
    text-align: center;
}
.news_post_meta{
    margin-top: 10px;
}
.news_post_meta ul li{
    display: inline-block;
    position: relative;
}
.news_post_meta ul li:not(:last-of-type)::after {
  display: inline-block;
  position: relative;
  content: "|";
  margin-left: 14px;
  margin-right: 11px;
}
.news_post_meta ul li a{
  font-size: 14px;
  font-weight: 400;
  color: #707071;
  letter-spacing: 0.7px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.news_post_meta ul li a:hover {
  color: #2794CD;
}
.news_post_text {
  margin-top: 13px;
}
.news_post_link {
  margin-top: 19px;
}
.news_post_link a {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  color: #707071;
  text-decoration: underline;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.news_post_link a:hover {
  color: #2794CD;
}
.news_posts_small {
  margin-top: -6px;
}
.news_post_small:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: solid 2px #e5e5e5;
}
.news_post_small_title a {
  font-size: 17px;
  letter-spacing: 0.51px;
  line-height: 1.55;
  color: #242424dd;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.news_post_small_title a:hover {
  color: #2794CD;
}
.news_post_small_title {
  margin-top: 10px;
}
.btn_detail{
   display: block;
   margin: 0 auto;
   margin-top: 20px;
   background-color: #4D9FE0;
   border: solid 1px #d7d6d6;
   border-radius: 10px;
}
.btn_detail>a{
    color: #fff;
    text-decoration: none;
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
    .home_title{font-size: 26px;}
    .news_post_meta ul li a{font-size: 13px;}
    .news_post_small_title a {font-size: 15px;}
    .btn_detail{padding: 0.25rem 0.5rem;
                font-size: 0.875rem;
                line-height: 1.5;
                border-radius: 10px;
                margin-top: 10px;}
}
@media screen and (max-width: 767px){
    .home_title{font-size: 23px;}
    .news_post_meta ul li a{font-size: 13px;}
    .news_post_small_title a {font-size: 15px;}
    .btn_detail{padding: 0.25rem 0.5rem;
                font-size: 0.875rem;
                line-height: 1.5;
                border-radius: 10px;
                margin-bottom: 30px;
                margin-top: 10px;}
    
}

/*-------------------院長よりご挨拶*/
#greeting{
    margin-top: 30px;
    padding: 20px;
}
.container{
    max-width: 1080px;
    margin: 0 auto;
}
.greeting_img{
    justify-items: center;
    margin-top: 100px;
}
.greeting_img>img{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.greeting_name{
    font-size: 20px;
    font-weight: 500;
}
.greeting_name>span{
    font-size: 15px;
    margin-right: 5px;
    font-weight: 400;
}
.greeting_text{
    font-size: 15px;
    font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
    .greeting_img{
        margin-top: 50px;
    }
    .greeting_img>img{
    width: 250px;
    height: 250px;
}
}
@media screen and (max-width: 767px){
    .greeting_img{
        margin-top: 30px;
    }
    .greeting_img>img{
    width: 200px;
    height: 200px;
    }
}
/*-------------------当院について*/
.about_us{
    padding: 20px;
}
.sub_title{
    font-size: 28px;
    text-align: center;
    margin-top: 20px;
}
.about_img{
    justify-items: center;
    margin-top: 50px;
}
.about_img>img{
    height: 300px;
    width: auto;
    border-radius: 20px;
    margin-bottom: 10px;
}
.about_text{
    font-size: 15px;
    font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
    .sub_title{
    font-size: 23px;
    text-align: center;
    margin-top: 20px;
    }
    .about_img{
    text-align: center;
    }
    .about_img>img{
    height: auto;
    width: 100%;
    border-radius: 15px;
    margin: 0 auto;
    }
}
@media screen and (max-width: 767px){
    .sub_title{
    font-size: 20px;
    text-align: left;
    margin-top: 20px;
    }
    .about_img{
    text-align: center;
    }
    .about_img>img{
    height: auto;
    width: 100%;
    border-radius: 15px;
    margin: 0 auto;
    }
}
/*-------------------診療案内*/
.information{
    padding: 20px;
}
.sub_title_name{
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
}
.guide_img{
    text-align: center;
}
.guide_img>img{
    width: 130px;
    height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
.sub_title_name{
    font-size: 17px;
    text-align: center;
    margin-top: 10px;
}    
.guide_img{
    margin-top: 30px;
    margin-bottom: 20px;
}
.guide_img>img{
    width: 100px;
    height: auto;
}
}
@media screen and (max-width: 767px){
    .sub_title_name{
    font-size: 15px;
    text-align: center;
    margin-top: 10px;
}    
.guide_img{
    margin-top: 30px;
    margin-bottom: 20px;
}
.guide_img>img{
    width: 100px;
    height: auto;
}
}
/*-------------------アクセス*/
.access_info{
    padding: 20px;
}
.access_text{
    font-size: 15px;
    font-weight: 400;
    justify-content: center;
}
.text-left{
    margin: 80px 0 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
.map>iframe{
    width: 100%;
}
}
@media screen and (max-width: 767px){
.map>iframe{
    width: 100%;
}
.access_text{
    font-size: 12px;
}
}
/*-------------------フッター*/
#footer{
    padding: 20px;
}
.right_part{
    margin-top: 30px;
}
.footer_brand_logo{
  height: 60px;
 /*imgはインライン要素なのでインラインブロックに設定*/
  display: inline-block;
}
.footer_nav_link{
    font-size: 12px;
    font-weight: 500;
    display: flex;
    flex-direction: row;
    color: #000;
    margin-left: 10px;
}
.footer_nav>ul{
    display: flex;
    flex-direction: row;
}
.marker{
    width: 20px;
    height: 20px;
    margin-top: 5px;
}
.address{
    font-size: 13px;
    font-weight: 400;
}
.time_table{
    justify-content: center;
}
#time_title{
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}
.schadule{
    text-align: center;
    margin: 0 auto;
    border-collapse: collapse;
    border: solid 2px;
}
.schadule th,
.schadule td{
  border: solid 1px;
  text-align: center;
}

.schadule th {/*table内のthに対して*/
  padding: 10px;
}

.schadule td {/*table内のtdに対して*/
  padding: 5px 10px;
}

.footer_info_text{
    margin-left: 20%;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 400;
}
.copy_right{
    text-align: center;
    margin-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
.footer_nav>ul{
    justify-content: center; 
}
.footer_info_text{
    justify-content: center;
    margin-left: 25%;
}
}
@media screen and (max-width: 767px){
.footer_brand_logo{height: 30px;}
.address{
    font-size: 10px;
    font-weight: 400;
}
.footer_nav>ul{
    justify-content: center; 
}
.footer_nav_link{
    font-size: 10px;
    display: none;
}
.schadule th,
.schadule td{
  font-size: 12px;
}
}
/*---------------------------当院についてページ*/
.image_header_about{
  background-image: url(../img/img6.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;/* はみ出たところはカット */
}

.header_info{
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-left: 200px;
    margin-bottom: 10px;
    color: #2289ff;
}
.page_title{
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 30px;
}
.page_title_border{
    border: solid 3px #4D9FE0;
    width: 250px;
    margin: 0 auto;
}
.page_sub_title{
    font-size: 30px;
}
.about_feature_img>img{
    border-radius: 30px;
}
.feature_bg{
    background-color: #bfe1fd;
    margin-top: 50px;
    padding: 48px 20px;
    border-radius: 30px;
}
.feature_bg>h3{
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
.about_feature_text{
    font-size: 15px;
    font-weight: 400;
}
.about_important_img>img{
    border-radius: 20px;
}
.important_bg{
    background-color: #bfe1fd;
    margin-top: 25px;
    padding: 48px 20px;
    border-radius: 30px;
}
.important_bg>h3{
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
.header_info{
    font-size: 28px;
    margin-left: 100px;
}
.page_title{
    font-size: 28px;
}
.page_title_border{
    width: 180px;
}
.page_sub_title{
    font-size: 25px;
}
.about_feature_img>img{
    border-radius: 30px;
    height: 220px;
    width: 100%;
    object-fit: cover;
}
.feature_bg{
    background-color: #bfe1fd;
    margin-top: 0;
    padding: 10px 25px;
    border-radius: 30px;
    padding: 20px;
}
.feature_bg>h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
}
.important_bg{
    padding: 10px 25px;
}
.important_bg>h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
}
}
@media only screen and (max-width: 767px){
    .header_info{
    font-size: 22px;
    margin-left: 50px;
}
.page_title{
    font-size: 22px;
}
.page_title_border{
    width: 180px;
}
.page_sub_title{
    font-size: 22px;
}
.about_feature_img>img{
    border-radius: 30px;
    height: 170px;
    width: 100%;
    object-fit: cover;
}
.feature_bg{
    background-color: #bfe1fd;
    margin-top: 20px;
    padding: 10px 25px;
    border-radius: 30px;
    padding: 20px;
}
.feature_bg>h3{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
}
.important_bg{
    padding: 10px 25px;
}
.about_feature_text{
    font-size: 13px;
    font-weight: 400;
}
.important_bg>h3{
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: left;
}
.about_important_img>img{
    border-radius: 30px;
    height: 170px;
    width: 100%;
    object-fit: cover;
    margin-top: 20px;
}
}
/*--------------------スタッフ紹介ページ*/
.staff_info{
    padding: 20px;
}
.image_header_staff{
  background-image: url(../img/24281336_m.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;/* はみ出たところはカット */
}
.doctor_img>img{
    border-radius: 50%;
    width: 280px;
    height: 280px;
    margin-left: 70px;
}
.suzuki_img>img{
    border-radius: 50px;
    width: 300px;
    margin-left: 60px;
    margin-top: 20px;
}
.staff_name>span{
    font-size: 13px;
    font-weight: 400;
    text-align: center;
}
.staff_name{
    font-size: 17px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    text-align: center;
    margin-top: 10px;
}
.staff_text{
    font-size: 15px;
    font-weight: 400;
    padding: 30px 0;
}
.staff_hobby{
    font-size: 13px;
    font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
    .doctor_img>img{
    border-radius: 50%;
    width: 250px;
    height: 250px;
    margin-left: 20px;
}
.suzuki_img>img{
    border-radius: 50px;
    width: 250px;
    margin-left: 20px;
    margin-top: 20px;
}
.staff_text{
    font-size: 15px;
    font-weight: 400;
    padding: 10px 0;
}
}
@media only screen and (max-width: 767px){
    .doctor_img{
        text-align: center;
    }
    .doctor_img>img{
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-left: 0;
}
.suzuki_img{
    text-align: center;
}
.suzuki_img>img{
    border-radius: 50px;
    width: 200px;
    margin-left: 0;
    margin-top: 20px;
}
.staff_text{
    font-size: 15px;
    font-weight: 400;
    padding: 10px 0;
}
}
/*--------------------------診療案内ページ*/
.guide_content{
    padding: 20px;
}
.image_header_guide{
  background-image: url(../img/img1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;/* はみ出たところはカット */
}
.guide_detail_img>img{
    margin-top: 30px;
    margin-left: 100px;
    width: 180px;
    height: 180px;
}
.guide_title{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-left: 40px;
    margin-top: 10px;
}
.guide_text{
    font-size: 15px;
    font-weight: 400;
}
.guide_example{
    font-size: 15px;
    font-weight: 400;
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
    .guide_detail_img>img{
    margin-top: 30px;
    margin-left: 70px;
    width: 150px;
    height: 150px;
}
.guide_text{
    font-size: 15px;
    font-weight: 400;
    margin-right: 25px;
    margin-left: -10px;
    margin-top: -20px;
}
.guide_example{
    margin-left: -10px;
}
}
@media only screen and (max-width: 767px){
    .guide_detail_img>img{
    width: 130px;
    height: 130px;
    display: flex;
    margin: 0 auto;
}
.guide_title{
    margin: 0 auto;
    margin-top: 10px;
}
.guide_text{
    font-size: 13px;
    font-weight: 400;
    margin: 0 auto;
    margin-top: -20px;
}
}
/*--------------------------お知らせページ*/
.news_content{
    padding: 20px;
}
.image_header_news{
  background-image: url(../img/23832451_m.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;/* はみ出たところはカット */
}
.news_content{
    padding-left: 5%;
}
.news_detail{
    padding-left: 5%;
}
.news_inner{
    padding-left: 15px;
    padding-right: 15px;
}
.tab_panels{
    padding-right: 5%;
}
.tab_panel_content{
    margin-top: 30px;
}
.tab_panel_text{
    padding: 20px 0;
}
.news_posts_small{
    display: block;
    position: relative;
}
.news_posts_small>hr{
    margin-bottom: 10px;
}
.calendar_news_border{
    width: 110px;
    height: 110px;
    background-color: #2794CD;
    opacity: 0.7;
    position: relative;
    border-radius: 10px;
    margin-top: 15px;
}
.calendar_news_border_1{
    width: 100px;
    height: 100px;
    position: absolute;
    top: 5px;
    left: 5px;
    border: 1px solid #fff;
    border-radius: 10px;
}
.calendar_month{
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    padding-top: 10px;
    text-align: center;
}
.calendar_month>span{
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    padding-top: 10px;
    text-align: center;
}
.calendar_day{
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.calendar_day>span{
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.news_item{
    padding-left: 15px;
}
.news_post_small_title{
    margin-top: 15px;
}
.news_post_small_title>a{
    font-size: 18px;
    text-decoration: none;
    text-align: center;
    padding-left: 20px;
}
.news_detail_title{
  text-align: left;
  font-size: 24px;
  letter-spacing: 0.72px;
  font-weight: 600;
  margin-top: 10px;
}
.news_post_meta>ul>li{
    font-size: 15px;
    margin-left: -10px;
}
.news_post_meta{
    font-weight: 400;
}
.btn_readmore{
   display: block;
   background-color: #4D9FE0;
   border: solid 1px #d7d6d6;
   border-radius: 5px;
   position: absolute;
   right: 0;
   bottom: 0;
   margin-bottom: 10px;
   font-size: 13px;
}
.sidebar{
    padding-left: 50px;
}
.category{
    margin-top: 50px;
}
.category_title{
    width: 130px;
}
.category_title>h2{
    font-size: 22px;
    border-bottom: 2px solid #4aa0b5;;
    text-align: center;
    padding-bottom: 5px;
}
.sidebar_categories{
    margin-top: 15px;
}
.sidebar_categories>ul{
    list-style: none;
}
.sidebar_categories>ul>li{
    border-bottom: solid 1px #0000004c;
    width: 180px;
}
.sidebar_categories>ul>li>a{
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
}
.sidebar_categories>ul>li>a:hover{
    color: #2794CD;
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
    .news_content{
        padding: 0;
    }
    .calendar_news_border{
    width: 100px;
    height: 100px;
    background-color: #2794CD;
    opacity: 0.7;
    position: relative;
    border-radius: 10px;
    margin-top: 15px;
}
.calendar_news_border_1{
    width: 90px;
    height: 90px;
    position: absolute;
    top: 5px;
    left: 5px;
    border: 1px solid #fff;
    border-radius: 10px;
}
.calendar_day{
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.tab_panels{
    padding: 0;
}
.news_posts_small{
    margin: 0 50px;
}
.news_post_meta{
    font-weight: 400;
    margin-bottom: 5px;
}
.read_continue{
    padding-top: 15px;
}
.sidebar{
    width: 100%;
    padding: 0 50px;
    margin-left: 0;
}
.news_detail{
    padding: 0;
}
}
@media only screen and (max-width: 767px){
    .news_content{
        padding: 0;
    }
    .calendar_news_border{
    width: 100px;
    height: 100px;
    background-color: #2794CD;
    opacity: 0.7;
    position: relative;
    border-radius: 10px;
    margin-top: 15px;
}
.calendar_news_border_1{
    width: 90px;
    height: 90px;
    position: absolute;
    top: 5px;
    left: 5px;
    border: 1px solid #fff;
    border-radius: 10px;
}
.calendar_day{
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}
.news_posts_small{
    margin: 0 30px;
}
.news_post_meta{
    font-weight: 400;
    margin-bottom: 5px;
}
.read_continue{
    padding-top: 15px;
}
.sidebar{
    width: 100%;
    padding: 0 38px;
    margin-left: 0;
}
.category_title>h2{
    font-size: 20px;
    border-bottom: 2px solid #4aa0b5;;
    text-align: center;
    padding-bottom: 5px;
}
.category{
    margin-top: 20px;
}
.tab_panels{
    padding: 0;
}
.news_detail{
    padding: 0;
}
.news_post_small_header{
    padding: 20px 0 0 0;
}
}
/*--------------------------ブログページ*/
.page_title_border_blog{
    border: solid 3px #4D9FE0;
    width: 600px;
    margin: 0 auto;
}
@media only screen and (max-width: 767px){
  .page_title_border_blog{
    border: solid 3px #4D9FE0;
    width: 300px;
    margin: 0 auto;
}  
}
/*-------------------------お問い合わせページ*/
.image_header_contact{
  background-image: url(../img/23690502_m.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 200px;
  display: flex;
  align-items: center;
  overflow: hidden;/* はみ出たところはカット */
}
.contact_text{
    font-size: 15px;
    font-weight: 400;
    padding-left: 5%;
    margin-left: 38px;
    margin-top: 50px;
}
.contact_container{
    max-width: 1080px;
}
.contact_form{
    max-width: 700px;
    margin: 0 auto;
}
.contact_form>label{
    display: block;
    width: 540px;
}
.contact_form>input,
.contact_form>textarea{
    display: block;
    width: 100%;
    padding: 10px 20px;
}
.contact_form input[type=submit]{
    background-color: #4D9FE0;
    border: solid 1px #fff;
    border-radius: 5px;
    font-size: 15px;
    width: 100px;
    margin: 0 auto;
    margin-top: 20px;
}
.contact_form input[type=submit]:hover{
    background-color: #bfe2fb;
}

/*お問い合わせ・予約ボタン*/
.btn_contact{
    position: fixed;
    right: 0;
    top: 180px;
    width: 50px;
    z-index: 100;
}
.btn_contact>a,
.btn_reservation>a{
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    width: 100%;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    letter-spacing: 5px;
}
.btn_reservation{
    position: fixed;
    right: 0;
    top: 300px;
    width: 50px;
    z-index: 100;
    padding: 5px;
}
#back-btn{
  display: none;
  padding: 28px 24px;
  background-color: #4D9FE0;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
.btn_contact{
    width: 35px;
}
.btn_reservation{
    width: 35px;
}
}
@media only screen and (max-width: 767px){
.btn_contact{
    position: fixed;
    right: 105px;
    top: 15px;
    width: auto;
    z-index: 100;
    padding: 5px;
}
.btn_contact>a,
.btn_reservation>a{
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    letter-spacing: 0;
    font-size: 12px;
}
.btn_reservation{
    position: fixed;
    right: 55px;
    top: 15px;
    width: auto;
    z-index: 100;
    padding: 5px;
}
}
/*プライバシー*/
.page_title_border_privacy{
    width: 600px;
    border: solid 3px #4D9FE0;
    margin: 0 auto;
    margin-bottom: 20px;
}
/*お問い合わせ*/
/*ContactForm7カスタマイズ*/
table.CF7_table{
	width:80%;
	margin:0 auto;
	border: 3px solid #e5e5e5;
}

table.CF7_table tr{
	border-top: 1px solid #e5e5e5;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table{
	display:table;
}

/*入力欄*/
.CF7_table input, .CF7_table textarea {
	border: 1px solid #d8d8d8;
	margin-top:10px;
	margin-left:10px;
	padding-left:5px;
	max-width:600px;
}
.mail_form input,
.tel_form input,
.CF7_table textarea{
	width:540px;
}

.CF7_table ::placeholder {
	color:#797979;
}
/*「必須」文字*/
.CF7_req{
	font-size:.9em;
	padding: 5px;
	background: #4D9FE0;/*オレンジ*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
	margin-left:5px;
}

/*「任意」文字*/
.CF7_unreq{
	font-size:.9em;
	padding: 5px;
	background: #bdbdbd;/*グレー*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}
/* タイトル列 */
@media screen and (min-width: 768px){
	.CF7_table th{
	width:30%;/*横幅*/
	background-color:#ebedf5;/*ブルーグレー*/
	}
}

/* レスポンシブ */
@media screen and (min-width: 768px) and (max-width: 1024px){
	table.CF7_table{
		width:92%;
	}
}
@media screen and (max-width: 767px){
	table.CF7_table{
	width:100%;
	box-sizing:border-box;
	}
	table.CF7_table th,
	table.CF7_table td{
		width:100%;
		margin:0 0;
		box-sizing: border-box;
		display: block;
		line-height:2.5em;
	}
	table.CF7_table th,
	table.CF7_table td{
		width:100%;
		margin:0 0;
		box-sizing: border-box;
		display: block;
		padding: 5px;
	}
	.CF7_table input, .CF7_table textarea {
		border: 1px solid #d8d8d8;
		margin-top:10px;
		margin-left:0;
		margin-right: 0;
		padding:5px;
		max-width:auto;
		width:100%;
		box-sizing: border-box;
	}
	.CF7_table th{
	background-color:#ebedf5;
	}
}
/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
	background-color:#4D9FE0;/* オレンジ*/
	border:0;
	color:#fff;
	font-size:1.2em;
	font-weight:400;
	margin:0 auto;
	width:150px;
	border-radius:10px;
}

.CF7_btn{
	text-align:center;
	margin-top:20px;
}

.wpcf7-spinner{
	width:0;
	margin:0;
}

/*ご予約*/


/*ContactForm7カスタマイズ reservation*/
table.CF7_table_reservation{
	width:80%;
	margin:0 auto;
	border: 3px solid #e5e5e5;
}

table.CF7_table_reservation tr{
	border-top: 1px solid #e5e5e5;
}

.single .entry-content table.CF7_table_reservation,
.page .entry-content table.CF7_table_reservation{
	display:table;
}

/*入力欄*/
.CF7_table_reservation input, .CF7_table_reservation textarea {
	border: 1px solid #d8d8d8;
	margin-top:10px;
	margin-left:10px;
	padding-left:5px;
	max-width:600px;
}
.CF7_table_reservation textarea{
	width:540px;
}

.CF7_table_reservation ::placeholder {
	color:#797979;
}
/*「必須」文字*/
.CF7_req{
	font-size:.9em;
	padding: 5px;
	background: #4D9FE0;
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
	margin-left:5px;
}

/*「任意」文字*/
.CF7_unreq{
	font-size:.9em;
	padding: 5px;
	background: #bdbdbd;/*グレー*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}
/* タイトル列 */
@media screen and (min-width: 768px){
	.CF7_table_reservation th{
	width:30%;/*横幅*/
	background-color:#ebedf5;/*ブルーグレー*/
	}
}

/* レスポンシブ */
@media screen and (max-width: 767px){
	table.CF7_table_reservation{
	width:100%;
	box-sizing:border-box;
	}
	table.CF7_table_reservation th,
	table.CF7_table_reservation td{
		width:100%;
		margin:0 0;
		box-sizing: border-box;
		display: block;
		line-height:2.5em;
	}
	table.CF7_table_reservation th,
	table.CF7_table_reservation td{
		width:100%;
		margin:0 0;
		box-sizing: border-box;
		display: block;
		padding: 5px;
	}
	.CF7_table_reservation input, .CF7_table_reservation textarea {
		border: 1px solid #d8d8d8;
		margin-top:10px;
		margin-left:0;
		margin-right: 0;
		padding:5px;
		max-width:auto;
		width:100%;
		box-sizing: border-box;
	}
	.CF7_table_reservation th{
	background-color:#ebedf5;
	}
}
@media screen and (min-width: 768px) and (max-width: 1024px){
	table.CF7_table_reservation{
		width:95%;
	}
}
/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
	background-color:#4D9FE0;/* オレンジ*/
	border:0;
	color:#fff;
	font-size:1.2em;
	font-weight:400;
	margin:0 auto;
	width:150px;
	border-radius:10px;
}

.CF7_btn{
	text-align:center;
	margin-top:20px;
}

.wpcf7-spinner{
	width:0;
	margin:0;
}
.wpcf7-form-control-wrap select{
	width:120px;
	margin-top:10px;
	margin-left:10px;
}

.news_post_meta>p{
font-weight:400;
}
.news_post_small_title>a{
	font-size:15px
}