@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300&display=swap');

/* ---------- 共通部分 ------------- */
html{
    font-size: 100%;
    scroll-behavior: smooth;

}
body{
    font-family: 'Noto Serif JP', '游明朝体', '游明朝', YuMincho, 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
    line-height: 1.7;
    position: relative;
}
a{
    text-decoration: none;
    color: #2d344a;
}
img{
    max-width: 100%;
}
p{
    color: #2d344a;
}
.wrapper{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}
.font_red{
    color: red;
}


/* ------------- bootstrapの打ち消し ------------ */
.main-r ul{
    padding: 0;
}
ol, ul {
    padding-left: 0rem;
    margin: 0rem;
}
.main-nav li.has-child ul dl{
    margin-bottom: 0px; /* bootstrapの打ち消し */
}
.footer .address address{
    margin-bottom: 0px;
}
footer p{
    margin-top: 0;
    margin-bottom: 0rem;
}
footer{
    font-weight: normal;
}
img, svg {
    vertical-align: baseline;
}

/* ------------- ボタン ------------ */
.btnarrow5{
    letter-spacing: 0.1rem;
    /*矢印の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	border: 1px solid #2d344a;
    border-radius: 2px;
    padding: 5px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #2d344a;
    outline: none;
    /*アニメーションの指定*/
    transition: all .2s linear;
}

.btnarrow5:hover{
	background:#2d344a;
	color:#fff;
    opacity: 0.8;	
}

/*矢印と下線の形状*/
.btnarrow5::before{
	content:"";
    /*絶対配置で下線の位置を決める*/
	position: absolute;
	top:50%;
	right:-26px;
    /*下線の形状*/
	width:40px;
	height:1px;
	background:#2d344a;
    /*アニメーションの指定*/
    transition: all .2s linear;
}

.btnarrow5::after{
	content:"";
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    top: 20%;
    right: -21px;
    /*矢印の形状*/
	width:1px;
	height:12px;
	background:#2d344a;
    transform:skewX(45deg);
    /*アニメーションの指定*/
    transition: all .2s linear;
}

/*hoverした際の移動*/
.btnarrow5:hover::before{
	right:-30px;
}

.btnarrow5:hover::after{
	right:-25px;
}

/* ------------- フェードインとかの動き ------------ */
.top-fadein {
    display: none;
}
/* フェードイン前 */
.js-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
}
/* フェードイン後 */
.scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}



/* ------------- 共通header ------------ */

/* ------------ メニューバー　---------------- */

.pc-nav ul{
    position: relative;
	list-style: none;
	display: flex;
	justify-content: center;
    letter-spacing: 0.05rem;
}

/*ナビゲーションのリンク設定*/
.pc-nav ul li a{
    /* font-weight: bold; */
	display: block;
    text-decoration: none;
	margin:20px 13px;
	transition:all .3s;
}
.pc-nav ul li li a{
	padding:20px;
}
.pc-nav ul li a:hover{
    border-bottom: 1px solid #2d344a;
	color:#000;
    opacity: 0.5;	
}

/* 外来予約 */
.pc-nav .reserve {
    background-color: #2d344a;
    border-radius: 5px;
}
.pc-nav .reserve:hover{
    opacity: 0.8
}
.pc-nav .reserve a{
    color: #fff;
}
.pc-nav .reserve a:hover{
    border-bottom: 1px solid #fff;
	color:#fff;
    opacity: 1;	
}

/* インスタロゴ */

.pc-nav .sns img{
    width: 1.5rem;
}
.pc-nav .sns a:hover{
    border: 0;
}

/* アクティブのリンク */
.pc-nav ul li.active a{
    border-bottom: 1px solid #2d344a;
}

/*==2階層目以降の画像設定*/

.pc-nav ul li.has-child img{
	max-width: 100%;
	height: auto;
	transition: all .5s;
	vertical-align: bottom;
}

/*hoverしたら画像拡大*/
.pc-nav ul li.has-child img:hover{
	transform: scale(1.1);
}

.pc-nav ul li.has-child dt{
	overflow: hidden;
	/* height: 20vh; */
	margin:0 0 20px 0;
}


/*== 2層目の設定 */


.main-nav li.has-child ul{
    /*絶対配置で位置を指定*/
    position: absolute;
    right:10%;
      /* top:58px; */
    z-index: 4;
    /*子要素を横並びに*/
    display: flex;    
    /*形状を指定*/
    background:rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(3px);
    border-radius: 5px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.3);
    width:85%;
    /*はじめは非表示*/
    display: none;
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all .3s;
    /* ふわっとフェイドダウン */
    animation-name:fadeDownAnime;
    animation-duration:0.3s;
    animation-fill-mode:forwards;
    opacity:0;
}
/* ふわっとフェイドダウン用 */
@keyframes fadeDownAnime{
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
        
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*hoverしたら表示*/
.main-nav li.has-child:hover > ul{
    display:flex;
    visibility: visible;
    opacity: 1;
}

/*各ナビゲーション横幅*/
.main-nav li.has-child ul li{
    width:100%;
    text-align: center;
    padding: 0 5%;
}
.pc-nav ul li li a{
    padding: 0;
}
.pc-nav ul li li a:hover{
    border: 0px;
}

/*ナビゲーションaタグの形状*/
.main-nav li.has-child ul li a{
    color: #2d344a;
}

.main-nav li.has-child ul li a:hover,
.main-nav li.has-child ul li a:active{
    opacity: 0.5;
}

/* ------------ ハンバーガーメニュー -------------- */
.menu-btn{
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 45px;
    width: 45px;
    justify-content: center;
    align-items: center;
    z-index: 100;
    border-radius: 5%;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
    content: '';
    display: block;
    height: 1px;
    width: 30px;
    background-color: #2d344a;
    position: absolute;
    transition: all 0.5s;
}
/* ↑の位置から8pxずらして３本線をつくる */
.menu-btn span::before{
    bottom: 9px;
}
.menu-btn span::after{
    top: 9px;
}

/* ↓　クリック後　↓ */


#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時　三本線の真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #fff;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #fff;
}
#menu-btn-check{
    display: none;
}
/* メニュー内 */
.nmenu-content {
    width: 100%;
    height: 100vh;
    position: fixed; /* メニューの固定 */
    top: 0;
    left: 100%;
    z-index: 80;
    background-image: url(../image/nmenu_bg.jpg);
    background-position: center center;
    background-size: cover;
    transition: all 0.5s;
}
.nmenu-content-logo{
    padding: 70px 0 0;
    text-align: center;
}
.nmenu-content-logo img{
    width: 50%;
}
.nmenu-content ul{
    text-align: center;
    margin-top: 100px;
}
.nmenu-content li{
    list-style-type: none;
    margin: 5px 0;
}
.nmenu-content ul li a {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    color:#ffffff;
    text-decoration: none;
    position: relative;
}
.nmenu-content .nav_gairai{
    width: 50%;
    border:  2px solid #fff;
    padding: 20px 10px;
    border-radius: 5px;
    margin: 50px auto 0;
}
.nmenu-content .nav_gairai a{
    font-weight: bold;
}
/* クリックしたらメニュー全体を左へ */
#menu-btn-check:checked ~ .nmenu-content {
    left:0;/*メニューを画面内へ*/
}




/* ---------- 共通footer ------------ */
.footerwrap{
    width: 100%;
    text-align: center;
    margin-top: 200px;
    padding-bottom: 20px;
}
.footerwrap small{
    font-family: UniversLTPro-Ex, "Helvetica Neue","Helvetica", Arial, sans-serif
}
.footer{
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
footer p{
    color: #2d344a;
}
.footer img{
    width: 250px;
    margin-right: 50px;
}
.footer address{
    font-style: normal;
}
.footer .address{
    text-align: left;
    margin-bottom: 40px;
}
.footer .address a{
    text-decoration: underline;
    font-size: 1.4rem;
    color: #2d344a;
}
/* 電話マーク */
.fa-phone{
    margin-right: 0.5rem;
}

/* メインfooter */
.top_footer{
    background: url(../image/footerbg.jpg)  center/cover;
    color: #fff;
}

.top_footer p , .top_footer .address a{
    color: #fff;
}

/* コンテンツfooter */
.content_footer{
    /* background-color: rgba(45, 52, 74, 0.1); */
    /* background-color: rgba(255, 255, 255, 0.1); */
    backdrop-filter: blur(5px);
    color: #2d344a;
}
.content_footer .foot_logo_mb{
    display: none;
}
.content_footer .foot_logo_pc{
    display: block;
}

/* ------------- page top ------------ */
.page_top{
    position: fixed;
    bottom: 24px;
    right: 80px;
}
.page_top a {
    text-decoration: none;
    display: block;
    width: 100px;
    padding: 16px 20px;
    text-align: right;
    transform: rotate(90deg);
    transform-origin: bottom right;
}
.page_top a:hover {
    color: #2d344a;
    opacity: 0.6;

}
.page_top .arrow1 {
    width: 48px;
    height: 1px;
    background: #2d344a;
    position: absolute;
    top: 50%;
    right: 62px;
}

.page_top .arrow2 {
    width: 1px;
    height: 12px;
    background: #2d344a;
    position: absolute;
    top: calc(50% + 1px);
    right: 109px;
    transform: rotate(-130deg);
    transform-origin: top left;
}



/* ------------- top header ------------ */

.page-header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 20;
    padding-right: 20px;
}

/* ------------- top  ------------ */

/* top用ロゴ */

.page-header .logo_pc .logo{
    position: absolute;
    top: 0.3%;
    left: 1%;
    width: 20%;
    max-width: 280px;
    min-width: 150px;
}

/* top main */
.top-main{
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    z-index: -1;
}
.main-l{
    width: 50%;
    min-width: 700px;
    height: 100%;
    background: url(../image/top/top1.jpg) no-repeat center center;
    background-size: cover;
    margin-left: 5%;
}
.main-r{
    width: 50%;
    min-width: 620px;
    padding-top: 120px;
    position: relative;
}
.main-r p{
    writing-mode: vertical-rl;
}
.main-r .main-r-txt{
    width: 100%;
    display: flex;
    justify-content: center;
    /* align-items: center; */
}
.main-r .main-r-txt .title{
    font-size: 2rem;
    padding-left: 10%;
}
.main-r .main-r-txt .txt{
    font-size: 1rem;
    margin-top: 40px;
    line-height: 2rem;
    letter-spacing: 0.1rem;
}

/* スライド */
.slick-track{
    width: 100%;
}
.main-r .slide{
    position: absolute;
    width: 480px;
    min-width: 200px;
    bottom: 2%;
    left: 15%;
    margin: auto;
    overflow-x: hidden;
}

/* 縦線が動いてスクロールを促すやつ */

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	left:3%;
    bottom: 5%;
    /*全体の高さ*/
	height:100px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	position: absolute;
	left:-15px;
	top: -50px;
    /*テキストの形状*/
	color: #2d344a;
	font-size: 1rem;
	letter-spacing: 0.05em;
    writing-mode: vertical-rl;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 1px;
	height: 100px;
	background: #2d344a;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.7s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:50px;
		opacity: 1;
	}
	100%{
		height:0;
		top:100px;
		opacity: 0;
	}
}


/* ---------- 共通見出し ------------ */
.home-content{
    margin-bottom: 200px;
}
.page-title{
    text-align: center;
    margin-bottom: 50px;
    font-weight: normal;
    font-size: 1.4rem;
    letter-spacing: 0.4rem;
}


/* news */
#news{
    width: 60%;
    margin-top: 1000px;
    z-index: 10;
}
.home-content .top-news .news_post .news_item{
    border-bottom: 1px solid #DADDE2;
    padding: 20px 30px;
    font-size: 0.9rem;
    position: relative;
}
.home-content .top-news .news_post .news_item .txt{
    padding-left: 50px;
}
.arrow {
    width: 20px;
    height: 1px;
    background: #2d344a;
    position: absolute;
    top: 50%;
    right: 30px;
}
.arrow::after {
    content: "";
    display: block;
    width: 6px;
    height: 1px;
    background: #2d344a;
    transform: rotate(45deg);
    position: absolute;
    right: 0px;
    bottom: 2px;
}
.home-content .top-news a:hover{
    color: #2d344a;
    opacity: 0.6;
    transition: 0.5s;
}
.home-content .top-news .date{
    letter-spacing: 0.05rem;
}

/* 診療時間 */
.home-content .table{
    margin: 0 auto;
    width: 70%;
    text-align: center;
    color: #2d344a;
}
.home-content .table th{
    font-weight: normal;
}
.table_txt{
    width: 65%;
    margin: 20px auto;
    font-size: 0.9rem;
}

/* 眼の専門家 */
.top-clinic {
    position: relative;
    height: 500px;
    margin: 0 auto;
}
.top-clinic .about{
    margin: 20px 0;
}
.top-clinic .link{
    width: 230px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
}
.top-clinic .link a{
    margin: 30px 0 10px 30px;
}
.top-clinic p{
    letter-spacing: 0.2rem;
    line-height: 1.4rem;
    font-size: 0.9rem;
}
.top-clinic img{
    width: 50%;
    position: absolute;
    right: 0;
    top: 170px;
}


/* アクセス */
.top-access .access_item{
    display: flex;
}
.top-access .access_item .imgtxt{
    margin: 0 0 0 auto;
    padding-left: 10px;
}
.top-access .access_item .imgtxt p{
    font-size: 0.9rem;
}
.top-access .access_item .imgtxt address{
    font-size: 0.9rem;
}
.top-access .access_item .imgtxt .address a{
    text-decoration: underline;
    font-size: 1.5rem;
}
.top-access .access_item .imgtxt .address .fa-phone{
    font-size: 1.5rem;
}
.top-access .access_item .imgtxt .address a:hover{
    color: #2d344a;
    opacity: 0.6;
    transition: 0.5s;
}
.top-access .access_item img{
    width: 450px;
    margin-bottom: 20px;
}
.top-access .map{
    width: 50%;
}
.top-access .map iframe{
    width: 100%;
    height: 100%;
}
.top-access .access_item .imgtxt .btnarrow5{
    width: 200px;
}



/* ---------- コンテンツ　共通部分 ------------ */
/* ヘッダー */
.content_wrap{
    min-width: 1100px;
}
.content_wrap nav{
    position: fixed;
    right: 0;
    margin: 0 0 0 1%;
    z-index: 2;
    padding-right: 20px;
}
.content_wrap .page-header .logo_pc{
    position: fixed;
}
.content_wrap .page-header .logo_pc .logo2{
    width: 50px;
    margin: 50% 0 0 50%;
}
.main_content .main .nav_bg{
    width: 100%;
    height: 75px;
    background:rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    position: fixed;
    z-index: 1;
}

/* 左背景 */
.main_content .mainbg{
    background: url(../image/content/contentbg.jpg) ;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    position: fixed;
    /* overflow: hidden; */
    height: 100vh;
    width: 35%;
    min-width: 400px;
    z-index: -1;
}

/* コンテンツ内 */
.main_content{
    margin-left: 35%;
    /* padding-right: 4%; */
}
.main_content .page-title{
    margin-bottom: 20px;
}
.main_content .main{
    margin-bottom: 200px;
}
.main_content h3{
    font-size: 1.1rem;
    font-weight: normal;
    display: inline-block;
    border-bottom: 1px solid rgba(45, 52, 74, 0.5);
}
.main_content .content{
    width: 100%;
    max-width: 900px;
}
.main_content .content .content_item{
    display: flex;
    margin-bottom: 30px;
}
.main_content .content .content_item .item{
    width: 70%;
    margin: 0 10px ;
}
.main_content .content .txt{
    font-size: 0.9rem;
    margin-top: 10px;
}
.main_content .content img{
    width: 30%;
    margin-left: 20px;
}
.main_content .content_top{
    width: 100%;
    max-width: 900px;
    padding-top: 100px;
}
.main_content .content_top img{
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
}
.main_content .mainwrap{
    width: 100%;
}
.main_content .mainwrap .main{
    width: 85%;
    margin: 0 auto 100px;
}

/* コンテンツ内ナビ */
.main_content .main .nav{
    width: 100%;
    margin: 0 auto;
}
.main_content .main .nav ul{
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    font-size: clamp(0.95rem, -0.7rem + 2.4vw, 1.1rem);
    /* font-weight: bold; */
    letter-spacing: 0.05rem;
}
.main_content .main .nav ul li{
    width: 100%;
    margin: 40px 0 60px;
    padding: 10px 0 ;
    text-align: center;
    border-left:  1px solid #DADDE2;
}
.main_content .main .nav ul li.last_child{
    border-right:  1px solid #DADDE2;
}
.main_content .main .nav a{
    width: 200px;
}
.main_content .main .nav a:hover{
    opacity: 0.7;
}
.main_content .main .content .pagelink{
    scroll-margin-top: 100px;
}


/* ---------- 診療のご案内 ------------ */
#gairai .gairai_link{
    width: 230px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
}
#gairai .gairai_link a{
    margin: 20px 0 10px 20px;
}

/* ---------- 外来予約 ------------ */
#tel_reserve , #online_reserve{
    display: block;
}
#tel_reserve .txt, #online_reserve .txt{
    margin-left: 1rem;
}
#tel_reserve .txt .tel{
    font-size: 2rem;
    text-align: center;
    padding-top: 10px;
}
#tel_reserve .txt .tel a{
    text-decoration: underline;
}
#tel_reserve .txt .tel a:hover{
    opacity: 0.7;
}
#online_reserve{
    width: 100%;
}
#online_reserve .reserve_site{
    width: 80%;
    margin: 30px auto 0;
}
#online_reserve .reserve_site a{
    width: 100%;
    padding: 10px 0;
}
#online_reserve .reserve_site .btnarrow5::after {
    top: 25%;
}/* padding:10pxでズレた矢印の調整 */



/* PC版 ★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆ */

@media(min-width:769px){
    .hamburger-menu{
        display: none !important;
    }
    /* ヘッダー　ロゴ */
    .logo_mb{
        display: none;
    }
    /* ページTOPボタン */
    .pagetopbt_mb{
        display: none !important;
    }
}



/* モバイル版 ★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆★☆ */

@media (max-width:768px){

    html{
        font-size: 0.9rem    
    }

    .pc-nav{
        display: none !important;
    }

    /* トップ */
    .top-main{
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .main-l{
        height: 80vh;
        margin-left: 0;
        width: 100%;
        min-width: 100%;
    }
    .main-r{
        width: 100%;
        min-width: 100%;
        padding-top: 0;
        text-align: center;
    }
    .main-r p{
        writing-mode: horizontal-tb;
    }
    .main-r .main-r-txt{
        display: flex;
        flex-direction: column-reverse;
    }
    .main-r .main-r-txt .title{
        padding-left: 0;
        font-size: 1.5rem;
    }
    .main-r .main-r-txt .txt{
        margin: 0 auto;
        font-size: 0.85rem;
        line-height: 1.2rem;
        text-align: justify;
        letter-spacing: 0.2rem;
    }
    .slide{
        display: none;
    }
    .scrolldown1{
        display: none;
    }

    /* ---------- 共通見出し ------------ */
    .home-content{
        margin-bottom: 100px;
    }
    .page-title{
        margin-bottom: 20px;
    }


/* news */
#news{
    width: 95%;
    margin-top: 920px;
    padding: 30px 0 0;
    background-color: #f3f7fc;
}
.home-content .top-news .news_post .news_item{
    border-bottom: 5px solid #fff;
    display: flex;
    flex-direction: column;
    padding: 20px 30px 10px;
}
.home-content .top-news .news_post .news_item .txt{
    padding-left: 0;
    margin-top: 0.3rem;
}
.arrow {
    display: none;
}

/* 眼の専門家 */
.top-clinic {
    height: 100%;
    width: 90%;
}
.top-clinic .link{
    margin: 10px auto;
}
.top-clinic .link a{
    margin: 13px 0;
}
.top-clinic p{
    letter-spacing: 0.1rem;
    line-height: 1.2rem;
    font-size: 0.85rem;
}
.top-clinic img{
    width: 100%;
    text-align: center;
    position: relative;
    right: auto;
    top: auto;
}

/* 診療時間 */
#schedule{
    padding: 30px 0;
    background-color: #f3f7fc;
}
.home-content .table{
    width: 97%;
    background-color: #fff;
    border: 1px solid #f3f7fc;
}
.home-content .table tr{
    border-bottom: 3px solid #f3f7fc;
}
.table_txt{
    width: 90%;
    margin: 20px auto;
    font-size: 0.85rem;
}

/* アクセス */
.top-access .access_item{
    flex-direction: column-reverse;
}
.top-access .access_item .imgtxt{
    padding: 0 10px;
    text-align: center;
}
.top-access .access_item img{
    width: 450px;
    margin-bottom: 20px;
}
.top-access .map{
    width: 100%;
    height: 300px;
    margin-top: 30px;
}


/* ---------- 共通footer ------------ */
.footerwrap{
    margin-top: 0;
    padding-bottom: 20px;
}
.footer{
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0;
}
.footer .top_link{
    width: 100%;
}
.footer .footer_logo{
    width: 100%;
    margin: 0 auto;
}
.footer .address{
    text-align: center;
    margin-bottom: 0px;
    width: 100%;
}
.footer .address a{
    text-decoration: underline;
}
.footer img{
    width: 200px;
    display: block;
    margin: 0 auto 20px ;
}
/* コンテンツfooter */
.content_footer{
    background-color: #2d344a;
    background-size: cover;
    color: #fff;
}
.content_footer p , .content_footer .address a{
    color: #fff;
}
.content_footer .foot_logo_pc{
    display: none;
}
.content_footer .foot_logo_mb{
    display: block;
}


.page_top{
    display: none !important; 
}

/* ---------- コンテンツ　共通部分 ------------ */

/* ヘッダー */
.content_wrap{
    min-width: 100%;
}
.content_wrap .page-header .logo_pc{
    position: fixed;
}
.content_wrap .page-header .logo_pc .logo2{
    width: 30px;
}
.main_content .main .nav_bg{
    display: none;
}

/* 左背景 */
.main_content .mainbg{
    display: none;
}

/* コンテンツ内 */
.main_content{
    margin-left: 0;
}
.main_content h3{
    font-size: 0.9rem;
} 
.main_content .content .txt{
    font-size: 0.7rem;
}
.main_content .content img{
    margin: 0 0 auto 10px;
}
.main_content .content_top img{
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
}
.main_content .mainwrap{
    width: 100%;
}
.main_content .mainwrap .main{
    width: 95%;
    margin: 0 auto;
}
/* コンテンツ内ナビ */

.main_content .main .nav ul{
    font-size: 0.8rem;
}
.main_content .main .nav ul li{
    margin: 20px 0 ;
    vertical-align: middle;
}
.main_content .main .nav a{
    width: 100%;
}

/* ---------- 診療のご案内 ------------ */
#gairai .gairai_link a{
    margin: 10px 0 ;
}














}