@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html {
	font-size: 62.5%;
}
body, table, input, textarea, select, option {
	font-family: 'noto-sans-cjk-jp', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.yuMincho {
    font-family: yu-mincho-pr6n, serif;
    font-weight: 400;
    font-style: normal;
}

.tk-copperplate {
    font-weight: 700;
    font-style: normal;
}

img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
a,
a:link {
	color: #4D4D4D;
	text-decoration: none;
	transition: .3s;
}
a:visited {
	color: #4D4D4D;
}
a:hover {
	color: #4D4D4D;
}
a:active {
	color: #4D4D4D;
}
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #4D4D4D;
	font-size: 1.5rem;
	line-height: 1.5;
	font-weight: 300;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
#container {
	text-align: left;
	position: relative;
	overflow: hidden;
}
a[href^="tel:"] {
/*	cursor: default;*/
/*	pointer-events: none;*/
}

a.yoyaku_tel[href^="tel:"]{
	cursor: pointer;
	pointer-events: all;
}

a:hover {
	opacity: 0.7;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
    .menuBox {
        display: none !important;
    }
}
@media all and (max-width: 896px) {
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
	.pc {
		display: none !important;
	}
    body {
        min-width: 320px;
    }
	body.fixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}
}

@media all and (max-width: 897px) {
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 800;
}
#gHeader .hBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 9;
    transition: .6s;
}
#gHeader .logo a:hover {
    opacity: 1;
}
#gHeader h1 {
    min-height: 100px;
    box-sizing: border-box;
    padding: 31px 53px 20px 0;
    text-align: right;
    font-weight: 300;
    font-size: 1.2rem;
    color: white;
    letter-spacing: 0.05em;
    position: relative;
}
#gHeader h1:after {
	width: 511px;  
	height: 100%;
    background: #DCB0CE;
	position: absolute;  
	top: 0;
	right: 0;  
	content: "";
    z-index: -1;
}
#gHeader .hInner {
    transition: .6s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    z-index: 9;
    padding: 15px 25px;
    background-color: white;
    opacity: 0;
    visibility: hidden;
}
#gHeader .hInner .rBox {
    display: flex;
    align-items: center;    
}
#gHeader .hInner .naviUl {
    margin-top: -2px;
    padding-right: 5px;
    display: flex;
}
#gHeader .hInner .naviUl a {
    padding: 0 18px;
    font-weight: 500;
    border-left: 1px solid #F3E2E9;
}
#gHeader .hInner .naviUl li:first-child a {
    border-left: none;
}
#gHeader .hInner .tel a {
    padding: 0 0 4px 24px;
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: #7D7387;
    letter-spacing: 0.06em;
    background: url("../images/common/webp/tel02.webp") no-repeat left center;
    background-size: 19px auto;
}
.no-webp #gHeader .hInner .tel a {
    background-image: url("../images/common/tel02.png");
}
#gHeader.fixd .hBox {
    opacity: 0;
    /*display: none;*/
    visibility: hidden;
    z-index: 9;
}
#gHeader.fixd .hInner {
    opacity: 1;
    visibility: visible;
}

@media all and (max-width: 896px) {
    #gHeader {
        position: absolute;
    }
    #gHeader .hBox .logo {
        width: 212px;
    }
    #gHeader h1 {
        display: none;
    }
	.menu-trigger {
		padding-top: 6px;
		position: fixed;
		width: 60px;
		height: 60px;
		right: 0;
		top: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		box-sizing: border-box;
		background-color: #fff;
        z-index: 900;
	}
	.menu-trigger .menu {
		margin: 0 auto;
		display: block;
		position: relative;
		width: 30px;
		height: 9px;
		-webkit-transition: all .4s;
		-o-transition: all .4s;
		transition: all .4s;
		z-index: 1;
	}
	.menu-trigger span {
		display: inline-block;
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		-webkit-transition: all .4s;
		-o-transition: all .4s;
		transition: all .4s;
		background-color: #7D7387;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 0;
	}
	.menu-trigger span:nth-of-type(2) {
		bottom: 0;
	}
	.menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(4px) rotate(-15deg);
		-ms-transform: translateY(4px) rotate(-15deg);
		transform: translateY(4px) rotate(-15deg);
		height: 1px;
	}
	.menu-trigger.active span:nth-of-type(2) {
		-webkit-transform: translateY(-4px) rotate(15deg);
		-ms-transform: translateY(-4px) rotate(15deg);
		transform: translateY(-4px) rotate(15deg);
		height: 1px;
	}
	.menu-trigger p {
		color: #7D7387;
        letter-spacing: 0.06em;
        font-weight: 500;
		font-size: 1.2rem;
	}
	.menuBox {
        display: none;
        position: fixed;
		right: 0;
		top: 0;
        height: 100%;
		width: 100%;
        z-index: 850;
		overflow-y: auto;
		box-sizing: border-box;
		background-color: #fff;
	}
	.menuBox .inn {
		margin-bottom: 80px;
		padding: 150px 0 80px;
		display: block;
	}
	
	.menuBox .flex{
		margin-top: 0;
	}
	
	.menuBox .navi {
		display: block;
	}
	.menuBox li {
		margin: 0 0 8px;
	}
	.menuBox li a {
		padding: 8px;
		display: block;
		color: #4D4D4D;
        font-weight: 500;
		text-align: center;
	}	
    .menuBox .logo {
        position: absolute;
        top: 17.3px;
        left: 25.3px;
    }
    #gHeader.fixd .hBox {
        display: block !important;
    }
    #gHeader.fixd .hInner {
        display: none !important;
    }
}

#gNavi {
    padding: 39px 0;
    position: relative;
    z-index: 700;
}
#gNavi ul {
    max-width: 1133px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
}
#gNavi li a {
    display: block;
    border-right: 1px solid #F3E2E9;
    line-height: 1;
    font-size: 1.4rem;
    padding: 0 20px;
}
#gNavi li:first-child a {
    padding-left: 0;
}
#gNavi li:last-child a {
    border-right: none;
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
    margin-top: -100px;
    padding: 200px 0 20px;
    background-color: #7D7387;	
}
#gFooter .fLogo {
    margin-bottom: 50px;
    text-align: center;
}
#gFooter .fLogo a:hover {
    opacity: 1;
}
#gFooter .fInner {
    max-width: 900px;
    margin: 0 auto 100px;
    display: flex;
    flex-wrap: wrap;
    color: white;
    justify-content: space-between;
}
#gFooter .fInner .textBox {
    width: 53%;
}
#gFooter p {
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 2;
}
#gFooter .linkP {
    margin-bottom: 35px;
}
#gFooter .linkP a {
    padding-right: 10px;
    color: white;
    font-size: 1.3rem;
    display: inline-block;
    background: url("../images/common/webp/icon01.webp") no-repeat right center;
    background-size: 5px auto;
}
.no-webp #gFooter .linkP a {
    background-image: url("../images/common/icon01.png");
}
#gFooter .txt {
    text-align: right;
    font-size: 1.1rem;
}
#gFooter .fInner .rBox {
    padding-top: 5px;
    margin-right: -34px;
}
#gFooter .naviUl {
    display: flex;
    flex-wrap: wrap;
}
#gFooter .naviUl a:hover {
    opacity: 0.4;
}
#gFooter .naviUl > li {
    width: 115px;
}
#gFooter .naviUl > .liStyle {
    width: 170px;
    margin-left: 10px;
}
#gFooter .naviUl li a {
    font-size: 1.4rem;
    color: #FFFFFF;
    opacity: 0.6;
}
#gFooter .naviUl li ul li ul {
    margin-top: 10px;
}
#gFooter .naviUl li ul li ul li {
    margin-bottom: 5px;
}
#gFooter .naviUl li ul li ul li a {
    font-size: 1.2rem;
	
}
#gFooter .naviUl > li ul li {
    margin-bottom: 12px;
}
#gFooter .linkUl {
    margin-right: 20px;
    display: flex;
    justify-content: flex-end;
}
#gFooter .linkUl li {
    margin-left: 15px;
    padding-left: 17px;
    position: relative;
    line-height: 1;
}

#gFooter .linkUl li a{
	color: #fff;
}

#gFooter .linkUl li:after {
	width: 1px;  
    height: 10px;
    background-color: white;
    opacity: 0.7;
	position: absolute;  
	top: 6px;
	left: 0;  
	content: ""; 
}
#gFooter .linkUl li:first-child:after {
    display: none;
}
#gFooter .linkUl small {
    color: white;
    opacity: 0.7;
    font-size: 1rem;
    letter-spacing: 0.05em;
}
@media all and (max-width: 896px) {
    #gFooter {
        padding: 153px 0 75px;
    }
    #gFooter .fLogo {
        margin-bottom: 35px;
    }
    #gFooter .fInner {
        margin: 0 5px 55px;
        display: block;
    }
    #gFooter .fInner .textBox {
        margin-bottom: 22px;
        width: auto;
    }
    #gFooter p {
        line-height: 2;
        font-size: 1.4rem;
    }
    #gFooter .linkP {
        margin-bottom: 20px;
    }
    #gFooter .fInner .rBox {
        margin: 0;
    }
    #gFooter .naviUl {
        display: block;
    }
    #gFooter .naviUl > li {
        width: auto !important;
    }
    #gFooter .naviUl > li ul li {
        margin: 0;
    }
    #gFooter .naviUl li a {
        padding: 9px 5px;
        text-align: center;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }
    #gFooter .naviUl a:hover {
        opacity: 0.6 !important; 
    }
    #gFooter .naviUl > .liStyle {
        margin: 8px 0 0;
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }
    #gFooter .naviUl > .liStyle a {
        border: none;
        word-break:break-all;
    }
    #gFooter .naviUl li ul li ul {
        margin: 2px 7px 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #gFooter .naviUl li ul li ul li {
        width: 49%;
        margin: 0;
    }
    #gFooter .naviUl li ul li ul li a {
        border: none;
        padding: 5px 0 4px;
    }
    #gFooter .linkUl {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
    }
    #gFooter .linkUl li {
        margin: 0 0 3px;
        padding: 0;
    }
    #gFooter .linkUl li::after {
        display: none;
    }
    .btmBox {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        border-top: 1px solid #fff;
    }
    .btmBox a {
        padding: 13px;
        text-align: center;
        color: white;
        display: block;
        font-size: 1.4rem;
        letter-spacing: 0.1em;
        font-weight: 700;
        background-color: #7D7387;
    }
    .btmBox a span {
        padding-left: 26px;
        display: inline-block;
        background: url("../images/common/webp/tel03.webp") no-repeat left center;
        background-size: 17px auto;
    }
    .no-webp .btmBox a span {
        background-image: url("../images/common/tel03.png");
    }
}


/*------------------------------------------------------------
	mainBox
------------------------------------------------------------*/
.mainBox {
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 20px;
}


@media all and (max-width: 896px) {
}

/*------------------------------------------------------------
	comLink
------------------------------------------------------------*/
.comLink a, a.btn{
    font-weight: 500;
    padding-right: 60px;
    display: inline-block;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: white;
    position: relative;
}
.comLink a:after, a.btn:after {
    transition: .3s;
	width: 50px;  
	height: 30px;
	background: url("../images/common/webp/arrow01.webp") no-repeat center center; 
	background-size: 100% auto;
	position: absolute;  
	top: 50%;
    transform: translateY(-50%);
	right: 0;  
	content: ""; 
}
.no-webp .comLink a:after, .no-webp a.btn: after{
    background-image: url("../images/common/arrow01.png");
}
.comLink02 a, a.btn {
    padding-right: 77px;
    font-size: 1.5rem;
    color: #7D7387;
    font-weight: 700;
}
.comLink02 a:after, a.btn:after{
    width: 66px;
    height: 40px;
    background-image: url("../images/common/webp/arrow02.webp");
}
.no-webp .comLink02 a:after, .no-webp a.btn:after {
    background-image: url("../images/common/arrow02.png");
}
.comLink a:hover, a.btn:hover {
    opacity: 1;
}


@media all and (min-width: 897px) {
    .comLink a:hover:after, a.btn:hover:after {
        opacity: 1;
        background-image: url("../images/common/webp/arrow03.webp");
    }
    .no-webp .comLink a:hover:after, .no-webp a.btn:hover:after{
        background-image: url("../images/common/arrow03.png");
    }
}

@media all and (max-width: 896px) {
    .comLink a {
        font-size: 1.3rem;
    }
    .comLink a::after {
        top: 53%;
    }
    .comLink02 a {
        font-size: 1.4rem;
    }
}


/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
    margin-bottom: 127px;
    text-align: center;
    font-size: 3.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
}
.headLine01 span {
    display: block;
}
.headLine01 .img {
    margin-bottom: 7px;
}
.headLine01 .txtSpan {
    font-weight: 700;
    margin-top: 5px;
    font-size: 1.8rem;
    color: #7D7387;
    letter-spacing: 0.08em;
}
@media all and (max-width: 896px) {
    .headLine01 {
        margin-bottom: 36px;
        font-size: 2.2rem;
    }
    .headLine01 .img img {
        width: auto;
        height: 34px;
    }
    .headLine01 .txtSpan {
        font-size: 1.2rem;
        margin-top: 2px;
    }
}

/*------------------------------------------------------------
	comTableBox
------------------------------------------------------------*/
.comTableBox {
    margin-bottom: 5px;
    padding: 23px 22px 28px 30px;
    border-bottom: 1px solid #FFFFFF;
    border-top: 1px solid #FFFFFF;
}
.comTableBox table {
    width: 100%;
    border-collapse: collapse;
}
.comTableBox table th {
    padding: 5px 0;
    font-weight: 300;
    width: 31.1%;
    text-align: left;
    vertical-align: middle;
    letter-spacing: 0.12em;
}
.comTableBox table th strong {
    font-weight: 700;
}
.comTableBox table td {
    padding: 5px 0;
    text-align: center;
    vertical-align: middle;
}

@media all and (max-width: 896px) {
    .comTableBox table th {
        width: 34%;
        font-size: 1.4rem;
    }
    .comTableBox table td {
        font-size: 1.4rem;
    }
	#gFooter .linkUl li {
	text-align: center;
}
	
	#gFooter .naviUl li ul li ul li a {
	letter-spacing: -.2vw;
}
	
}


/*------------------------------------------------------------
	js-object-fit
------------------------------------------------------------*/
.js-object-fit img {
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media all and (-ms-high-contrast: none) {
    .js-object-fit img {
        opacity: 0;
    }
}
.ie-object-fit {
    position: relative;
    background-size: cover;
    background-position: center center;
}
.ie-object-fit img {
    opacity: 0;
}


@media all and (max-width: 374px) {
    #gFooter .txt {
        font-size: 1rem;
    }
}

@media all and (min-width: 897px) and (max-width: 1200px) {
    #gHeader .hInner .naviUl a {
        padding: 0 0.7vw;
        font-size: 1.4rem;
    }
    #gHeader.fixd .logo {
        width: 140px;
    }
    #gHeader .hInner .tel a {
        font-size: 1.8rem;
    }
}

@media all and (-ms-high-contrast:none){
    .headLine01 .img {
        margin-bottom: 18px;
    }
    .headLine01 .txtSpan {
        margin-top: -10px;
    }
}


/*------------------------------------------------------------
	treatment
------------------------------------------------------------*/

.treament {
    padding: 140px 0 130px;
    background: url("../images/index/webp/bg05.webp") no-repeat center center;
    background-size: cover;
}
.no-webp .treament {
    background-image: url("../images/index/bg05.jpg");
}
.treament .headLine01 {
    margin-bottom: 75px;
}
.treament .inner {
    max-width: 1000px;
    margin: 0 auto 35px;
}
.treament .inner a {
    display: flex;
    flex-wrap: wrap;
    border-radius: 0 50px 0 50px;
    background-color: white;
    position: relative;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}
.treament .inner a:after {
	width: 12px;  
	height: 12px;
    background: url("../images/index/webp/img05.webp") no-repeat;
    background-size: 100% auto;
	position: absolute;  
	bottom: 14px;
	right: 13px;  
	content: ""; 
}
.no-webp .treament .inner a:after {
    background-image: url("../images/index/img05.png");
}
.treament .inner .lBox {
    width: 27%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: #D2E1E6;
    border-radius: 0 0 0 50px;
}
.treament .inner .rBox {
    width: 27%;
}
.treament .inner .rBox img {
    border-radius: 0 50px 0 0;
}
.treament .inner .mBox {
    padding: 20px 48px;
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.treament .inner .mBox > div {
    width: 100%;
}
.treament .inner .mBox p {
    margin-bottom: 15px;
    font-size: 2.2rem;
    font-weight: 700;
    color: #7D7387;
    letter-spacing: 0.1em;
}
.treament .inner .mBox p:last-child {
    margin-bottom: 0;
}
.treament .inner .mBox .ttl {
    margin-bottom: 20px;
    font-size: 2.8rem;
    border-bottom: 2px solid #787D8C;
    border-top: 2px solid #787D8C;
    padding: 10px 5px;
}
.treament .inner .mBox .txt span {
    display: inline-block;
    font-size: 2.4rem;
    color: white;
    letter-spacing: 0.1em;
    background-color: #DCB0CE;
    border-radius: 25px;
    text-align: center;
    min-width: 250px;
    padding: 6px 5px 7px;
    box-sizing: border-box;
}
.treament .inner .lBox p {
    font-size: 1.9rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.1em;
    line-height: 1.32;
    width: 161px;
    position: absolute;
    top: -24px;
    left: -39px;
}
.treament .inner .lBox p:after {
	width: 21px;  
	height: 21px;
    background: url("../images/index/webp/img03.webp") no-repeat;
    background-size: 100% auto;
	position: absolute;  
	bottom: -18px;
	right: 18px;  
	content: ""; 
}
.no-webp .treament .inner .lBox p:after {
    background-image: url("../images/index/img03.png");
}
.treament .inner .lBox p span {
    display: block;
    padding: 20px 10px 20px 30px;
    text-align: left;
    border-radius : 10px;
    background-color: #7D7387;
    box-shadow: -1px 5px 10px rgba(0,0,0,0.1);
}
.treament .inner .lBox .text {
    left: auto;
    top: 17px;
    right: -78px;
    width: 170px;
}
.treament .inner .lBox .text span {
    padding-left: 20px;
}
.treament .inner .lBox .text:after {
    right: auto;
    left: 18px;
    width: 17px;
    height: 17px;
    bottom: -17px;
    background-image: url("../images/index/webp/img04.webp");
}
.no-webp .treament .inner .lBox .text:after {
    background-image: url("../images/index/img04.png");
}
.treamentUl {
    max-width: 1000px;
    margin: 0 auto 52px;
    display: flex;
    flex-wrap: wrap;
}
.treamentUl li {
    width: 22%;
    margin: 0 4% 35px 0;
}
.treamentUl li:nth-child(4n) {
    margin-right: 0;
}
.treamentUl li a {
    padding: 22px 25px 0;
    display: block;
    background-color: white;
    position: relative;
    border-radius: 0 30px 0 30px;
    box-shadow: 0 8px 10px rgba(0,0,0,0.1);
}
.treamentUl li a .bgSpan {
	width: 10px;  
	height: 10px;
    overflow: hidden;
    display: block;
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 1;
}
.treamentUl li a .bgSpan:after {
	width: 10px;  
	height: 10px;
    background-color: #F3E2E9;
	position: absolute;  
	bottom: 0;
	right: 0;
    transform: skewX(-40deg);
    transform-origin: left bottom;
	content: ""; 
}
.treamentUl li p {
    padding: 4px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    border-radius: 15px;
    background-color: #F3E2E9;
}
.treamentUl li .photo {
    margin: 0 -20px;
    height: 167px;
    display: flex;
    align-items: flex-end;
    text-align: center;
    justify-content: center;
}
.treamentUl .liStyle01 p {
    background-color: #D7D2DC;
}
.treamentUl .liStyle02 p {
    background-color: #C6D8E7;
}
.treamentUl .liStyle03 p {
    background-color: #D2E1E6;
}
.treamentUl .liStyle04 p {
    background-color: #EEE6E1;
}
.treamentUl .liStyle05 p {
    background-color: #EFE3E0;
}
.treamentUl .liStyle06 p {
    background-color: #DDE8E2;
}
.treamentUl .liStyle07 p {
    background-color: #F5EAD8;
}
.treamentUl .liStyle01 a .bgSpan:after {
    background-color: #D7D2DC;
}
.treamentUl .liStyle02 a .bgSpan:after {
    background-color: #C6D8E7;
}
.treamentUl .liStyle03 a .bgSpan:after {
    background-color: #D2E1E6;
}
.treamentUl .liStyle04 a .bgSpan:after {
    background-color: #EEE6E1;
}
.treamentUl .liStyle05 a .bgSpan:after {
    background-color: #EFE3E0;
}
.treamentUl .liStyle06 a .bgSpan:after {
    background-color: #DDE8E2;
}
.treamentUl .liStyle07 a .bgSpan:after {
    background-color: #F5EAD8;
}
.treament .comLink {
    margin-right: 35px;
    text-align: right;
}

@media all and (max-width: 896px){
    .treament {
        padding: 60px 5px 70px;
        background-image: url("../images/index/webp/sp_bg02.webp");
    }
    .no-webp .treament {
        background-image: url("../images/index/sp_bg02.jpg");
    }
    .treament .headLine01 {
        margin-bottom: 40px;
    }
    .treament .inner a {
        display: block;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        border-radius: 0 30px 0 30px;
    }
    .treament .inner .lBox {
        padding-top: 36px;
        width: auto;
        border-radius: 0 30px 0 0;
    }
    .treament .inner .lBox img {
        width: 168px;
    }
    .treament .inner .lBox p {
        width: 125px;
        left: 12px;
        top: -23px;
        font-size: 1.5rem;
        line-height: 1.5;
    }
    .treament .inner .lBox p span {
        border-radius: 15px;
        min-height: 71px;
        display: flex;
        align-items: center;
        padding: 5px 5px 5px 18px;
        box-shadow: none;
    }
    .treament .inner .lBox p::after {
        width: 13px;
        height: 16px;
        bottom: -16px;
        right: 20px;
    }
    .treament .inner .lBox .text {
        width: 125px;
        right: -12px;
        top: 37px;
    }
    .treament .inner .lBox .text span {
        padding-left: 12px;
    }
    .treament .inner .lBox .text::after {
        width: 13px;
        height: 16px;
        bottom: -16px;
        left: 20px;
    }
    .treament .inner .mBox {
        padding: 22px 25px 33px;
        display: block;
    }
    .treament .inner .mBox p {
        margin-bottom: 12px;
        font-size: 1.6rem;
    }
    .treament .inner .mBox .ttl {
        margin-bottom: 18px;
        font-size: 1.8rem;
    }
    .treament .inner .mBox .txt span {
        font-size: 1.8rem;
        min-width: 195px;
    }
    .treament .inner .rBox {
        width: auto;
    }
    .treament .inner .rBox img {
        width: 100%;
        border-radius: 0 0 0 30px;
    }
    .treament .inner {
        margin-bottom: 17px;
    }
    .treamentUl {
        margin-bottom: 35px;
        justify-content: space-between;
    }
    .treamentUl li {
        width: 48%;
        margin: 0 0 15px !important;
    }
    .treamentUl li a {
        padding: 15px 13px 0;
        box-shadow: 0 4px 5px rgba(0,0,0,0.1);
    }
    .treamentUl li p {
        font-size: 1.2rem;
        padding: 1px 5px 3px;
    }
    .treamentUl li .photo {
        height: 117px;
    }
    .treamentUl li .photo img {
        width: auto;
        height: 102px;
    }
    .treamentUl li a .bgSpan {
        width: 7px;
        height: 7px;
        bottom: 7px;
        right: 7px;
    }
    .treamentUl li a .bgSpan::after {
        width: 7px;
        height: 7px;
    }
    .treament .comLink {
        margin-right: 0;
    }
    
}