<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*========================================================================

  reset

========================================================================*/

html {
	padding-top: 0!important;
}
.pbPage.pbPage--edit {
	overflow: hidden!important;
}
.pbHeaderArea {
	overflow: visible;
}
.pbPage--edit .b-o-header {
	position: relative;
}
.pbNested {
	clear: none;
	overflow: visible;
	min-width: 10px;
	overflow: visible;
}
.pb-layout {
	outline: 1px dotted #ccc !important;
	box-shadow: none!important;
}
.pb-handle {
	display: block!important;
	width: auto!important;
	height: auto!important;
	min-width: auto!important;
	min-height: auto!important;
	border: 1px solid #999!important;
	font-weight: normal!important;
	letter-spacing: normal;
	text-indent: 0!important;
	line-height: 1.6;
}
.pb-handle:before,
.pb-handle:after {
	display: none;
}
.pbNotEditable {
	min-width: 200px!important;
	background: rgba(32, 32, 32, 0.5)!important;
}
#componentHd *{
	vertical-align: middle;
}
#componentHd input#component-search {
	margin-top: 5px;
	padding: 10px 2px;
}
#pb-component-tool-container #TemplatePartsDialog div.HParts {
	padding: 11px 5px 8px;
}
.pbPage:not(.pbPage--edit) .base-anchorBlock {
	height: 0;
}
.pbPage:not(.pbPage--edit) .base-anchorBlock a {
	display: inline-block;
	margin-top: -90px;
	padding-top: 90px;
}
@media (max-width: 767px) {
	.pbPage:not(.pbPage--edit) .base-anchorBlock a {
		margin-top: -70px;
		padding-top: 70px;
	}
}
:root ol, :root ul {
	margin: 0;
	padding: 0;
}

/*  body
========================================================================*/

@media (max-width: 767px) {
	body.no_scroll{
		overflow-y: hidden;
	}
}

/*  Base
========================================================================*/

div.pbPage {
    overflow: hidden!important;
    background-color: #DCDEDD;
    font-family: "/6E38/30B4/30B7/30C3/30AF/4F53", "YuGothic", "/6E38/30B4/30B7/30C3/30AF", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "meiryo", "Helvetica Neue", "arial", sans-serif;
}

/*  link
------------------------------------------------*/

a {
	color: #242424;
	transition: all .3s;
	text-decoration: none;
}

/*  list
------------------------------------------------*/

ol,
ul {
	list-style: none;
}

/*  image
------------------------------------------------*/

img {
    width: 100%;
}
img[src$=".svg"] {
    width: auto;
}
a img { 
    transition: all .8s;
}
.pbAnchor img{
	width: auto;
}

.image-sp {
	display: none;
}

@media (max-width: 767px) {
	.image-pc {
		display: none;
	}
	.image-sp {
		display: block;
	}
}


/*  br
------------------------------------------------*/

br.is-pc {
	display: block;
}

@media (max-width: 767px) {
	br.is-pc {
		display: none;
	}
	br.is-sp {
		display: block;
	}
}

/*  Header
========================================================================*/

.header {
	position: fixed;
	z-index: 1001;
	width:  100%;
	top: 0;
	transition: all .3s;
}
.header.show {
	background-color: inherit;
}
.header.hide {
	background-color: rgba(0, 0, 0, 0)!important;
	pointer-events: none;
}
.header.black {
	position: fixed;
	z-index: 1001;
	width:  100%;
	top: 0;
	background-color: #dcdedd;
}
.pb-edit .header {
    position: relative;
}
.header &gt; div {
	position: relative;
    display: flex;
    height: 90px;
    align-items: center;
    padding: 0 40px;
    color: #fff;
}
.header .logo {
    margin-right: 20px;
}
.header .logo.pc {
    display: block;
}
.header .logo.sp {
    display: none;
}

@media (max-width: 767px) {
    .header .logo.pc {
        display: none;
    }
    .header .logo.sp {
        display: block;
    }
}

.header.hide .logo{
	opacity: 0;
	transition: all .3s;
}
.header.black .logo path {
    fill: #242424;
}
.header .logo-title {
	font-size: 12px;
    color: #fff;
}
.header.hide .logo-title{
	opacity: 0;
	transition: all .3s;
}
.header.black .logo-title {
    color: #242424;
}
.logo-title a{
	color: inherit;
}
.header .menu {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1001;
    width: 90px;
    height: 90px;
    cursor: pointer;
}

.pbPage:not(.open) .header.hide .menu{
	opacity: 0;
	transition: all .3s;
}

.pbPage.open .header.hide .menu{
	pointer-events: auto;
}

.header .menu span {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 22px;
	height: 2px;
	background: #fff;
	transition: all .8s;
}
.header.black .menu span {
	background: #242424;
}
.pbPage.open .header .menu span {
	background: #fff;
}
.header .menu span:nth-of-type(1) {
	top: 30px;
}
.header .menu span:nth-of-type(2) {
	top: 45px;
}
.header .menu span:nth-of-type(3) {
	bottom: 30px;
}
.pbPage.open .header .menu span:nth-of-type(1) {
	top: 35px;
	animation: open01 .75s forwards;
}
.pbPage.close .header .menu span:nth-of-type(1) {
	animation: close01 .75s;
}
@keyframes open01 {
	0% {transform: translateY(0) rotate(0);}
	50% {transform: translateY(9px) rotate(0);}
	100% {transform: translateY(9px) rotate(45deg);}
}
@keyframes close01 {
	0% {transform: translateY(9px) rotate(45deg);}
	50% {transform: translateY(9px) rotate(0);}
	100% {transform: translateY(0) rotate(0);}
}
.pbPage.open .header .menu span:nth-of-type(2) {
	opacity: 0;
}
.pbPage.open .header .menu span:nth-of-type(3) {
	bottom: 35px;
	animation: open03 .75s forwards;
}
.pbPage.close .header .menu span:nth-of-type(3) {
	animation: close03 .75s;
}
@keyframes open03 {
	0% {transform: translateY(0) rotate(0);}
	50% {transform: translateY(-9px) rotate(0);}
	100% {transform: translateY(-9px) rotate(-45deg);}
}
@keyframes close03 {
	0% {transform: translateY(-9px) rotate(-45deg);}
	50% {transform: translateY(-9px) rotate(0);}
	100% {transform: translateY(0) rotate(0);}
}

@media screen and (max-width: 767px) {
	.header &gt; div {
		height: 68px;
	    padding: 0 20px;
	}
	.header .logo-title {
		font-size: 9px;
	}
	.header .logo svg {
	    width: 39px;
	}
	.header .menu span {
		width: 16px;
		height: 2px;
	}
	.header .menu {
	    width: 68px;
	    height: 68px;
	}
	.header .menu span:nth-of-type(1) {
	    top: 25px;
	}
	.header .menu span:nth-of-type(2) {
	    top: 33px;
	}
	.header .menu span:nth-of-type(3) {
	    bottom: 25px;
	}
	.pbPage.open .header .menu span:nth-of-type(1) {
		top: 24px;
	}
	.pbPage.open .header .menu span:nth-of-type(3) {
		bottom: 24px;
	}
}

/*  Nav
========================================================================*/

.pbPage.open .header .nav {
    right: 0;
    transition: all .8s;
}
.header .nav {
	position: absolute;
	height: 100vh;
	width: 430px;
	top: 0;
	right: -100%;
	background-color:
	rgba(0,0,0,0.9);
	transition: all .8s;
}

.pbPage.open .header.hide .nav{
	pointer-events: auto;
}

.header .nav &gt; div {
	padding: 155px 65px 178px;
}

/*  list01
------------------------------------------------*/

.list01,.list02 {
	position: relative;
}
.list01 a {
	display: block;
	position: relative;
	padding: 25px 30px 24px 50px;
	border-bottom: 2px solid #656565;
	color: #fff;
	font-size: 14px;
	text-align: center;
	letter-spacing: 0.2em;
	line-height: 1.9;
}
.list01 a.no01 {
	background: url("/medical/clinic/assets/img/no_img01.svg") no-repeat 10px 50%;
}
.list01 a.no02 {
	background: url("/medical/clinic/assets/img/no_img02.svg") no-repeat 10px 50%;
}
.list01 a.no03 {
	background: url("/medical/clinic/assets/img/no_img03.svg") no-repeat 10px 50%;
}
.list01 a:before {
	content: "";
	position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
	background-color: #fff;
	transition: all .3s;
}
.list01 a:after {
	content: "";
	position: absolute;
    right: 10px;
    top: 50%;
    width: 12px;
    height: 12px;
	border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(135deg);
    transition: all .3s;
}
.list01 a:hover:before,
.list01 a:hover:after {
	margin-top: 2px;
}

/*  list02
------------------------------------------------*/

.list02 {
	margin-top: 20px;
}
.list02 a {
	display: block;
	position: relative;
	padding: 30px 30px 30px 50px;
	border-bottom: 2px solid #656565;
	color: #fff;
	font-size: 15px;
	text-align: center;
}
.list02 a {
	display: block;
	position: relative;
	padding: 30px 30px 30px 50px;
	border-bottom: 2px solid #fff;
	color: #fff;
	text-align: center;
}
.list02 a:before {
	content: "";
	position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 1px;
	background-color: #fff;
	transition: all .3s;
}
.list02 a:after {
	content: "";
	position: absolute;
    right: 10px;
    top: 50%;
    width: 12px;
    height: 12px;
	border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: all .3s;
}
.list02 a:hover:before,.list02 a:hover:after {
	margin-right: -7px;
}

@media screen and (max-width: 767px) {
	.header .nav {
		width: 100%;
		overflow-y: scroll;
	}
	.header .nav  &gt; div {
		padding: 120px 37px 178px;
	}
}

/*  Slider
========================================================================*/

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.slider{
    z-index: 1;
    height: 100vh;
	overflow: hidden;
}

.slider-item01 {
    background:url(/medical/clinic/assets/img/pc_main_01.jpg);
}
.slider-item02 {
    background:url(/medical/clinic/assets/img/pc_main_02.jpg);
}
.slider-item03 {
    background:url(/medical/clinic/assets/img/pc_main_03.jpg);
}
.slider-item04 {
    background:url(/medical/clinic/assets/img/pc_main_04.jpg);
}
.slider-item05 {
    background:url(/medical/clinic/assets/img/pc_main_05.jpg);
}

@media screen and (max-width: 767px) {
    .slider-item01 {
        background:url(/medical/clinic/assets/img/sp_main_01.jpg);
    }
    .slider-item02 {
        background:url(/medical/clinic/assets/img/sp_main_02.jpg);
    }
    .slider-item03 {
        background:url(/medical/clinic/assets/img/sp_main_03.jpg);
    }
    .slider-item04 {
        background:url(/medical/clinic/assets/img/sp_main_04.jpg);
    }
    .slider-item05 {
        background:url(/medical/clinic/assets/img/sp_main_05.jpg);
    }
}

.slider-item {
    width: 100%;
    height:100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.add-animation {
  animation: zoomOut 10s linear 0s normal both;
}

.wrapper {
    position:relative;
}
.wrapper:before {
	content: "";
	position: absolute;
    bottom: 30px;
    left: 50%;
    width: 32px;
    height: 32px;
	border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateX(-50%) rotate(135deg);
    transition: all .3s;
    z-index: 2;
}
.wrapper h1 {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

@media screen and (max-width: 767px) {
	.wrapper:before {
		bottom: 50%;
	    transform: translateX(-50%) translateY(130px) rotate(135deg);
	}
}

/*  cv-btn
========================================================================*/

.cv-btn {
	position: fixed;
	min-width: 300px;
	right: 30px;
	bottom: 30px;
	z-index: 100;
}
.cv-btn &gt; div {
	display: flex;
}
.cv-btn .btn {
	width: 50%;
	background-color: #fff;
}
.cv-btn img {
	margin-right: 13px;
	width: auto;
}
.cv-btn a {
	min-height: 70px;
	display: flex;
	align-items: center;
	padding: 0 15px;
	font-size: 13px;
	align-items: center;
	line-height: 1.3;
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",sans-serif;
}
.cv-btn .btn a:hover {
	background-color: #F2F2F2;
}

@media screen and (max-width: 767px) {
	.wrapper h1 img {
		width: 282px
	}
	.cv-btn {
		width: 90%;
		left: 50%;
		transform: translateX(-50%);
		bottom: 17px;
	}
	.cv-btn .btn.hover a {
		background-color: #F2F2F2;
	}
}

/*  Section01
========================================================================*/

.section01 &gt; div {
    width: calc(100% - 60px);
    max-width: 1160px;
    margin: 0 auto;
    padding: 120px 0 80px;
}
.section01.width100 &gt; div {
	padding: 80px 0 160px;
}
.title_h2 {
	position: relative;
	padding-bottom: 30px;
	text-align: center;
}
.title_h2:not(:first-child) {
	margin-top: 160px;
}
.title_h2 h2 {
	font-size: 28px;
	font-weight: normal;
	line-height: 1.7;
    letter-spacing: 0.2em;
}
.title_h2:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #957748;
}
.section01 .text {
    margin-top: 40px;
	text-align: center;
	font-size: 15px;
	line-height: 2.5;
    letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {

	.section01 &gt; div {
	    padding: 50px 0 30px;
	}
	.section01.width100 &gt; div {
	    width: 100%;
	    padding: 30px 0 80px;
	}
	.title_h2 {
		padding-bottom: 20px;
	}
	.title_h2:not(:first-child) {
		margin-top: 75px;
	}
	.title_h2:after {
	    height: 1px;
	}
	.title_h2 h2 {
	    font-size: 20px;
		letter-spacing: .04em;
	}
	.title_h2 img {
		width: 136px
	}
	.section01 {
	    width: 100%;
	}
	.section01 .text {
		text-align: unset;
		letter-spacing: 0;
	}
}

/*  CASE STUDY
========================================================================*/

.casestudy {
	margin-top: 40px;
}
.casestudy &gt; div:not(.pb-handle) {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: 74px 354px 74px 354px 74px;
    grid-gap:40px 16px;
}
.casestudy .case:nth-child(1) {
    grid-row-start: 1;
    grid-row-end: 3;
}
.casestudy .case:nth-child(2) {
    grid-row-start: 2;
    grid-row-end: 4;
}
.casestudy .case:nth-child(3) {
    grid-row-start: 3;
    grid-row-end: 5;
}
.casestudy .case:nth-child(4) {
    grid-row-start: 4;
    grid-row-end: 6;
}
.casestudy .case &gt; div {
	position: relative;
}
.casestudy .case .image a {
	display: block;
	overflow: hidden;
	transition: all .8s;
}
.casestudy .case .image a:before {
	content: "";
	opacity: 0;
	position: absolute;
	background: url(/medical/clinic/assets/img/hover.png) no-repeat 50% 50%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	transition: all .8s;
}

.casestudy .case .image a:hover:before {
	opacity: 1;
}
.casestudy .case .image a:hover img {
	transform: scale(1.1);
}

@media screen and (max-width: 767px) {
	.casestudy .case.hover .image a:before {
		opacity: 1;
	}
	.casestudy .case.hover .image a img {
		transform: scale(1.1);
	}
}

.casestudy .case .image a:after {
    content: '';
    opacity: 0;
    position: absolute;
    background: rgba(36, 36, 36, .4);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: all .8s;
}

.casestudy .case .image a:hover:before,
.casestudy .case .image a:hover:after {
	opacity: 1;
}

@media screen and (max-width: 767px) {
	.casestudy .case.hover .image a:before,
	.casestudy .case.hover .image a:after {
	    opacity: 1;
	}
}

.casestudy .titlebox {
	position: absolute;
	background-color: #DCDEDD;
	width: 420px;
    bottom: 0px;
    z-index: 2;
}
.casestudy .titlebox &gt; div {
	display: flex;
	align-items: center;
	padding: 20px 15px;
}
.casestudy .titlebox .title {
	margin-right: 20px;
	font-size: 15px;
	letter-spacing: 0.06em;
	font-weight: bold;
}
.casestudy .titlebox .tag {
	background-color: #957748;
	color: #fff;
	font-size: 12px;
}
.casestudy .titlebox .tag &gt; div {
	padding: 4px 17px;
}

@media screen and (max-width: 767px) {
	.casestudy &gt; div:not(.pb-handle) {
	    display: block;
	}
	.casestudy .case {
		display: block;
		position: relative;
		margin-top: 20px;
		padding-bottom: 40px;
	}
	.casestudy .titlebox {
		width: 94%;
		position: absolute;
		bottom: -40px;
	}
	.casestudy .titlebox &gt; div {
		display: flex;
		align-items: flex-start;
		padding: 20px 40px;
		flex-direction: column;
	}
	.casestudy .titlebox .tag {
		margin-top: 10px;
	}
}

/*  Accordion
========================================================================*/

.accordion .image-main {
    height: 520px;
    position: relative;
}
.accordion .image-main img {
    object-fit: cover;
    position: absolute;
    height: 100%;
}
.accordion .section-black {
	position: relative;
    background-color: #242424;
}
.accordion .section-black .trigger {
	position: relative;
	margin: 40px auto 0;
	width: 40px;
	height: 40px;
	border: 1px solid #747474;
	border-radius: 50%;
	transition: all .3s;
	cursor: pointer;
}
.accordion .section-black .trigger:hover {
	background: #fff;
}
.accordion .section-black .trigger:before,
.accordion .section-black .trigger:after {
	content: '';
	position: absolute;
	bottom: 60px;
    left: 0;
    right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 16px;
	height: 1px;
	background-color: #fff;
	transition: all .3s;
}
.accordion .section-black .trigger:hover:before,
.accordion .section-black .trigger:hover:after {
	background-color: #242424;
}
.accordion .section-black .trigger:after {
	transform: rotate(90deg);
}
.accordion.active .section-black .trigger:after {
	transform: rotate(360deg);
}
.accordion .section-black &gt; div:not(.pb-handle) {
    width: calc(100% - 68px);
    max-width: 1160px;
    margin: 0 auto;
    padding: 60px 0 40px;
    color: #fff;
}
.accordion .textbox &gt; div {
    display: flex;
    justify-content: space-between;
}
.accordion .textbox .title {
	width: 45%;
}
.accordion .textbox .title &gt; div {
    padding-left: 40px;
}
.accordion .textbox .title h2 {
    font-size: 28px;
    letter-spacing: 0.2em;
    line-height: 1.7;
    font-weight: normal;
}
.accordion .textbox .title.no01 {
	background: url("/medical/clinic/assets/img/no_img01.svg") no-repeat 0 10px;
}
.accordion .textbox .title.no02 {
	background: url("/medical/clinic/assets/img/no_img02.svg") no-repeat 0 10px;
}
.accordion .textbox .title.no03 {
	background: url("/medical/clinic/assets/img/no_img03.svg") no-repeat 0 10px;
}
.accordion .textbox .text {
	width: 51%;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.06em;
}
.accordion .textbox &gt; div:after {
	display: none;
}
.accordion .content .inner &gt; div {
	width: calc(100% - 80px);
    max-width: 1160px;
    margin: 0 auto;
    padding: 120px 0 160px;
}
.accordion .text-image:not(:first-child) {
	margin-top: 140px;
}
.accordion .text-image div:after {
    display: none;
}
.accordion .text-image &gt; div {
    display: flex;
    justify-content: space-between;
}
.accordion .text-image.reverse &gt; div  {
    flex-direction: row-reverse;
}
.accordion .text-image .box {
	width: 48%;
}
.accordion .text-image .box-image {
	width: 48%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.accordion .text-image .title {
	margin-top: 20px;
}
.accordion .text-image .title h3 {
	font-size: 24px;
	letter-spacing: .1em;
	font-weight: normal;
}
.accordion .text-image .title.large h3 {
	font-size: 28px;
}
.accordion .text-image .subtitle p {
	font-size: 20px;
	letter-spacing: .1em;
}
.accordion .text-image .subtitle p:not(:first-child) {
	position: relative;
	margin-top: 10px;
	padding-top: 10px;
	font-size: 18px;
}
.accordion .text-image .subtitle p:not(:first-child):before {
	content: '';
    position: absolute;
    top: 0;
    width: 270px;
    height: 1px;
    background: #242424;
}
.accordion .text-image .text {
	margin-top: 20px;
	font-size: 16px;
	letter-spacing: .1em;
	line-height: 2;
}

@media screen and (max-width: 767px) {
	.accordion .image-main {
	    height: auto;
	}
	.accordion .image-main img {
	    object-fit: unset;
	    position: unset;
	}
	.accordion .section-black &gt; div:not(.pb-handle) {
	    padding: 60px 0 60px;
	}
	.accordion .textbox &gt; div {
	    flex-direction: column;
	}
	.accordion .textbox .title {
		width: 100%;
	}
	.accordion .textbox .title h2 {
		width: 100%;
		font-size: 20px;
		font-weight: bold;
		line-height: 1.9;
		letter-spacing: 0.06em;
	}
	.accordion .textbox .text {
		width: 100%;
		margin-top: 30px;
	    font-size: 15px;
	    letter-spacing: 0.02em;
	}
	.accordion .content .inner &gt; div {
	    padding: 60px 0;
	}
	.accordion .text-image,
	.accordion .text-image.reverse {
	    flex-direction: column;
	}
	.accordion .text-image:not(:first-child),
	.accordion .text-image.reverse:not(:first-child) {
		margin-top: 40px;
	}
	.accordion .text-image &gt; div,
	.accordion .text-image.reverse &gt; div{
		flex-direction: column;
	}
	.accordion .text-image .box {
	    width: 100%;
	}
	.accordion .text-image .text {
		font-size: 16px;
		letter-spacing: .02em;
		line-height: 1.9;
	}
	.accordion .text-image .subtitle p:not(:first-child) {
		letter-spacing: .1em;
		line-height: 1.7;
	}
	.accordion .text-image .box-image {
	    width: 100%;
		margin-top: 30px;
	}
	.accordion .text-image .box-image img {
	    width: 100%;
	}
}

/*  text-image02
------------------------------------------------------------------------*/

.accordion .text-image02 div:after {
    display: none;
}
.accordion .text-image02 &gt; div {
    display: flex;
    justify-content: space-between;
}
.accordion .text-image02 .box {
	width: 45%;
}
.accordion .text-image02 .box-image {
	width: 48%;
}
.accordion .text-image02 .box-image &gt; div:not(.pb-handle) {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.accordion .text-image02 .title:not(:first-child) {
	margin-top: 20px;
}
.accordion .text-image02 .title h3 {
	font-size: 23px;
	letter-spacing: .1em;
	font-weight: normal;
}
.accordion .text-image02 .text {
	margin-top: 20px;
	font-size: 13px;
	letter-spacing: .1em;
	line-height: 2.5;
}
.accordion .text-image02 .text.small {
	margin-top: 10px;
	font-size: 11px;
}
.accordion .text-image02 .image:not(:first-child) {
	margin-top: 40px;
}

@media screen and (max-width: 767px) {
	
	.accordion .text-image02 {
	    flex-direction: column;
	}
	.accordion .text-image02:not(:first-child) {
		margin-top: 40px;
	}
	.accordion .text-image02 &gt; div {
		flex-direction: column;
	}
	.accordion .text-image02 .box {
	    width: 100%;
	}
	.accordion .text-image02 .text {
		margin-top: 20px;
		font-size: 16px;
		letter-spacing: .02em;
		line-height: 1.8;
	}
	.accordion .text-image02 .text.small {
		font-size: 10px;
		letter-spacing: .01em;
	}
	.accordion .text-image02 .box-image {
	    width: 100%;
		margin-top: 30px;
	}
	.accordion .text-image02 .box-image img {
	    width: 100%;
	}
	.accordion .text-image02 .image:not(:first-child) {
		margin-top: 30px;
	}
}


/*  image-text
------------------------------------------------------------------------*/

.accordion .image-text div:after {
	display: none;
}
.accordion .image-text:not(:first-child) {
	margin-top: 40px;
}
.accordion .image-text &gt; div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion .image-text .box-image {
	width: 49%;
}
.accordion .image-text .box {
	width: 47%;
}
.accordion .image-text .title {
	margin-top: 20px;
}
.accordion .image-text .title h3 {
	font-size: 24px;
	letter-spacing: .1em;
	font-weight: normal;
}
.accordion .image-text .title.large h3 {
	font-size: 28px;
}
.accordion .image-text .text {
	margin-top: 10px;
	font-size: 13px;
	letter-spacing: .1em;
	line-height: 2.5;
}

@media screen and (max-width: 767px) {
	.accordion .image-text &gt; div {
	    display: flex;
	    flex-direction: column;
	}
	.accordion .image-text .box-image,
	.accordion .image-text .box {
		width: 100%;
	}
	.accordion .image-text .text {
		font-size: 16px;
		letter-spacing: .02em;
		line-height: 1.9;
	}
}

.accordion .container-image-text {
	margin-top: 120px;
}
.accordion .container-image-text .image-text .box-image {
	width: 42%;
}
.accordion .container-image-text .image-text .box {
	width: 55%;
}

@media screen and (max-width: 767px) {
	.accordion .container-image-text {
		margin-top: 55px;
	}
	.accordion .container-image-text .image-text .box-image,
	.accordion .container-image-text .image-text .box {
		width: 100%;
	}
}

/*  Contact
========================================================================*/

.contact-aria {
	background-color: #1F2020;
}
.contact-aria &gt; div:not(.pb-handle) {
	width: calc(100% - 80px);
    max-width: 1160px;
    margin: 0 auto;
	padding: 90px 0 120px;
}
.contact-btn &gt; div {
	display: flex;
	justify-content: center;
}
.contact-btn .btn {
	position: relative;
	width: 32%;
	text-align: center;
	margin: 0 20px;
	font-size: 15px;
}
.contact-btn .btn a {
	border-bottom: 1px solid #fff;
	padding: 20px;
	color: #fff;
	display: block;
	font-weight: bold;
}
.contact-btn .btn a:before {
	content: "";
	position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 1px;
	background-color: #fff;
	transition: all .3s;
}
.contact-btn .btn a:after {
	content: "";
	position: absolute;
    right: 32px;
    top: 50%;
    width: 12px;
    height: 12px;
	border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: all .3s;
}
.contact-btn .btn a:hover {
	border-bottom: 2px solid #fff;
}
.contact-btn .btn a:hover:before,
.contact-btn .btn a:hover:after {
	margin-right: -10px;
}

@media screen and (max-width: 767px) {
	.contact-aria &gt; div:not(.pb-handle) {
		padding: 40px 0 80px;
	}
	.contact-btn .btn {
		width: 100%;
		margin: 0;
	}
	.contact-btn &gt; div {
		flex-direction: column;
	}
	.contact-btn .btn.hover a {
		border-bottom: 2px solid #fff;
	}
	.contact-btn .btn.hover a:before,
	.contact-btn .btn.hover a:after {
		margin-right: -10px;
	}
}

/*  Footer contact
========================================================================*/

.footer-contact-aria {
	position: relative;
	background: url(/medical/clinic/assets/img/footer_contact_bg.jpg) no-repeat;
	background-position: center;
    background-size: cover;
}
.footer-contact-aria &gt; div {
	width: calc(100% - 80px);
	max-width: 1160px;
	margin: 0 auto;
	padding: 130px 0 205px;
}
.footer-contact-aria .textimage {
	text-align: center;
}
.footer-contact-aria .contact-btn {
	margin-top: 60px;
}

@media screen and (max-width: 767px) {
	
	.footer-contact-aria &gt; div {
		padding: 130px 0 185px;
}
	.footer-contact-aria .textimage img {
		width:  282px;
	}
}

/*  PageTop
========================================================================*/

.page-top:not(.pb-handle) {
    position: absolute;
    color: #fff;
    font-size: 14px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 60px 20px 20px;
    cursor: pointer;
}
.page-top:before {
    content: "";
    position: absolute;
    bottom: 47px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    width: 28px;
    height: 28px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transition: all .3s;
}
.page-top:hover:before {
	bottom: 57px;
}

@media screen and (max-width: 767px) {
	.page-top:not(.pb-handle) {
	    bottom: 25px;
	}
	.page-top.hover:before {
		bottom: 57px;
	}
}

/*  Footer
========================================================================*/

.footer &gt; div{
	width: calc(100% - 80px);
    max-width: 1160px;
    margin: 0 auto;
	padding: 70px 0 90px;
}
.footer .footer-logo {
	text-align: center;
}
.footer .menu {
	margin-top: 35px;
}
.footer .menu ul {
	display: flex;
	justify-content: center;
}
.footer .menu li {
	display: flex;
	align-items: center;
	font-size: 13px;
}
.footer .menu li a {
	color: #848484;
}
.footer .menu li a:hover {
	color: #957748;
}
.footer .menu li:not(:last-child):after {
	content: "";
	display: block;
	height: 12px;
	width: 1px;
	background: #837D7D;
	margin-right: 24px;
    margin-left: 24px;
}
.footer .copyright {
	font-size: 10px;
	margin-top: 35px;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.footer &gt; div{
		padding: 60px 0 100px;
	}
	.footer .menu ul {
	    flex-direction: column;
	    align-items: center;
	}
	.footer .menu li:not(:first-child) {
		margin-top: 15px;
	}
	.footer .menu li:not(:last-child):after {
	    content: unset;
	}
}
</pre></body></html>