@charset "utf-8";
/* CSS Document */

* {
	line-height: 1;
}

html {
	scroll-padding-top:0px;
	scroll-behavior: smooth;
}

img {
    border: 0;
    vertical-align: top;
	object-fit: cover;
}


/*clearfix*/
.clearfix:after{
	content: " ";
	display: block;
	visibility: hidden;
	clear: both;
	height: 0.1px;
	font-size: 0.1em;
	line-height: 0;
}
* html .clearfix{
	display: inline-block;
}
/* no ie mac \*/
* html .clearfix{
	height: 1%;
}
.clearfix{
	display: block;
}
.clearfix{
  overflow:hidden;
}
/* Hides from IE-mac \*/
* html .clearfix{
  height:1%;
	overflow-x : hidden;
}

* {
	box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
word-wrap: break-word;
}

/*body*/

body {
width: 100%;
	-webkit-text-size-adjust: 100%;
	}


li {
	list-style-type: none;
}

a {
	text-decoration: none;
	transition: .5s;
}

a:hover {
	opacity: 0.75;
	transition: .5s;
}

/* basefont */
:root {
  --base-font: "Noto Sans JP", sans-serif;
  --title-font: "Zen Maru Gothic", sans-serif;
  --title-font2: "M PLUS Rounded 1c", sans-serif;
  --subtitle-font: "Josefin Sans", sans-serif;
  --number-font: "Roboto", sans-serif;
	
  --base-font-size: 16px;
	
  --color-base: #000;
  --color-main: #FFAFA1;
  --color-sub: #8ED272;
  --color-sub2: #ABD05F;
	--color-back1: #F19A94;
}


.contents-box {
	font-family: var(--base-font);
font-weight: 400;
	clear: both;
	margin-right: auto;
	margin-left: auto;
	font-size: var(--base-font-size);
	color : var(--color-base);
	line-height: 1;
}

.contents-box p {
	font-family: var(--base-font);
font-weight: 400;
	font-size: var(--base-font-size);
	color : var(--color-base);
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.contents-box p br.sp-view {
	display: none;
}

.contents-box a {
	color : var(--color-base);
	font-weight: 400;
}

.contents-box p a {
	color : var(--color-base);
	font-weight: 400;
}


/* animation_box */

.animation_box {
  transition: 1s ease;
	opacity: 0;
	transition-delay: .5s;
	transform: translateY(0px);
}

.animation_box-left {
	transform: translateX(-100px);
}

.animation_box-right {
	transform: translateX(100px);
}

.animation_box2 {
	transition-delay: 1s;
}

.animation_box3 {
	transition-delay: 1.5s;
}

.animation_box4 {
	transition-delay: 2s;
}

.animation_box.effect {
	opacity: 1;
	transform: translate(0px);
}



/*header*/

.header-wrap {
	z-index: 9999;
	width: 100%;
position: fixed;
left: 0px;
top: 0px;
}

.header {
	width: 100%;
	display: flex;
  justify-content: space-between;
	position: relative;
}

.header .header-left a {
	width: 420px;
	height: 110px;
	text-align: center;
	background-color: var(--color-main);
	transition: all 0.5s ease;
	display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
	border-radius: 0px 0px 60px 0px;
}

.hidden .header .header-left a {
	height: 180px;
	transition: all 0.5s ease;
}

.header .header-left img {
	height: 60px;
	width: auto;
}

.header .header-right {
	display: flex;
  justify-content: flex-end;
flex-wrap: wrap;
	gap:0px 40px;
}


/*メニュー部分*/
	nav{
		display: none;
		position: absolute;
		top:0;
		width: 100%;
		height: 100vh;
		left: 0;
		overflow: auto;
		background-color: #FFF;
        background-image: url("../../top/images/back01.svg");
background-position: center top -30px;
background-repeat: no-repeat;
background-size: 110% auto;
	}

@media screen and (min-width: 1800px) {
	nav {
background-size: auto 1320px;
}
}


	nav .box-menu {
		width: 100%;
		height: 100%;
		display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
	}

nav .box-menu > h2 {
		position: absolute;
left: 0px;
top: 0px;
	text-align: center;
    background-color: var(--color-main);
    display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
    
    width: 420px;
	height: 110px;
	border-radius: 0px 0px 60px 0px;
}

nav .box-menu > h2 img {
	height: 60px;
	width: auto;
}	

/*開閉ボタン*/
	#nav_toggle{
		display: inline-block;
		vertical-align: top;
		float: right;
		width: 70px;
		height: 70px;
		position: relative;
		top: 10px;
		right: 15px;
		z-index: 10000000000;
		background-color: #abd05f;
		padding: 24px 15px;
		margin-right: 0px;
		margin-top: 0px;
		border-radius: 8px;
		cursor: pointer;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 1px;
		background: #FFF;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:0px;
	}
	#nav_toggle span:nth-child(2){
		top:10px;
	}
	#nav_toggle span:nth-child(3){
		top:20px;
	}
	
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 12px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 12px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
		}


/*main-img*/
 
.main-img {
	width: 100%;
	position: relative;
}

.main-img::before {
	content: "";
	position: absolute;
left: 2%;
top: 0px;
	background-image: url("../images/copy.svg");
background-position: left center;
background-repeat: no-repeat;
	background-size: auto 200px;
	width: 20px;
	height: 100%;
}

.main-img .box-img {
	width: 90%;
	position: relative;
}

.main-img img {
	width: 100%;
height: auto;
	min-height: 440px;
	max-height: 500px;
	border-radius: 60px;
}

.title-box {
	position: absolute;
left: 0px;
bottom: 50px;
	width: 100%;
	padding-left: 5%;
}

.title-box h2, .title-box h3 {
	font-family: var(--title-font);
color: var(--color-sub);
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0.15em;
	mix-blend-mode: multiply;
}

.title-box h2 {
	font-size: 4.8vw;
}

.title-box h3 {
	font-size: 1.6vw;
	padding-top: 15px;
}


/* contents */

.contents {
	width: 100%;
	padding-top: 130px;
	background-image: url("../images/back-contents.svg");
background-position: center top -30px;
background-repeat: no-repeat;
background-size: 110% auto;
}

@media screen and (min-width: 1800px) {
	.contents {
background-size: auto 1000px;
}
}

.maincontents-inner {
	width: 100%;
	padding-top: 100px;
}

.maincontents-inner section:not(:last-child) {
	margin-bottom: 80px;
}

.maincontents-inner section > div:not(:last-child) {
	margin-bottom: 80px;
}


/* lay */

.lay img {
	width: 100%;
height: auto;
}

.lay p {
    font-family: var(--title-font2);
	line-height: 2;
	letter-spacing: 0.05em;
	font-weight: 400;
}

.lay1000 {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.lay1100 {
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

.lay1170 {
	width: 1170px;
	margin-left: auto;
	margin-right: auto;
}

/* midashi-box */

.maincontents-inner section > div.midashi-box, .midashi-box {
	width: 100%;
	margin-bottom: 50px;
	position: relative;
	text-align: center;
	padding-top: 95px;
}

.midashi-box::before {
	content: "";
	position: absolute;
left: 0px;
top: 0px;
	background-image: url("../images/icon-title.svg");
background-position: center top;
background-repeat: no-repeat;
	background-size: auto 100%;
	width: 100%;
	height: 80px;
}

.midashi-box h2 {
	font-family: var(--number-font);
	color: var(--color-main);
	font-size: 20px;
line-height: 0.9;
letter-spacing: 0.1em;
font-weight: 500;
	margin-bottom: 15px;
}

.midashi-box h3 {
	font-family: var(--title-font);
	font-size: 46px;
	line-height: 1.2;
letter-spacing: 0.15em;
	font-weight: 400;
	display: flex;
    align-items: center;
}

.midashi-box h3::before, .midashi-box h3::after {
	content: "";
	background-image: url("../images/line-title-pc.svg");
background-repeat: repeat-x;
	background-size: auto 100%;
    height: 14px;
    flex-grow: 1;
}

.midashi-box h3::before {
	background-position: right center;
	margin-right: 70px;
}

.midashi-box h3::after {
	background-position: left center;
	margin-left: 50px;
}

.midashi02 {
	font-family: var(--title-font2);
	font-size: 28px;
color: #FFF;
line-height: 1.2;
letter-spacing: 0.1em;
font-weight: 400;
	background-color: var(--color-main);
	padding: 8px 20px;
	border-radius: 60px;
	margin-bottom: 30px;
    text-align: center;
}

/* layout-contents01 */

.layout-contents01 {
	border-style : solid;
border-color : var(--color-sub);
border-width : 3px;
	border-radius: 45px;
	text-align: center;
	padding: 0px 60px 50px;
	background-color: #FFF;
}

.layout-contents01 h3 {
	font-family: var(--title-font2);
	font-weight: 400;
	font-size: 28px;
color: #FFF;
line-height: 1.2;
letter-spacing: 0.2em;
	text-align: center;
	background-color: var(--color-sub);
	min-width: 50%;
	padding: 20px;
	border-radius: 0px 0px 20px 20px;
	display: inline-block;
	margin-bottom: 40px;
}


/* layout-contents02 */

.layout-contents02 {
    padding-top: 30px;
}

.layout-contents02 .box {
    position: relative;
    border-style : solid;
border-color : var(--color-main);
border-width : 2px;
    border-radius: 30px;
    padding: 60px 70px 40px;
}

.layout-contents02 .box:not(:last-child) {
    margin-bottom: 80px;
}

.layout-contents02 .box-title {
    position: absolute;
left: 0px;
top: 0px;
    width: 100%;
    text-align: center;
    margin-top: -30px;
}

.layout-contents02 h4 {
    font-family: var(--title-font2);
    font-size: 30px;
color: #FFF;
line-height: 1.2;
    font-weight: 400;
letter-spacing: 0.1em;
    background-color: var(--color-sub);
    display: inline-block;
    padding: 10px 50px;
    border-radius: 60px;
}



/* contents-treatmentmenu */

.contents-treatmentmenu {
	text-align: center;
	padding: 100px 0px;
}

.contents-treatmentmenu .box-inner, .contents-treatmentmenu .box-inner2 {
	width: 1240px;
	display: flex;
  justify-content: center;
flex-wrap: wrap;
	gap:20px 15px;
}

.contents-treatmentmenu .box-inner2 {
	padding-top: 60px;
}

.contents-treatmentmenu .box {
	width: 230px;
    border-radius: 12px;
    overflow: hidden;
}

.contents-treatmentmenu .box a {
    height: 80px;
    display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
    flex-direction: column-reverse;
}


@media screen and (min-width: 768px) {

.contents-treatmentmenu .box:nth-child(odd) a {
background-color : var(--color-main);
}

.contents-treatmentmenu .box:nth-child(even) a {
background-color : var(--color-sub);
}
    
}

.contents-treatmentmenu .box-inner2 .box a {
background-color: #716F5F;
}

.contents-treatmentmenu h2, .contents-treatmentmenu h4, .contents-treatmentmenu h5 {
	font-family: var(--title-font);
line-height: 1.2;
	font-weight: 400;
}

.contents-treatmentmenu h2 {
	font-size: 42px;
letter-spacing: 0.3em;
	margin-bottom: 40px;
    color: #716F5F;
}

.contents-treatmentmenu h4 {
    font-family: var(--number-font);
color: #FFF;
	font-size: 13px;
letter-spacing: 0.05em;
    line-height: 0.8;
}

.contents-treatmentmenu h5 {
/*    color: #FFF;*/
    color: #534741;
	font-size: 22px;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
}

.contents-treatmentmenu .box-inner2 h5 {
    color: #FFF;
}



/*pagetop_btn*/

.pagetop_btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 15px;
    z-index: 100;
}

.pagetop_btn a {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

.pagetop_btn a:hover {
    opacity: 0.75;
}

.pagetop_btn img {
   height: 65px;
	width: auto;
}

/*pagetop_btn2*/

.pagetop_btn2 {
    position: fixed;
    top: 300px;
    right: 0px;
    z-index: 100;
}

.pagetop_btn2 img {
   height: 220px;
	width: auto;
}

/*pagetop_btn3*/

.pagetop_btn4 {
    position: fixed;
    top: 530px;
    right: 0px;
    z-index: 100;
}

.pagetop_btn4 img {
   height: 190px;
	width: auto;
}

/*footer-link*/

.footer-link {
	width: 100%;
	text-align: center;
	background-color: #FFF;
	position: fixed;
	left: 0px;
	bottom: 0px;
	display: none;
}

.footer-link ul {
	display: flex;
  justify-content: center;
align-items: center;
}

.footer-link ul li {
    width:42.7%;
}

.footer-link ul li:last-child {
	width: 14.8%;
}

.footer-link ul li img {
	width: auto;
height: 55px;
}

.footer-link ul li a {
	display: block;
}

.footer-link ul li:nth-child(1) a {
	background-color: var(--color-sub2);
}

.footer-link ul li:nth-child(2) a {
	background-color: var(--color-back1);
}

.footer-link ul li:nth-child(3) a {
	background-color: #716F5F;
}

/* box-time */

.box-time {
	width: 660px;
	background : rgba(253, 243, 241, 0.6);
	border-radius: 30px;
	padding: 45px 50px 30px;
}

.box-time img {
	width: 100%;
height: auto;
}

.box-time .box-text {
	padding-top: 20px;
	text-align: right;
}

.box-time p {
	font-size: 14px;
	color: var(--color-sub);
	line-height: 1.8;
}

.box-time p:nth-child(2) {
	color: #FF7E68;
}



/*footer*/

footer {
	width: 100%;
	text-align: center;
    border-top-style : solid;
border-color : rgba(255, 175, 161, 0.2);
border-width : 20px;
}

/*footer-guide*/

.footer-guide {
	display: flex;
  justify-content: space-between;
flex-wrap: wrap;
	align-items: center;
	padding: 40px 0px;
}

.footer-guide h2 {
	margin-bottom: 30px;
}

.footer-guide h2 img {
	height: 180px;
	width: auto;
}

.footer-guide h3, .footer-guide h3 a {
	font-family: var(--title-font2);
	line-height: 1.2;
	font-weight: 400;
	font-size: 45px;
	color: var(--color-sub);
}

.footer-guide h3 {
	display: inline-block;
	position: relative;
	padding-top: 35px;
	padding-left: 30px;
}

.footer-guide h3::before {
	content: "";
	position: absolute;
left: 0px;
bottom: 8px;
	background-image: url("../images/tel-footer.svg");
background-position: left bottom;
background-repeat: no-repeat;
	background-size: auto 100%;
	width: 26px;
	height: 32px;
}

.footer-guide h3::after {
	content: "お気軽にご相談ください";
	position: absolute;
left: 0px;
top: 0px;
	display: block;
	width: 100%;
	font-size: 20px;
line-height: 1.2;
letter-spacing: 0.2em;
}

.footer-guide h6 {
	padding-top: 12px;
}


.footer-sns {
    display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
    padding-top: 20px;
}

.footer-sns div {
    position: relative;
    padding-left: 150px;
}

.footer-sns div::before {
    content: "";
	position: absolute;
left: 0px;
top: 0px;
	background-image: url("../images/text-sns.svg");
background-position: left center;
background-repeat: no-repeat;
	background-size: auto 20px;
	width: 140px;
	height: 100%;
}

.footer-sns div img {
    width: 50px;
    height: auto;
    border-radius: 50%;
}

/* footer-map */

.footer-map {
	width: 100%;
	text-align: center;
}

.footer-map .box-text {
	background-color: var(--color-sub);
	padding: 20px 0px;
	display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
	gap:0px 40px;
}

.footer-map p {
color: #FFF;
line-height: 1.2;
font-weight: 400;
	padding: 10px 0px;
	padding-left: 40px;
	border-left-style : solid;
border-color : #FFF;
border-width : 1px;
}

.footer-map .map-box iframe {
	width: 100%;
	height: 450px;
}


/*footer*/

.footer p {
	font-size: 12px;
color: #666666;
line-height: 1.2;
font-weight: normal;
	padding: 30px 0px;
}


/**
 * for SmartPhone
 */
@media screen and (min-width: 767px) {
	
	body {
	min-width: 1280px;
	}
	
a[href^="tel:"] {
    pointer-events: none;
}

#header .sp-view {
	display: none;
}
	

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

/* basefont */
:root {
  --base-font-size: 14px;
}

.contents-box p br.sp-view {
	display: inline-block;
}


/*header*/
	
.header .header-left a {
	width: 250px;
	height: 65px;
	border-radius: 0px 0px 30px 0px;
}

.hidden .header .header-left a {
	height: 65px;
}

.header .header-left img {
	height: 40px;
}

.header .yoyaku {
		display: block;
	}	
	
.header .yoyaku {
		display: block;
	}	
	
.header .yoyaku img {
		width: 115px;
	height: auto;
	}		
    
    nav {
        background-size: cover;
    }

	
/*開閉ボタン*/
	#nav_toggle{
		width: 55px;
		height: 55px;
		padding: 14px 10px 0px;
		margin-right: 0px;
		margin-top: 0px;
	}
	#nav_toggle span:nth-child(1){
		top:4px;
	}
	#nav_toggle span:nth-child(2){
		top:14px;
	}
	#nav_toggle span:nth-child(3){
		top:24px;
	}

	
	.nav-pc {
		display: none;
	}
	
nav .box-menu {
	justify-content: center;
	padding-top: 50px;
	}
	
    
nav .box-menu > h2 {
    width: 250px;
	height: 65px;
	border-radius: 0px 0px 30px 0px;
	}
    
nav .box-menu > h2 img{
	height: 40px;
	}
    
    
/*main-img*/
 
.main-img::before {
	background-size: auto 150px;
}
	
.main-img .box-img {
	width: 85%;
}

.main-img img {
	border-radius: 30px;
	height: auto;
	min-height: 180px;
}

.title-box {
	position: static;
	width: 100%;
	text-align: center;
	padding-left: 0px;
	padding-top: 20px;
}

.title-box h2 {
	font-size: 28px;
}

.title-box h3 {
	font-size: 12px;
	padding-top: 12px;
}


/* contents */

.contents {
	width: 100%;
	padding-top: 70px;
background-position: center top -10px;
background-size: auto 400px;
}

.maincontents-inner {
	width: 100%;
	padding-top: 40px;
}
	
.maincontents-inner section:not(:last-child) {
	margin-bottom: 60px;
}
    
.maincontents-inner section > div:not(:last-child) {
	margin-bottom: 50px;
}


/* lay */

.lay1000, .lay1100, .lay1170 {
	width: 88%;
}


/* midashi-box */

.maincontents-inner section > div.midashi-box, .midashi-box {
	margin-bottom: 40px;
	padding-top: 65px;
}

.midashi-box::before {
	height: 50px;
}

.midashi-box h2 {
	font-size: 16px;
	margin-bottom: 12px;
}

.midashi-box h3 {
	font-size: 28px;
letter-spacing: 0.1em;
}

.midashi-box h3::before, .midashi-box h3::after {
    height: 12px;
}

.midashi-box h3::before {
	margin-right: 35px;
}

.midashi-box h3::after {
	margin-left: 25px;
}

.midashi02 {
	font-size: 18px;
line-height: 1.4;
letter-spacing: 0.05em;
	margin-bottom: 20px;
}
	
	
/* layout-contents01 */

.layout-contents01 {
	border-radius: 25px;
	padding: 0px 6% 30px;
}

.layout-contents01 h3 {
	font-size: 17px;
letter-spacing: 0.05em;
	min-width: 80%;
	padding: 15px;
	border-radius: 0px 0px 15px 15px;
	margin-bottom: 27px;
}
	
.layout-contents01 p {
	text-align: left;
}
    
    
/* layout-contents02 */

.layout-contents02 {
    padding-top: 20px;
}

.layout-contents02 .box {
    border-radius: 25px;
    padding: 45px 8% 30px;
}

.layout-contents02 .box:not(:last-child) {
    margin-bottom: 60px;
}

.layout-contents02 .box-title {
    margin-top: -20px;
}
    
.layout-contents02 .box-title2 {
    margin-top: -35px;
}

.layout-contents02 h4 {
    font-size: 19px;
letter-spacing: 0.05em;
    padding: 12px 25px;
}



	
/* contents-treatmentmenu */
	
.contents-treatmentmenu {
	padding: 60px 0px;
}

.contents-treatmentmenu .box-inner, .contents-treatmentmenu .box-inner2 {
	width: 88%;
	gap:12px 4%;
}
	
nav .contents-treatmentmenu .box-inner, nav .contents-treatmentmenu .box-inner2 {
	width: 88%;
}

.contents-treatmentmenu .box-inner2 {
	padding: 12px 0px 40px;
}

.contents-treatmentmenu .box {
	width: 48%;
}

.contents-treatmentmenu .box a {
    height: 60px;
}
	
.contents-treatmentmenu h2 {
	font-size: 30px;
	margin-bottom: 25px;
}

.contents-treatmentmenu h4 {
	font-size: 12px;
}

.contents-treatmentmenu .box-inner .box:nth-child(4n+1), .contents-treatmentmenu .box-inner .box:nth-child(4n) {
background-color : var(--color-main);
}

.contents-treatmentmenu .box-inner .box:nth-child(4n+2), .contents-treatmentmenu .box-inner .box:nth-child(4n+3) {
background-color : var(--color-sub);
}
    

.contents-treatmentmenu h5 {
	font-size: 16px;
    margin-bottom: 5px;
}
	
/*btn-top*/
	
.pagetop_btn {
    bottom: 10%;
    right: 10px;
}

.pagetop_btn img {
    height: 50px;
}

/*footer-link*/

.footer-link {
	display: block;
}

/* box-time */

.box-time {
	width: 100%;
	border-radius: 0px;
	padding: 25px 20px;
}

.box-time .box-text {
	text-align: center;
}
	
.box-time p {
	font-size: 14px;
}

/*foter*/

footer {
	padding-bottom: 15%;
}

/*footer-guide*/

.footer-guide {
	width: 100%;
  justify-content: center;
	padding: 40px 0px;
	gap:40px 0px;
	flex-direction: column;
}
	
.logo-footer {
	width: 88%;
	margin: 0px auto;
}

.footer-guide h2 {
	margin-bottom: 30px;
}

.footer-guide h2 img {
	height: 100px;
}

.footer-guide h3, .footer-guide h3 a {
	font-size: 35px;
}

.footer-guide h3 {
	padding-top: 30px;
	padding-left: 27px;
}

.footer-guide h3::before {
	height: 25px;
}

.footer-guide h3::after {
	font-size: 18px;
}


/* footer-map */

.footer-map .box-text {
	padding: 20px 0px;
	gap:0px 20px;
	flex-direction: column;
}

.footer-map p {
	padding: 10px 0px 0px;
	border-left-style : none;
	font-size: 14px;
}

.footer-map .map-box iframe {
	height: 200px;
}
	
/*footer*/

.footer p {
	font-size: 10px;
	padding: 20px 0px;
}

      
}
