@charset "utf-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, input, textarea, button {
	border: 0;
    font-family: Noto Sans JP, "Helvetica Neue", "Helvetica", "Arial", "Hiragino Kaku Gothic Pro","Hiragino Sans", "Meiryo", "Yu Gothic", sans-serif ;
	font-size: 100%;
	font-style: inherit;
    font-feature-settings: "palt";
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
}
ol, ul, li {
	list-style: none;
}
body {
	width:100%;
	height:100%;
	font-size: 15px;
    color: #333;
	line-height: 1.8;
	margin:0 auto;
	padding: 0;
}
img {
	max-width: 100%;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}
a img {
	border: none;
}
a:link ,a:visited {
	color: #333;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
}
a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
}

header, main, footer, nav, article, section, div, p, ul, li, dl, dt, dd, a, p, input, textarea {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media (min-width: 767px) {
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

.spDel {
    display: initial;  
}
.spOnly {
    display: none;
}
@media screen and (max-width: 767px) {
    .spDel {
        display: none;
    }
    .spOnly {
        display: block;
    }
}
.no-event {
    pointer-events: none;
    cursor: not-allowed;
}

/*ベースレイアウトCSS*/
section {
	width: 100%;
}
.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 70px 50px;
}
h2 {
    font-size: clamp(20px,3vw,25px);
    font-weight: bold;
    letter-spacing: 0.02em;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
h3 {
    font-size: clamp(18px,3vw,22px);
    font-weight: bold;
    text-align: center;
    margin: 40px auto 20px;
    position: relative;
}
small {
    font-size: 90%;
    line-height: 1.6em;
    display: inline-block;
}
.center {
    text-align: center;
}
@media screen and (max-width: 767px) {
    .inner {
        margin: 0 auto;
        padding: 50px 20px;
    }
    h2 {
        margin-bottom: 15px;
    }
    h3 {
        margin: 20px auto 10px;
    }
    .order01-sp{order: 1;}
    .order02-sp{order: 2;}
    .order03-sp{order: 3;}
    .order04-sp{order: 4;}
}
/*ベースレイアウトCSS ここまで*/

/*ヘッダーメニュー*/
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
	width: 100%;
	height: auto;
    z-index: 10;
}
.headerInner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	max-width: 1360px;
	margin: 0 auto;
    position: relative;
    transition: 0.4s;
}
button.logo {
	display: inline-block;
    width: 35%;
	max-width: 290px;
    height: 155px;
    background: url(/assets/img/logo.svg) no-repeat center;
    background-size: contain;
    background-color: #fff;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    transition: 0.4s;
}
button.logo:hover {
    background-image: url(/assets/img/logo-blue.svg);
}
button.logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
button.logo,button.logo img {
    opacity: 1;
}
/*メニュークリック時の遷移座標、訪問診療だけ調整*/
#homevisit {
    padding-top: 80px;
    margin-top: -80px;
}

/*画面をスクロールした時の動き*/
.headerInner.navFixed {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.2));
}
.navWrap.navFixed button.logo {
    width: 25%;
    max-width: 220px;
    height: 125px;
}
.NavBox {
	width: 100%;
}
nav {
	display: flex;
    width: 100%;
    padding: 15px 30px 15px 0;
    background-color: #fff;
    border-radius: 0 0 30px 0;
}
nav ul {
    display: flex;
    align-items: center;
    margin-left: auto;
    grid-gap: 20px;
}
nav ul li a {
    display: block;
    font-size: clamp(15px,2.5vw,16px);
    font-weight: bold;
    letter-spacing: 0.02em;
    transition: 0.4s;
}
nav ul li a:hover {
    color: #29abe2;
}
nav ul li a:before {
    content: "";
    margin-right: 5px;
    margin-left: 0px;
    transition: 0.4s;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #29abe2;
    border-right: 0;
}
nav ul li a:hover {
    color: "";
}
nav .navFixed {
    height: 86px;
    box-shadow: -1px 1px 1px rgba(0,0,0,0.15);
    background-color: rgba(255 , 255 , 255 , 0.9);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 5;
}
/*SP版用のボタン PCでは非表示*/
.btnSpNav {
    display: none;
}
/* ハンバーガーメニュー用 */
@media screen and (max-width: 767px) {
    .navWrap {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 10;
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    button.logo {
        position: absolute;
        left: 0;
        top: 0;
        width: 42% !important;
        height: 85px !important;
        border-radius: 0 0 30px 0;
        background-position: left;
    }
    .NavBox {
        display: none;
    }
    nav {
        padding: 100px 0 40px;
        border-radius: 0 0 30px 30px;
    }
    .navWrap ul {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
        grid-gap: 0;        
        width: 100%;
    }
    .navWrap ul li {
        padding: 15px 0;
        margin: auto;
        width: calc(100% - 40px);
        border-top: solid 1px #29abe2;
    }
    /*クリックしたら表示 .openが付与される*/
    .headerInner.navWrap.open .NavBox {
        display: block;
    }
    .headerInner.navWrap.open {
        background-color: rgba(0,0,0,0.75);
        height: 100%;
    }
    /*メニューボタン*/
    .btnSpNav, .btnSpNav span {
        display: inline-block;
        transition: all 0.3s;
        box-sizing: border-box;
    }
    .btnSpNav {
        z-index: 20;
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 65px;
        border-radius: 0 0 0 15px;
        background: #29abe2;
        margin: 0 0 auto auto;
        filter: drop-shadow(0 0 8px rgba(0,0,0,0.2));
    }
    .btnSpNav p {
        font-size: 10px;
        letter-spacing: 0.02em;
        width: 100%;
        text-align: center;
        color: #fff;
        position: absolute;
        bottom: 5px;
        left: 0;
        right: 0;
        margin: auto auto 0;
    }
    .btnSpNav span {
        position: absolute;
        left: 10px;
        width: 40px;
        height: 3px;
        background-color: #fff;
        border-radius: 3px;
    }
    .btnSpNav span:nth-of-type(1) {
        top: 12px;
    }
    .btnSpNav span:nth-of-type(2) {
        top: 24px;
    }
    .btnSpNav span:nth-of-type(3) {
        top: 36px;
    }
    .btnSpNav.active span:nth-of-type(1) {
        -webkit-transform: translateY(10px) rotate(-45deg);
        transform: translateY(10px) rotate(-45deg);
    }
    .btnSpNav.active span:nth-of-type(2) {
        opacity: 0;
    }
    .btnSpNav.active span:nth-of-type(3) {
        -webkit-transform: translateY(-10px) rotate(45deg);
        transform: translateY(-13px) rotate(45deg);
    }
}
/*ヘッダーメニュー ここまで*/

/*ファーストビュー*/
section.fv {
    width: 100%;
	height: auto;
	margin: 0 auto 0;
	position: relative;
}
section.fv ul {
    width: calc(100% - 5%);
    max-width: 1280px;
    margin: 65px auto 0;
    overflow: hidden;
    border-radius: 40px;
    z-index: -1;
    transition: 0.4s;
}
section.fv .sliderTop li h1 {
    position: absolute;
    top: 8%;
    left: 0;
    right: 0;
    width: 12%;
    min-width: 95px;
    max-width: 150px;
    height: auto;
    margin: auto;
    filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 1));
}
section.fv .sliderTop li {
    width: 100%;
    height: 75vh;
    min-height: 630px;
    max-height: 850px;
}
section.fv .sliderTop li:first-child {
    background: url(../img/bg_top01.png) no-repeat center center;
    background-size: cover;
    background-position: center;
}
@media screen and (max-width: 767px) {
    section.fv ul {
        margin-top: 10px;
        border-radius: 15px;
    }
    section.fv .sliderTop li {
        width: 100%;
        min-height: auto;
    }
    section.fv .sliderTop li:first-child {
        background: url(../img/bg_top01-sp.png) no-repeat center center;
        mix-blend-mode: multiply;
        background-size: cover;
        background-position: center;
        position: relative;
    }
    section.fv .sliderTop li:first-child:after {
        content: "";
        background-image: linear-gradient(0deg, transparent, #30a1c580);
        mix-blend-mode: multiply;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 60%;
        z-index: -1;
    }
    section.fv .sliderTop li h1 {
        top: 14%;
    }
}
@media screen and (min-width: 1680px) {
    section.fv ul {
        max-width: 1680px;
        transition: 0.4s;
    }
}
/*ファーストビュー ここまで*/

/*クリニック情報*/
.topContents {
    font-size: clamp(13px,2.5vw,18px);
    width: 100%;
    max-width: 900px;
    background: #f9f4e9;
    margin: -50px auto 0;
    padding: 50px;
    border-radius: 30px;
    position: relative;
}
.topContents:after {
    content: "";
    z-index: -5;
    width: 30%;
    height: auto;
    aspect-ratio: 1/1;
    position: absolute;
    left: -100px;
    bottom: -100px;
    background-color: #29abe2;
    border-radius: 40px;
}
.tableSchedule {
    width: 100%;
    border-spacing: 0;
    border-radius: 10px;
    background-color: #fff;
    margin: 0 auto ;
    padding: 15px 20px;
}
.tableSchedule th, .tableSchedule td {
    text-align: center;
    border-bottom: 1px solid #CCC;
    padding: 8px 5px;
}
.tableSchedule th {
    font-size: clamp(16px,2.5vw,18px);
    font-weight: bold;
}
.tableSchedule td{
    vertical-align: middle;
    width: 9.75%;
    font-size: clamp(14px,2.5vw,15px);
    line-height: 1.6em;
    color: #29abe2;
}
.tableSchedule td:empty:before{
    content: "ー";
    color: #333;
}
.tableSchedule td:first-child{
    color: #333;
    width: auto;
    padding: 5px 0;
}
.tableSchedule tr:last-child td{
    border-bottom: none;
    padding-top: 15px;
    text-align: left;
}
ul.PhotoSlider {
    position: relative;
    z-index: -1;
}
ul.PhotoSlider li {
    margin-right: 5px;
}
ul.PhotoSlider img.image {
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}
@media screen and (max-width: 767px) {
    .topContents {
        margin-top: -20px;
        padding: 30px 10px 10px;
        border-radius: 20px;
    }
    .topContents:after {
        z-index: -10;
        left: -30px;
        bottom: -60px;
        border-radius: 20px;
    }
    .tableSchedule td{
        width: 8.5%;
    }
    .tableSchedule {
        padding: 0 10px 15px;
    }
}
/*クリニック情報 ここまで*/

/*お知らせ枠 CSS*/
.infoBox {
    font-size: clamp(14px,2.5vw,16px);
    text-align: center;
    width: 100%;
    border-spacing: 0;
    border-radius: 10px;
    background-color: #fff;
    margin: 0 auto;
    padding: 15px 20px;
}
.infoBox strong{
    font-size: clamp(15px,2.5vw,17px);
    font-weight: bold;
}
@media screen and (max-width: 959px) {
    .infoBox {
        width: 100%;
    }
}
/*お知らせ枠 ここまで*/

/*当院について*/
.aboutBox li h3 {
    font-size: clamp(20px,3vw,25px);
    line-height: 1.6em;
    text-align: left;
    margin: 0;
    padding-bottom: 20px;
}
/*見出しにアイコンつける時用*/
.aboutBox li h2 img,
.aboutBox li h3 img {
    position: absolute;
    right: -80%;
    left: auto;
    top: -5px;
    max-width: 65%;
    height: auto;
}
.aboutBox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 40px;
    line-height: 2;
    margin-bottom: 70px;
}
.aboutBox:last-child {
    margin-bottom: 0px;    
}
.aboutBox li {
    display: flex;
    flex-wrap: wrap;
    align-items: center; 
}
.aboutBox li.w30 {
    width: calc(30% - 20px);
}
.aboutBox li.w40 {
    width: calc(40% - 20px);
}
.aboutBox li.w50 {
    width: calc(50% - 20px);
}
.aboutBox li.w60 {
    width: calc(60% - 20px);
}
.aboutBox li.w70 {
    width: calc(70% - 20px);
}
.aboutBox li.left {
    margin-left: auto;
    margin-right: 0;
}
.aboutBox li.right {
    margin-left: 0;
    margin-right: auto;
}
.aboutBox li.left picture,
.aboutBox li.right picture {
    width: 100%;
}
.aboutBox li.left picture img,
.aboutBox li.right picture img {
    object-fit: cover;
    width: 100%;
    height: 400px;
    border-radius: 30px;
}
.aboutBox p {
    font-size: clamp(15px,2.5vw,16px);
    text-align: justify;
    line-height: 2em;
    margin-bottom: 10px;
}
.aboutBox p.name {
    font-size: 95%;
    text-align: right;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .aboutBox {
        grid-gap: 20px;
        margin-bottom: 30px;
    }
    .aboutBox li h2,
    .aboutBox li h3 {
        margin: 30px auto 0;
        padding-bottom: 10px;
    }
    .aboutBox li.w30,
    .aboutBox li.w40,
    .aboutBox li.w50,
    .aboutBox li.w60,
    .aboutBox li.w70 {
        width: 100%;
    }
    .aboutBox li.left picture img,
    .aboutBox li.right picture img {
        height: 260px;
    }
}
/*当院について ここまで*/

/*医師紹介*/
#doctor.medicalItem {
    position: relative;
}
#doctor.medicalItem:before{
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    background: url(/assets/img/doctor-bg.png) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 25px;
}
#doctor.medicalItem .inner{
    padding-top: 50px;
}
/*見出しにアイコンつける時用*/
#doctor.medicalItem h2 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
#doctor.medicalItem h2 img {
    position: absolute;
    right: -140px;
    left: auto;
    top: -45px;
    max-width: 125px;
    height: auto;
}
ul.dr-block{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 20px;
    margin: 30px auto 50px;
}
ul.dr-block:last-child{
    margin-bottom: 0;
}
ul.dr-block li{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    background-color: transparent;
    padding: 0;
}
ul.dr-block li.img{
    width: calc(60% - 30px);
    position: relative;
}
ul.dr-block li.img .top-left{
    position: absolute;
    top: -35px;
    left: -15px;
    max-height: 85px;
    max-width: fit-content;
}
ul.dr-block li.img .top-right{
    position: absolute;
    top: -95px;
    right: -10px;
    max-height: 85px;
    max-width: fit-content;
}
ul.dr-block li.img .bottom-left{
    position: absolute;
    bottom: -25px;
    left: -15px;
    max-height: 85px;
    max-width: fit-content;
}
ul.dr-block li.img picture.dr-p{
    width: 100%;
}
ul.dr-block li.img picture.dr-p img{
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 380px;
    border-radius: 20px;
}
ul.dr-block li.txt{
    width: 40%;
}
ul.dr-block li.txt p{
    font-size: clamp(14px,2.5vw,15px);
    line-height: 1.8em;
}
ul.dr-block li.txt h3{
    font-size: clamp(22px,2.5vw,28px);
    font-weight: normal;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    width: 100%;
    padding-bottom: 20px;
    margin: auto 0 20px;
    border-bottom: dashed 1px #29abe2;
}
ul.dr-block li.txt h3 small{
    font-size: clamp(14px,2.5vw,15px);
    font-weight: bold;
    color: #29abe2;
    display: inline-block;
    margin-right: 10px;
}
ul.dr-block li.txt h3 rt{
    font-size: 12px;
    text-align: center;
    position: relative;
    bottom: 4px;
}
@media screen and (max-width: 767px) {
    ul.dr-block li.img{
        width: 100%;
        order: 1;
    }
    ul.dr-block li.txt{
        width: 100%;
        order: 2;
    }
    ul.dr-block li.img picture.dr-p img{
        height: 280px;
    }    
    ul.dr-block li.txt h3{
        justify-content: center;
        padding-right: 8%;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    ul.dr-block li.img .top-left,
    ul.dr-block li.img .top-right,
    ul.dr-block li.img .bottom-left{
        max-height: 65px;
    }
}
/*医師紹介 ここまで*/

/*診療科目*/
.medicalItem {
    background-color: #f9f4e9;
}
/*見出しにアイコンつける時用*/
.medicalItem h2 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.medicalItem h2 img {
    position: absolute;
    right: -120px;
    left: auto;
    top: -10px;
    max-width: 105px;
    height: auto;
}
ul.Item-icon {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 15px;
    width: 100%;
    max-width: 900px;
    margin-top: 40px;
}
.Item-icon li {
    width: calc(20% - 12px);
    background-color: #fff;
    padding: 20px 10px;
    border-radius: 20px;
}
.Item-icon li p {
    text-align: center;
}
.Item-icon li p img {
    width: auto;
    height: 100%;
    max-height: 85px;
    margin: auto;
}
.Item-icon li h3 {
    font-size: clamp(15px,2.5vw,18px);
    line-height: 1.4em;
    font-weight: bold;
    height: 45px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.Item-icon li h3 small {
    font-size: clamp(14px,2.5vw,16px);
    line-height: 1.4em;
}
.guidance {
    width: 100%;
    margin-top: 30px;
}
.guidance a {
    display: block;
    width: fit-content;
    transition: 0.4s;
    position: relative;
    margin-bottom: 3px;
}
.guidance a:before {
    content: "";
    margin-right: 5px;
    margin-left: 0px;
    transition: 0.4s;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #29abe2;
    border-right: 0;
}
.guidance a:hover {
    color: #29abe2;
}
@media screen and (max-width: 767px) {
    ul.Item-icon {
        grid-gap: 8px;
        justify-content: space-between;
    }
    .Item-icon li {
        width: calc(33% - 5px);
        padding: 10px 0px;
        border-radius: 20px;
    }
    .Item-icon li p img {
        max-height: 55px;
        margin-top: -8px;
    }
    .Item-icon h2 img {
        top: -40px;
    }
    .guidance a {
        line-height: 1.5em;
        margin-bottom: 8px;
    }
}
/*診療科目ここまで*/

/*訪問診療*/
/*アクセス・お問い合わせ*/
.homevisit,
.access{
    width: 100%;
    max-width: 100%;
    background-color: #f9f4e9;
    position: relative;
}
.homevisit {
    border-bottom: solid 70px #f9f4e9;
}
.homevisitTxt,
.addressTxt {
    width: 50%;
    padding: 40px;
    margin-right: auto;
    background-color: #fff;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}
.homevisitTxt {
    margin-right: 0;
    margin-left: auto;
}
/*訪問診療・アクセス枠内の飾り*/
.homevisitTxt img.point-icon,
.addressTxt img.point-icon {
    position: absolute;
    bottom: -12%;
    right: -3%;
    width: 50%;
    max-width: 135px;
}
.homevisitTxt span.baloon {
    font-size: clamp(15px,2.5vw,16px);
    text-align: center;
    font-weight: bold;
    color: #fff;
    padding: 8px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #29abe2;
    border-radius: 50%;
    position: absolute;
    top: -100px;
    left: -110px;
}
.homevisitTxt p,
.addressTxt p{
    font-size: clamp(15px,2.5vw,16px);
    margin-bottom: 5px;
}
.homevisitTxt h2,
.addressTxt h2 {
    text-align: left;
    margin: 0 0 15px;
}
.homevisitTxt h3,
.addressTxt h3 {
    font-size: clamp(16px,2.5vw,18px);
    text-align: left;
    margin: 0 0 5px;
}
/*見出しにアイコンつける時用*/
.homevisitTxt h2 img,
.addressTxt h2 img {
    position: absolute;
    right: 15%;
    left: auto;
    top: -55px;
    width: 45%;
    max-width: 160px;
    height: auto;
}
.homevisitTxt h2 img {
    right: -15%;
    top: -30px;
}
.homevisitTxt a.tel-link {
    font-size: clamp(28px,2.5vw,38px);
    font-weight: bold;
    line-height: 1.4em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.homevisitTxt a.tel-link span{
    width: 100%;
    font-size: 15px;
    line-height: 1em;
    text-align: center;
    color: #fff;
    padding: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: #29abe2;
}
.homevisitTxt a.tel-link small{
    font-size: 13.5px;
    font-weight: normal;
    text-align: center;
    letter-spacing: -0.03em;
    width: 100%;
}
.exterior {
    position: absolute;
    right: 0;
    left: auto;
    top: 0;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: flex-end;
}
.exterior.right {
    justify-content: flex-start;
}

.exterior picture {
    width: 60%;
    height: 100%;
    overflow: hidden;
    border-radius: 30px 0 0 30px;
}
.exterior.right picture {
    border-radius: 0 30px 30px 0;
}
.exterior picture img {
    object-fit: cover;
    object-position: right;
    height: 100%;
    width: 100%;
}
/*医療機関情報 リンクボタン*/
a.click-link {
    font-weight: bold;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 8px;
    background-color: #29abe2;
    border:solid 1px #29abe2;
    border-radius: 30px;
    display: block;
    margin: 30px auto 0;
    transition: 0.4s;
}
a.click-link:hover {
    color:  #29abe2;
    background-color:  #fff;
}

/*ウィンドウ幅広い時*/
@media screen and (min-width: 1280px) {
    .exterior {
        right: 0;
        left: 0;
        margin: auto;
    }
    .exterior.right picture,
    .exterior picture {
        border-radius: 30px;
    }    
}
@media screen and (max-width: 767px) {
    .homevisitTxt span.baloon {
        width: 100%;
        height: auto;
        border-radius: 8px;
        top: -65px;
        left: 0;
        right: 0;
        margin: auto;
        padding: 10px 0;
    }
    .homevisitTxt span.baloon:after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
        border-top: 15px solid #29abe2;
        border-bottom: 0;
        position: absolute;
        bottom: -12px;
        right: 20px;
    }
    .homevisit {
        border-bottom: solid 30px #f9f4e9;
    }
    .homevisitTxt,
    .addressTxt {
        width: 100%;
        padding: 25px 20px;
        border-radius: 20px;
    }
    .homevisitTxt h2 img {
        right: -28px;
    }
    .exterior {
        position: initial;
        width: 88%;
        height: 270px;
        margin: -60px 0 0 auto;
    }
    .exterior.right {
        margin: -60px auto 0 0;
    }
    .exterior picture {
        width: 100%;
        overflow: hidden;
        border-radius: 20px 0 0 20px;
    }
    .exterior.right picture {
        border-radius: 0 20px 20px 0;
    }
}
.googleMap {
    background-color: #f9f4e9;
    padding: 80px 0 130px;
    position: relative;
}
.googleMap iframe {
    margin: 0 auto 0 0;
    width: 85%;
    min-width: 767px;
    border-radius: 0 30px 30px 0;
    position: relative;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.15));
    z-index: 1;
}
.googleMap .decoration {
    width: 40%;
    height: 45%;
    background-color: #29abe2;
    border-radius: 30px 0 0 30px;
    margin: auto 0 50px auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
@media screen and (max-width: 767px) {
    .googleMap {
        padding: 60px 0;
    }
    .googleMap iframe {
        width: 95%;
        min-width: 95%;
        height: 480px;
        border-radius: 0 20px 20px 0;
    }
    .googleMap .decoration {
        width: 45%;
        height: 30%;
        border-radius: 20px 0 0 20px;
        margin: auto 0 20px auto;
    }
}
/*アクセス ここまで*/
/*訪問診療 ここまで*/

/*お問い合わせ・フッター*/
footer {
    position: relative;
    z-index: 1;
    background-color: #f9f4e9;
    padding: 0 0 40px;
}
.contactBox {
    width: calc(100% - 40px);
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 40px;
    background-color: #fff;
    border-radius: 30px;
    position: relative;
}
.contactBox::after {
    content: "";
    width: 30%;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    left: -100px;
    bottom: -100px;
    background-color: #29abe2;
    border-radius: 40px;
    z-index: -1;
}
/*見出しにアイコンつける時用*/
.contactBox h2 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.contactBox h2 img {
    position: absolute;
    right: -120px;
    left: auto;
    top: -20px;
    max-width: 115px;
    height: auto;
}
.contactBox ul{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    grid-gap: 30px;
}
.contactBox ul li{
    width: calc(40% - 10px);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: center;
}
.contactBox ul li p {
    font-size: clamp(13px,2.5vw,14px);
    line-height: 1.6em;
    text-align: center;
    margin-top: 5px;
}
.contactBox ul li a {
    font-size: clamp(35px,2.5vw,38px);
    line-height: 1.2em;
    text-align: center;
    font-weight: bold;
    display: block;
}
.contactBox ul li a span {
    display: inline-block;
    font-size: clamp(16px,2.5vw,18px);
    line-height: 1.3em;
    text-align: center;
    background-color: #29abe2;
    color: #fff;
    padding: 5px 15px;
    margin:0 8px 5px 0;
    border-radius: 4px;
    width: 90%;
}
@media screen and (max-width: 767px) {
    footer {
        padding-bottom: 60px;
    }
    .contactBox {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .contactBox::after {
        left: -30px;
        bottom: -60px;
        border-radius: 20px;
    }
    .contactBox ul {
        grid-gap: 10px;
    }
    .contactBox ul li {
        width: 100%;
        margin: auto;
    }
    .contactBox ul li a {
        width: 100%;
    }
    .contactBox ul li a span {
        padding: 5px 0;
        margin: 0 0 5px 0;
        width: 100%;
    }
}

footer .footerBox {
    width: calc(100% - 40px);
    max-width: 1280px;
    text-align: center;
    padding: 8px;
    background-color: #fff;
    margin: 0 auto;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}
footer a{
    font-size: 13px;
    display: inline-block;
}
.btnToTop {
    position: fixed;
    display: flex;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 10px;
    cursor: pointer;
    background-color: #fff;
    border: 4px solid #29abe2;
    border-radius: 50%;
    transition: 0.4s;
    z-index: 20;
}
.btnToTop:after {
    content: "";
    position: fixed;
    width: 15px;
    height: 15px;
    right: 45px;
    bottom: 22px;
    border-top: 4px solid #29abe2;
    border-right: 4px solid #29abe2;
    transform: rotate(-45deg);
    transition: 0.4s;
}
.btnToTop:hover {
    background-color: #29abe2;
}
.btnToTop:hover:after {
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
}
@media screen and (max-width: 767px) {
    footer .footerBox {
        border-radius: 20px;
    }    
}
/*お問い合わせ・フッター ここまで*/

/* モーダル全体(背景＋本体) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 3;
}
.bgModal {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.modalFront {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*overflow: scroll;*/
  width: 60%;
  background: white;
  padding: 10px;
}
.btnModalClose {
  position: absolute;
  top: -15px;
  right: -15px;
}
.btnModalClose a:hover {
  text-decoration: none;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}
.btnModalClose a:hover img {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}
.modalClose img {
  width: 50px;
  height: 50px;
}
/* モーダル全体(背景＋本体) ここまで*/

/* ハンバーガーメニュー用 */
.navWrap.open {
  display: block;
}