@charset "UTF-8";

@media screen and (max-width: 1024px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
}

.fade-in {
    opacity: 0;
    -webkit-transition: opacity 0.7s ease, -webkit-filter 0.7s ease 0.2s, -webkit-transform 0.7s ease 0.2s;
    transition: opacity 0.7s ease, -webkit-filter 0.7s ease 0.2s, -webkit-transform 0.7s ease 0.2s;
    transition: opacity 0.7s ease, filter 0.7s ease 0.2s, transform 0.7s ease 0.2s;
    transition: opacity 0.7s ease, filter 0.7s ease 0.2s, transform 0.7s ease 0.2s, -webkit-filter 0.7s ease 0.2s, -webkit-transform 0.7s ease 0.2s;
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
    will-change: filter;
}
.fade-in.active {
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

html, body {
    overflow-x: hidden;
}
body {
  color: #052B5E;
  letter-spacing: 0.02em;
  line-height: 1.4;
  background: #FEFCFC;
  font-size: 18px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-style: normal;
  font-weight: 700;
}
body input,
body button {
  font-family: inherit;
}
body a {
  color: inherit;
}
body a:hover {
  cursor: pointer;
  opacity: 0.7;
}
body p {
  line-height: 1.8;
}
body strong {
  font-weight: 700;
}
body .underline {
  text-decoration: underline;
}
body iframe {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}

h2 {
    font-size: 26px;
}
@media screen and (max-width: 1024px) {
    h2 {
        font-size: 20px;
    }
}

/*フォント*/
.mb101 {
    font-family: "a-otf-gothic-mb101-pr6n", sans-serif;
    font-weight: 300;
    font-style: normal;
}
.cabin {
    font-family: 'Cabin', sans-serif;
    font-weight: 300;
}
.montserrat-font {
    font-family: "montserrat", sans-serif;
    font-weight: 600;
    font-style: normal;
}

/* FLEX */
.flex {
    display: flex;
    justify-content: space-between;
    gap: 0 2em;
}
@media screen and (max-width: 1024px) {
	.flex {
		flex-direction: column;
	}
}

/* WRAP */
.wrap1200 {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding-top: 120px;
}
@media screen and (max-width: 1024px) {
	.wrap1200 {
		width: 100%;
	}
}
@media screen and (min-width:1025px) and ( max-width:1439px) {
	.wrap1200 {
		max-width: 1100px;
	}
}
.wrap1400 {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
}
@media screen and (max-width: 1024px) {
	.wrap1400 {
		width: 100%;
	}
}
@media screen and (min-width:1025px) and ( max-width:1439px) {
	.wrap1400 {
		max-width: 1100px;
	}
}

/* リバース */
@media screen and (min-width: 1025px) {
	.pc_reverse {
		flex-direction: row-reverse;
	}
}
@media screen and (max-width: 1024px) {
	.sp_reverse {
		flex-direction: column-reverse;
	}
}

/* 電話番号 */
a.tel-num.common.cabin {
    display: block;
    font-size: 28px;
    color: #EC9A9D;
    margin-top: 10px;
}
a.tel-num.common.cabin span {
	font-size: 20px;
}

img {
	width: 100%;
	height: 100%;
}

button {
	width: 220px;
	background: #052B5E;
	box-shadow: 0px 5px 15px 0px #ec9a9d42;
	color: #fff;
	font-size: 19px;
    border-radius: 30px;
    padding: 7px 0;
    margin-top: 30px;
	position: relative;
}
button::after {
    content: '>';
    color: #EC9A9D;
    position: absolute;
    right: 20px;
    top: 5px;
}
button:hover {
	background: #EC9A9D;
}

.txt-center {
    text-align: center;
}

main.underPage {
    background: url(https://n-dotto.heteml.net/murakami-naika/wp-content/themes/murakami/assets/images/mv/top_mv_bg_pc_under.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}
main.topPage {
    background: url(https://n-dotto.heteml.net/murakami-naika/wp-content/themes/murakami/assets/images/mv/top_mv_bg_pcTop_under.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
}
@media screen and (max-width: 1024px) {
    main.underPage, main.topPage  {
        background: url(https://n-dotto.heteml.net/murakami-naika/wp-content/themes/murakami/assets/images/mv/top_mv_bg_sp.webp);
        background-repeat: no-repeat;
        background-position: top center;
        background-size: 100%;
    }
	button {
		position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
		font-size: 16px;
        padding: 5px 0;
        margin-top: 20px;
	}
}

.header {
    padding: 0;
    width: 100%;
    top: 0;
    left: 0;
    -webkit-transition: background-color 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
    position: fixed;
    z-index: 10;
}
.header.scrolled {
    background-color: unset;
}
.header__wrap {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 1400px;
    width: 100%;
    margin: 10px auto 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 20px;
    height: 100px;
    padding: 0 30px;
}
.header__logo {
    width: fit-content;
    max-width: 360px;
}
.header__logo a {
    display: flex;
}
.header__logo a .clinic-name {
    font-size: 30px;
    color: #00367F;
    padding-left: 10px;
}
.header__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.header__nav nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 2.5em;
  list-style: disc;
  color: #EC9A9D;
}
.header__nav nav ul li a {
    color: #052B5E;
    margin-left: -5px;
}
.header__nav .tel-num {
    font-size: 28px;
    color: #EC9A9D;
    margin-bottom: 7px;
}
.header__nav .tel-num span {
    font-size: 20px;
}
@media screen and (min-width: 1025px) {
   .header__hamburger {
     display: none;
   }
   .sp-navi {
    display: none;
   }
}
@media screen and (max-width: 1024px) {
	.header.scrolled {
		background-color: unset;
	}
	.header__logo__sp {
		position: absolute;
		left: 20px;
		top: 20px;
		z-index: 12;
	}
	.header__logo__sp a {
		display: flex;
	}
	.header__logo__sp a figure {
		width: 140px;
		height: auto;
	}
	.header__logo__sp a figure img {
		width: 100%;
		height: 100%;
	}
	.header__logo__sp a .clinic-name {
		font-size: 25px;
		padding-left: 5px;
	}
	.header__hamburger {
		display: block;
	}
	.header__hamburger {
		position: fixed;
		right: 20px;
		top: 20px;
		z-index: 12;
	}
	.sp-navi {
		display: block;
		width: 100%;
		height: fit-content;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 11;
		background: #EEEFEB;
		box-sizing: border-box;
		opacity: 0;
		pointer-events: none;
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		transition: opacity 1s ease, visibility 1s ease;
	}
	.sp-navi.active {
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
		opacity: 1;
		pointer-events: auto;
		opacity: 1;
		visibility: visible;
	}
	.menu-trigger {
		background: url('https://n-dotto.heteml.net/murakami-naika/wp-content/themes/murakami/assets/images/common/header_hamburger_open26.svg');
		width: 45px;
		height: 45px;
		background-size: cover;
	}
	.menu-trigger.active {
		background: url('https://n-dotto.heteml.net/murakami-naika/wp-content/themes/murakami/assets/images/common/header_hamburger_close26.svg');
		width: 45px;
		height: 45px;
		background-size: cover;
	}
	.sp-navi__wrap {
		padding: 90px 20px 30px 20px;
		margin-bottom: 30px;
	}
	.sp-navi__link {
		display: block;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		background: #fff;
		border-radius: 40px;
		padding: 20px;
	}
	.sp-navi__link a {
		display: flex;
		-webkit-box-pack: justify;
		justify-content: flex-start;
		font-size: 18px;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 15px;
		border-bottom: 1px dashed #052B5E;
	}
	.sp-navi__link a::after {
		content: url('https://n-dotto.heteml.net/murakami-naika/wp-content/themes/murakami/assets/images/common/sp-navi-arrow-forward.svg');
		display: block;
		position: absolute;
		right: 50px;
	}
	.sp-navi__link a:nth-child(8) {
		border-bottom: unset;
	}
	.sp-navi__links {
		margin-top: 20px;
	}
	.sp-navi__block {
		margin-top: 20px;
		background: #fff;
		border-radius: 40px;
		padding: 20px 0;
	}
	.sp-navi__item {
		display: flex;
		-webkit-box-pack: justify;
		flex-direction: column;
		align-items: center;
	}
	.sp-navi__item-heading {
		font-size: 18px;
	}
	.sp-navi__item-address {
		font-size: 11px;
		margin-top: 16px;
	}
	.sp-navi__item-tel {
		font-size: 19px;
		margin-top: 9px;
		color: #EC9A9D;
	}
	.sp-navi__item-tel span {
		font-size: 14px;
	}
}
/*ipad・横 用*/
@media (orientation: landscape) and (max-width: 1366px){
    .header__wrap {
        max-width: 1150px;
		width: 95%;
    }
    .header__nav nav ul {
        gap: 2em;
        font-size: 14px;
    }
}
@media screen and (max-width: 1024px) {
    .header__wrap {
        display: none;
    }

}



/*　トップページ
-------------------------------------------　*/
.main-visual {
    max-width: 1400px;
    width: 95%;
    height: 43vw;
    margin: 0 auto;
}
.main-visual__wrap {
    height: 100%;
}
.main-visual__container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
.mv-fade-in.delay-1 {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}
.mv-fade-in {
    opacity: 0;
    /*-webkit-transform: translateY(-20px);
    transform: translateY(-20px);*/
    -webkit-filter: blur(10px);
    filter: blur(10px);
    will-change: transform, filter, opacity;
    -webkit-transition: opacity 1s ease, -webkit-filter 0.7s ease 0.2s, -webkit-transform 1.7s ease 0.2s;
    transition: opacity 1s ease, -webkit-filter 0.7s ease 0.2s, -webkit-transform 1.7s ease 0.2s;
    transition: opacity 1s ease, filter 0.7s ease 0.2s, transform 1.7s ease 0.2s;
    transition: opacity 1s ease, filter 0.7s ease 0.2s, transform 1.7s ease 0.2s, -webkit-filter 0.7s ease 0.2s, -webkit-transform 1.7s ease 0.2s;
}
.mv-fade-in.active {
    opacity: 1;
    /*-webkit-transform: translateY(0);
    transform: translateY(0);*/
    -webkit-filter: blur(0);
    filter: blur(0);
}
.main-visual__bg {
    position: absolute;
    top: 14.8vw;
    right: 0;
    width: 100%;
    height: 100%;
}
.main-visual__bg img {
    height: auto;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.mv-fade-in.delay-3 {
    -webkit-transition-delay: 3.5s;
    transition-delay: 3.5s;
}

@media screen and (max-width: 720px) {
	.spImg_only {
		display: block;
	}
	.tabletImg_only {
		display: none;
	}
	.pcImg_only {
		display: none;
	}	
	.main-visual {
        height: 215vw;
    }
    .main-visual__wrap {
        width: 90%;
        margin: 0 auto;
    }
    .main-visual__bg {
        top: 26vw;
        height: fit-content;
    }
    .main-visual__bg img {
        object-fit: contain;
    }
    .main-visual__catch {
		position: absolute;
		left: 0;
		top: 110vw;
		transform: translateY(-50%);
    }
	.main-visual__catch h1 {
		font-size: 4.7vw;
		padding-bottom: 10px;
	}
	.main-visual__catch p {
		font-size: 3.5vw;
		padding: 5px 0;
	}
}
@media screen and (min-width:701px) and ( max-width:1024px) {
	.spImg_only {
		display: none;
	}
	.tabletImg_only {
		display: block;
	}
	.pcImg_only {
		display: none;
	}
	
	.main-visual__catch {
		position: absolute;
		top: 47%;
		left: 46%;
		transform: translateY(-50%);
	}
	.main-visual__catch h1 {
		font-size: 2vw;
		padding-bottom: 10px;
	}
	.main-visual__catch p {
		font-size: 1.2vw;
		padding: 5px 0;
	}
}
@media screen and (min-width: 1025px) {
	.spImg_only {
		display: none;
	}
	.tabletImg_only {
		display: none;
	}
	.pcImg_only {
		display: block;
	}
	
	.main-visual__catch {
		position: absolute;
		top: 46%;
		left: 42%;
		transform: translateY(-50%);
	}
	.main-visual__catch h1 {
		font-size: 1.9vw;
		padding-bottom: 10px;
	}
	.main-visual__catch p {
		font-size: 1.03vw;
		padding: 5px 0;
	}
}
@media screen and (max-width: 375px) {
	.main-visual {
        height: 180vw;
    }
    .main-visual__catch {
		position: absolute;
		left: 0;
		top: 58%;
		transform: translateY(-50%);
    }
}
@media screen and (min-width: 2560px) {
    .main-visual__catch {
		position: absolute;
        top: 43%;
        left: 44%;
		transform: translateY(-50%);
    }
    .main-visual__catch h1 {
        font-size: 35px;
        padding-bottom: 10px;
    }
    .main-visual__catch p {
        font-size: 20px;
        padding: 5px 0;
    }
}
@media screen and (min-width:1025px) and ( max-width:1439px) {
    .main-visual__catch {
		position: absolute;
        top: 53%;
        left: 44%;
		transform: translateY(-50%);
    }
}


.sec-01 {
    margin-top: 190px;
    z-index: 0;
    position: relative;
}
.title-h2 {
    text-align: left;
    margin-top: 30px;
    font-weight: 700;
}
.title-h2 .EN {
	display: block;
	font-size: 14px;
	color: #EC9A9D;
}
.top-news-list {
	max-width: 890px;
    width: 100%;
    background: #fff;
    border-radius: 25px;
    margin: 30px 0 0 0;
    padding: 10px 40px;
    position: relative;	
	box-shadow: 0px 5px 15px 0px #ec9a9d42;
}
.top-news-list .item {
    display: flex;
    gap: 2em;
    padding: 30px 0;
    border-bottom: 1px solid #DFBDBE;
    align-items: center;
}
.top-news-list .item:nth-child(3) {
	border: unset;
}
.top-news-list .item .date {
    font-size: 14px;
    font-weight: 600;
	color: #DFBDBE;
}
.top-news-list .item figure {
    width: 120px;
	height: auto;
}
.position-right {
    position: absolute;
    right: 10px;
}
@media screen and (max-width: 720px) {
    .sec-01 {
		margin-top: -100vw;
	}
	.title-h2 {
        margin-top: 30px;
		text-align: center;
    }
	.title-h2 .EN {
		font-size: 12px;
	}
    .top-news-list {
        margin: 20px auto 0;
        padding: 5px 20px;
        width: 76%;
    }
    .top-news-list .item {
        flex-direction: column;
        padding: 20px 0;
        gap: 0.5em;
        font-size: 14px;
        align-items: flex-start;
        text-align: justify;
    }
    .position-right {
        position: unset;
        right: 0;
    }
}
@media screen and (min-width:701px) and ( max-width:1024px) {
    .sec-01 {
		margin-top: 14vw;
	}
	.title-h2 {
		text-align: center;
    }
	.top-news-list {
		width: 76%;
        margin: 20px auto 0;
	}
}
@media screen and (max-width: 375px) {
    .sec-01 {
		margin-top: -260px;
	}
}
@media screen and (min-width: 2560px) {
	.sec-01 {
		margin-top: 0;
	}
}


.sec-02 {
    margin-top: 0;
    z-index: 0;
    position: relative;
}
.fever-row-one {
	max-width: 890px;
    width: 100%;
    background: #fff;
    border-radius: 25px;
    margin: 30px 0 0 0;
    padding: 25px 40px;
    position: relative;
    box-shadow: 0px 5px 15px 0px #ec9a9d42;	
}
.fever-row-one p {
	line-height: 2;
}
.fever-row-one figure.fever {
	width: 230px;
	height: auto;
}
.fever-row-one .tel-num span {
	font-size: 20px;
}
@media screen and (max-width: 720px) {
    .fever-row-one {
        margin: 20px auto 0;
        padding: 5px 20px 16px;
        width: 76%;
    }
	.sec-02 {
		margin-top: -60px;
	}
	.fever-row-one.flex {
		flex-direction: column-reverse;
		padding: 20px;
	}
	.fever-row-one figure.fever {
		width: 100%;
	}
	.fever-row-one p {
		padding-top: 10px;
	}
	.fever-row-one .tel-num {
		text-align: center;
	}
}
@media screen and (min-width:701px) and ( max-width:1024px) {
    .fever-row-one {
        width: 80%;
        margin: 20px auto 0;
    }
	.fever-row-one.flex {
		flex-direction: column-reverse;
		padding: 20px;
	}
	.fever-row-one figure.fever {
		width: 100%;
	}
	.fever-row-one p {
		padding-top: 10px;
	}
	.fever-row-one .tel-num {
		text-align: center;
	}
}
@media screen and (min-width:1025px) and ( max-width:1439px) {
    .fever-row-one, .top-news-list {
        padding: 25px 30px;
    }
}


.sec-03 {
    margin-top: 140px;
    z-index: 0;
    position: relative;
}
.sec-03 .content-wrap {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
}
.sec-03 .content-wrap .right-layout {
	max-width: 1300px;
	width: 100%;
	float: right;
}
.sec-03 .content-wrap .right-layout figure.sign {
	width: 630px;
	height: auto;
}
.sec-03 .content-wrap .right-layout p {
	font-size: 16px;
	padding: 10px 0;
}
.sec-03 .title-h2 {
	margin-top: 0;
	padding-bottom: 10px;
}
@media screen and (max-width: 720px) {
	.sec-03 {
		margin-top: 250px;
	}
	.sec-03 .content-wrap .right-layout .flex {
		flex-direction: column-reverse;
	}
	.sec-03 .content-wrap .right-layout figure.sign {
		width: 86%;
		margin: 0 auto;
	}
	.sec-03 .content-wrap .right-layout p {
		font-size: 14px;
		width: 87%;
		margin: 0 auto;
		text-align: justify;
	}
	.sec-03 .title-h2 {
		margin-top: 20px;
	}
}
@media screen and (min-width:701px) and ( max-width:1024px) {
	.sec-03 {
		margin-top: 260px;
	}
	.sec-03 .content-wrap .right-layout .flex {
		flex-direction: column-reverse;
	}
	.sec-03 .content-wrap .right-layout figure.sign {
		width: 82%;
		margin: 0 auto;
	}
	.sec-03 .content-wrap .right-layout p {
		font-size: 14px;
		width: 82%;
		margin: 0 auto;
		text-align: justify;
	}
	.sec-03 .title-h2 {
		margin-top: 20px;
	}
}
@media screen and (min-width:1025px) and ( max-width:1439px) {
	.sec-03 {
		margin-top: 150px;
	}
	.sec-03 .content-wrap {
		width: 100%;
	}
	.sec-03 .content-wrap .right-layout {
		max-width: 1100px;
		float: none;
		margin: 0 auto;
	}
	.sec-03 .content-wrap .right-layout figure.sign {
		width: 450px;
	}
}
@media screen and (min-width: 2560px) {
	.sec-03 {
		margin-top: 20px;
	}
	.sec-03 .content-wrap {
		padding-top: 120px;
	}
}


.sec-04 {
    margin-top: 100px;
	width: 100%;
    z-index: 0;
    position: relative;
	background: linear-gradient(180deg, #fff 0%, #fff 50%, #FEFCFC 50%, #FEFCFC 100%);
}
.sec-04 .visual-bg {
	background: url('https://n-dotto.heteml.net/murakami-naika/wp-content/themes/murakami/assets/images/top/six-clm_bg.webp');
    background-repeat: no-repeat;
	background-position: center bottom;
    background-size: 100%;
    height: 1100px;
}
.sec-04 .wrap1200 {
	padding-top: 80px;
}
.sec-04 .flex {
	flex-wrap: wrap;
}
.sec-04 .row-one {
	display: block;
	width: 31%;
	box-shadow: 0px 5px 15px 0px #ec9a9d42;
    border-radius: 15px;
	margin-bottom: 40px;
	background: #fff;
}
.sec-04 .row-one a {
	display: flex;
	flex-direction: column;
    align-items: center;
    padding: 40px 15px;
}
.sec-04 .row-one:hover {
	box-shadow: unset;
	border: 1px solid #ec9a9d42;
}
.sec-04 .row-one p.title {
	font-size: 22px;
	padding: 25px 0;
}
.sec-04 .row-one p.txt {
	font-size: 14px;
}
.sec-04 .row-one figure.sick-icon {
	width: 74px;
	height: auto;
}
.sec-04 .row-one2 {
	display: flex;
	width: 28%;
	margin-bottom: 40px;
	flex-direction: column;
    align-items: center;
    padding: 40px 15px;
}
.sec-04 .row-one2 p.title {
	font-size: 22px;
	padding: 25px 0;
}
.sec-04 .row-one2 p.txt {
	font-size: 14px;
}
.sec-04 .row-one2 figure.features {
	width: 370px;
	height: auto;
}
.sec-04 button {
	position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    margin-bottom: 50px;
}
@media screen and (max-width: 720px) {
	.sec-04 {
		margin-top: 0;
		background: #FEFCFC;
	}
	.sec-04 .visual-bg {
		background: url('https://n-dotto.heteml.net/murakami-naika/wp-content/themes/murakami/assets/images/top/six-clm_bg_sp.png');
		background-repeat: no-repeat;
		background-position: 0 50px;
		background-size: contain;
		height: fit-content;
	}
	.sec-04 .row-one {
		width: 86%;
		margin: 0 auto;
	}
	.sec-04 .flex {
		width: 95%;
        margin: 0 auto;
        flex-direction: unset;
		gap: 0;
	}
	.sec-04 .row-one {
		width: 45%;
        margin-bottom: 18px;
    }
	.sec-04 .row-one p.title {
		font-size: 18px;
		padding: 0 0 10px;
	}
	.sec-04 .row-one p.txt {
		font-size: 12px;
		text-align: justify;
	}
	.sec-04 .row-one a {
		padding: 20px 15px;
	}
	.sec-04 button {
		margin-bottom: 30px;
	}
	.sec-04 .row-one2 {
		width: inherit;
		margin: 0 auto;
		padding: 20px 0;
	}
	.sec-04 .row-one2 p.title {
		font-size: 20px;
	}
	.sec-04 .row-one2 figure.features {
		width: 320px;
	}
}
@media screen and (min-width:701px) and ( max-width:1024px) {
	.sec-04 {
		margin-top: 0;
		background: #FEFCFC;
	}
	.sec-04 .visual-bg {
		background: url('https://n-dotto.heteml.net/murakami-naika/wp-content/themes/murakami/assets/images/top/six-clm_bg_sp.png');
		background-repeat: no-repeat;
		background-position: 0 50px;
		background-size: cover;
		height: fit-content;
	}
	.sec-04 .row-one {
		width: 86%;
		margin: 0 auto;
	}
	.sec-04 .flex {
		width: 95%;
        margin: 0 auto;
        flex-direction: unset;
		gap: 0;
	}
	.sec-04 .row-one {
		width: 45%;
        margin-bottom: 18px;
    }
	.sec-04 .row-one p.title {
		font-size: 18px;
		padding: 0 0 10px;
	}
	.sec-04 .row-one p.txt {
		font-size: 12px;
		text-align: justify;
	}
	.sec-04 .row-one a {
		padding: 20px 15px;
	}
	.sec-04 button {
		margin-bottom: 30px;
	}
	.sec-04 .row-one2 {
		width: inherit;
		margin: 0 auto;
		padding: 20px 0;
	}
	.sec-04 .row-one2 p.title {
		font-size: 20px;
	}
	.sec-04 .row-one2 figure.features {
		width: 320px;
	}
}
@media screen and (min-width:1025px) and ( max-width:1439px) {
	.sec-04 {
		margin-top: 50px;
	}
}


.sec-05 {
    margin-top: 350px;
	width: 100%;
    z-index: 0;
    position: relative;
}
.health-info-list .item {
	display: flex;
	justify-content: space-between;
}
.health-info-list .item .date {
    display: block;
	padding-bottom: 15px;
}
.health-info-list .item a {
	display: block;
	width: 84%;
}
.health-info-list .item figure {
	display: block;
}
.health-info-list .item figure img {
    border-radius: 20px;
}
.health-info-list .item figure a {
	width: unset;
}
.sec-05 button {
	position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
	margin-top: 50px;
}
.health-info-list .item:nth-child(2) {
	border-bottom: unset;
}
@media screen and (max-width: 720px) {
	.sec-05 {
		margin-top: -70px; 
	}
	.health-info-list .item {
		flex-direction: unset;
		align-items: flex-end;
        gap: 1.5em;
	}
	.health-info-list .item figure {
		width: 110px;
	}
	.sec-05 button {
		margin-top: 35px;
	}
}
@media screen and (min-width:701px) and ( max-width:1024px) {
	.sec-05 {
		margin-top: -50px; 
	}
}




/*フッター*/
footer {
	margin-bottom: 30px;
}
footer figure.gaikan {
	width: 560px;
	height: auto;
}
footer iframe {
	width: 600px;
	heigh: auto;
}
footer a.footer-logo {
    display: flex;
}
footer a.footer-logo .clinic-name {
    font-size: 30px;
    color: #00367F;
    padding-left: 10px;
}
footer a.tel-num {
    display: block;
    font-size: 28px;
    color: #EC9A9D;
	padding: 7px 0;
}
footer a.tel-num span {
    font-size: 20px;
}
footer button.small-btn {
	padding: 0;
    margin-top: 0;
    width: 140px;
    font-size: 13px;
}
footer button.small-btn::after {
    left: 120px;
    top: -1px;
}
footer .flex.ps-middle {
	align-items: center;
	justify-content: flex-start;
	padding: 7px 0;
}
footer .keiji {
	padding: 10px 0 0;
}
footer .keiji span {
	color: #EC9A9D;
}
.week .hosoku {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
}
.week table {
    width: 100%;
}
.week th {
    text-align: center;
    width: 50px;
    border-bottom: 1px solid #35515f4d;
    padding: 10px 0;
    vertical-align: middle;
}
.week td {
    text-align: center;
    width: auto;
    font-size: 16px;
    border-bottom: 1px solid #35515f4d;
    padding: 10px 0;
    vertical-align: middle;
}
.week .wide {
	width: 120px;
}
footer .coprright {
	font-size: 12px;
	text-align: center;
	padding-top: 60px;
}
@media screen and (max-width: 1024px) {
	footer {
		margin-bottom: 90px;
	}
	footer figure.gaikan {
		width: 88%;
		margin: 0 auto;		
	}
	footer a.footer-logo .clinic-name {
        font-size: 25px;
    }
	footer .footer-info {
		width: 88%;
		margin: 0 auto;	
	}
	footer .footer-info figure {
		widt: 35px;
	}
	footer .flex.ps-middle {
		flex-direction: unset;
	}
	footer .flex.ps-middle {
		padding: 0;
	}
	footer .coprright {
		padding-top: 0;
	}
	.week {
		width: 88%;
    	margin: 25px auto;
	}
	.week th {
		font-size: 14px;
	}
	.week td {
		font-size: 12px;
	}
	.week .hosoku {
		font-size: 12px;
	}
}






/*SPボトム固定アイコン*/
@media screen and (max-width: 1024px) {
    .bottom_fix {
        width: 100%;
		height: 56px;
        position: fixed;
        bottom: 0;
        display: flex;
        z-index: 20;
    }
    .bottom_fix .map-bottom-icon {
		position: relative;
        width: 33%;
        background: #FFE8E9;
        font-size: 16px;
    }
	.bottom_fix .map-bottom-icon figure {
		width: 19.95px;
		height: auto;
		position: absolute;
        top: 17px;
        left: 50%;
        margin-left: -30px;
	}
	.bottom_fix .map-bottom-icon span {
		position: absolute;
		top: 15px;
		left: 50%;
	}
    .bottom_fix .tel-bottom-icon {
		position: relative;
        width: 33%;
        background: #F1DBDB;
        font-size: 16px;
    }
	.bottom_fix .tel-bottom-icon figure {
		width: 19px;
		height: auto;
		position: absolute;
		top: 15px;
		left: 50%;
        margin-left: -40px;
	}
	.bottom_fix .tel-bottom-icon span {
		position: absolute;
        top: 15px;
        left: 50%;
		margin-left: -14px;
	}
    .bottom_fix .parking-bottom-icon {
		position: relative;
        width: 33%;
        background: #DFBDBE;
        font-size: 16px;
    }
	.bottom_fix .parking-bottom-icon figure {
		width: 30.4px;
		height: auto;
		position: absolute;
        top: 17px;
        left: 50%;
		margin-left: -44px;
	}
	.bottom_fix .parking-bottom-icon span {
		position: absolute;
		top: 15px;
		left: 50%;
		margin-left: -5px;
	}
}
@media screen and (max-width: 375px) {
	.sp-navi__wrap {
        padding: 50px 20px 30px 20px;
        margin-bottom: 0;
    }
	.sp-navi__link {
        padding: 10px 20px;
    }
	.sp-navi__block {
        padding: 10px 0;
    }
}



/*　医院紹介
-------------------------------------------　*/
.page-mv {
    height: 20vw;
    position: relative;
    top: 70px;
}
.page-mv__wrap {
    height: 100%;
}
.page-mv__title-block {
    position: relative;
    height: 100%;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.page-mv__title {
    font-size: 46px;
	margin-top: 5em;
}
.page-mv__title span.EN {
	display: block;
    font-size: 16px;
	color: #EC9A9D;
}
@media screen and (max-width: 720px) {
    .page-mv {
        height: 30vw;
        top: 20px;
    }
    .page-mv__title {
        font-size: 30px;
    }
}
@media screen and (min-width:701px) and ( max-width:1024px) {
	.page-mv {
        height: 20vw;
        top: 0;
	}
	.page-mv__title {
		font-size: 46px;
		margin-top: 5em;
	}
}
@media screen and (min-width:1025px) and ( max-width:1439px) {
	.page-mv__title {
		margin-top: 4em;
	}
}
@media screen and (min-width: 2560px) {
	.page-mv__title {
		margin-top: 8em;
	}
}

.right-layout1200 {
	max-width: 1200px;
	width: 100%;
	float: right;
}
@media screen and (min-width:1025px) and ( max-width:1439px) {
	.right-layout1200 {
		max-width: 950px;
		width: 100%;
		float: right;
	}
}


.type-01 {
	margin-top: 10em;
	z-index: 0;
	position: relative;
}
.type-01 figure.shinsatsu {
	width: 670px;
	height: auto;
}
.type-01 p.big-txt {
	font-size: 26px;
	line-height: 1.5;
	padding-bottom: 15px;
}
.type-01 p.txt {
	font-size: 16px;
	padding: 10px 0;
}

.sub-navi {
    position: relative;
    top: 90px;
}
.sub-navi div {
    margin-bottom: 5px;
}
.sub-navi figure.down-arrow {
	width: 20px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
}
@media screen and (max-width: 1024px) {
	.type-01 {
		width: 88%;
		margin: 10em auto;
	}
	.type-01 figure.shinsatsu {
		width: 100%;	
        margin: 5.5vw 0 10px;
	}
	.type-01 p.big-txt {
		font-size: 20px;
		text-align: center;
		padding: 10px 0;
	}
	.type-01 p.txt {
		font-size: 14px;
		text-align: justify;
	}
}
@media screen and (min-width:1025px) and ( max-width:1439px) {
	.type-01 figure.shinsatsu {
		width: 448px;
	}
	.type-01 {
		margin-top: 8em;
	}
	.sub-navi {
		font-size: 14px;
	}
}


.type-02 {
	margin-top: 5em;
	z-index: 0;
	position: relative;
}
.type-02 .title-h2 {
	padding-bottom: 50px;
}
.type-02 p.big-txt {
	font-size: 24px;
	line-height: 1.5;
	padding-bottom: 15px;
}
.type-02 p.big-txt span.post {
	font-size: 16px;
	display: block;
}
.type-02 p.txt {
	font-size: 15px;
	padding: 10px 0;
}
.type-02 figure.doctor {
	width: 500px;
	height: auto;
}
.wh-bg {
    border-radius: 10px;
    padding: 40px;
    background: #fff;
	box-shadow: 0px 5px 15px 0px #ec9a9d42;
}
.type-02 .career {
	width: 520px;
	margin-top: 50px;
}
.type-02 .career.edit {
	width: 820px;
}
.type-02 .career p.title {
	font-size: 20px;
	padding-top: 3px;
}
.type-02 .career p.txt {
	font-size: 14px;
}
@media screen and (max-width: 1024px) {
	.type-02 {
		width: 88%;
		margin: 4em auto 0;
	}
	.wh-bg {
		padding: 20px;
	}
	.type-02 .title-h2 {
		padding-bottom: 25px;
		margin-top: 0;
	}
	.type-02 p.big-txt {
		font-size: 19px;
		text-align: center;
		padding: 10px 0;
	}
	.type-02 p.big-txt span.post {
		font-size: 14px;
	}
	.type-02 p.txt {
		font-size: 13px;
		text-align: justify;
	}
	.type-02 figure.doctor {
		width: 100%;
		margin: 0 0 10px;
	}
	.type-02 .career {
		margin-top: 15px;
		width: 100%;
	}
	.type-02 .career.edit {
		width: 100%;
	}
	.type-02 .career p.title {
		font-size: 17px;
	}
	.type-02 .career p.txt {
		font-size: 13px;
		padding: 0;
	}
	.type-02 .wrap1400 {
        margin-bottom: 30px;
    }
}
@media screen and (min-width:1025px) and ( max-width:1439px) {
	.type-02 figure.doctor {
		width: 450px;
	}
}


.type-03 {
	margin-top: 5em;
	z-index: 0;
	position: relative;
}
.type-03.top {
    margin-top: 1.5em;
}
.type-03 .right-layout1200 {
	position: relative;
	padding-top: 5em;
}
.type-03 .title-h2 {
	margin-top: 0;
}
.type-03 dl {
    width: 340px;
    font-size: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 40px;
}
.type-03 dl dt {
	width: 25%;
}
.type-03 dl dd {
	width: 70%;
}
.type-03 figure.plants {
	width: 520px;
	height: auto;
}
.type-03 .week {
	position: absolute;
    bottom: 0;
    left: 38%;
    background: #fff;
    padding: 20px 25px 25px;
    border-radius: 10px;
	box-shadow: 0px 5px 15px 0px #ec9a9d42;
}
@media screen and (max-width: 1024px) {
	.type-03 {
        width: 84%;
        margin: 9em auto 0;
    }
    .type-03.top {
        margin: 6em auto 0;
    }
	.type-03 .title-h2 {
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
    }
	.type-03 figure.plants {
		width: 100%;
	}
	.type-03 dl {
		font-size: 14px;
		justify-content: flex-start;
        margin-top: 20px;
	}
    .type-03 .flex.sp_reverse {
        margin-top: -50px;
    }
}
@media screen and (max-width: 720px) {
	.type-03 .week {
		left: 0;
		bottom: -17em;
        width: 85%;
	}
}
@media screen and (min-width:701px) and ( max-width:1024px) {
    .type-03 {
        margin: 10em auto 0;
    }
    .type-03 .week {
        left: 0;
        bottom: -17em;
        width: fit-content;
    }
	.week table {
		width: fit-content;
	}	
}


.type-04 {
	margin-top: 5em;
	z-index: 0;
	position: relative;
}
.type-04 .title-h2 {
    padding-bottom: 50px;
}
.type-04 figure.parking {
	position: relative;
    right: -15px;
}
.type-04 p.access-way {
	font-size: 16px;
	padding-bottom: 30px;
}
.type-04 p.access-way span.way-name {
	display: block;
	font-size: 20px
}
.type-04 .flex {
	margin-top: 30px;
}
@media screen and (max-width: 720px) {
	.type-04 {
        width: 88%;
        margin: 6em auto 0;
        padding-top: 220px;
    }
}
@media screen and (max-width: 1024px) {
	.type-04 .title-h2 {
        padding-bottom: 25px;
        margin-top: 0;
    }
	.type-04 figure.parking {
		position: unset;
		right: 0;
	}
	.type-04 p.access-way {
		font-size: 14px;
        padding-bottom: 20px;
	}
	.type-04 p.access-way span.way-name {
		font-size: 18px
	}
	.type-04 .flex {
		margin-top: 20px;
	}
}
@media screen and (min-width:701px) and ( max-width:1024px) {
	.type-04 {
        width: 88%;
        margin: 6em auto 0;
        padding-top: 25vw;
    }
}


.type-05 {
	margin-top: 3em;
	z-index: 0;
	position: relative;
}
.type-05 figure {
	width: 428px;
	height: auto;
}
.type-05 figure.center-img {
	margin-top: 80px;
}
@media screen and (max-width: 1024px) {
	.type-05 {
        width: 88%;
        margin: 1em auto 0;
    }
	.type-05 .flex {
		flex-wrap: wrap;
		flex-direction: unset;
		gap: 1em;
        justify-content: center;
	}
	.type-05 .flex div {
		width: 47%;
	}
	.type-05 figure {
		width: 100%;
	}
	.type-05 figure.center-img {
		margin-top: 0;
	}
}
@media screen and (min-width:1025px) and ( max-width:1439px) {
	.type-05 figure {
		width: 100%;
	}
}


.type-06 {
	margin-top: 10em;
	z-index: 0;
	position: relative;
}
.type-06 .big-txt {
	font-size: 30px;
    padding-bottom: 10px;
}
.type-06 .right-layout1200 {
	margin-top: -90px;
}
.type-06 .wh-bg {
    padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
	.type-06 {
		width: 88%;
		margin: 40vw auto 0;
	}
	.type-06 .wh-bg {
		padding-bottom: 35px;
	}
	.type-06 .big-txt {
		font-size: 20px;
		text-align: center;
	}
	.type-06 .txt {
		font-size: 14px;
		text-align: justify;
	}
}
@media screen and (max-width: 720px) {
	.type-06 .right-layout1200 {
		margin-top: 0;
	}
}
@media screen and (min-width:701px) and ( max-width:1024px) {
	.type-06 .right-layout1200 {
		margin-top: 4vw;
	}
    .type-06 {
		margin: 20vw auto 0;
	}
}
@media screen and (min-width:1025px) and ( max-width:1439px) {
	.type-06 {
		margin-top: 8em;
	}
}


/* 診療案内
　内科 */
figure.naika-img {
	width: 670px;
	height: auto;
}
.information-h2 {
	margin-top: 0;
	padding-bottom: 10px !important;
}
a.tel-num.common.information.cabin {
	margin-top: 20px;
}
@media screen and (max-width: 1024px) {
	figure.naika-img {
		width: 100%;
        margin-bottom: 10px;
	}
	.information-h2 {
		margin-top: 20px !important;
        margin-bottom: 10px;
	}
	a.tel-num.common.information.cabin {
		text-align: center;
	}
}
@media screen and (min-width:1025px) and ( max-width:1439px) {
	figure.naika-img {
		width: 500px;
		height: auto;
	}
}


/* 各種検査 */
.tests-sub-title {
	font-size: 18px;
}
.right-layout1200.tests {
	margin-top: -30px;
}
.tests-h2 {
	margin-top: 0;
	margin-bottom: 0;
	padding-bottom: 10px;
}
@media screen and (max-width: 1024px) {
	.tests-sub-title {
		font-size: 14px;
		display: block;
	}
	.tests-h2 {
		margin-top: 10vw;
		padding-bottom: 0;
	}
}