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

* {
	line-height: 1;
}

html {
	scroll-padding-top:70px;
	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: "M PLUS Rounded 1c", sans-serif;
	
  --base-font-size: 16px;
	
  --base-weight: 400;
  --base-weight2: 500;
  --base-weight3: 600;
    
  --color-base: #000;
  --color-main: #60c0bd;
  --color-sub: #3c7d8b;
  --color-sub2: #60c0d5;
  --color-sub3: #534741;
  --color-sub4: #c7b299;
  --color-sub5: #e6c1ad;
  --color-sub6: #ffafa1;
  --color-back1: rgba(96, 192, 189, 0.25);
  --color-back2: #F2F2F2;
  --color-back3: #F4E2D9;
  --color-back4: #F8EEE9;
}


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

.contents-box p {
	font-family: var(--base-font);
font-weight: var(--base-weight);
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: var(--base-weight);
}

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


/* animation_box */

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

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

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

.animation_box-top {
	transform: translateY(100px);
}

.animation_box-bottom {
	transform: translateY(-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, 0px);
}



/*header*/

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

.header {
	width: 100%;
    display: flex;
  justify-content: space-between;
flex-wrap: wrap;
    align-items: center;
}



/*メニュー部分*/
	nav{
		display: none;
		position: absolute;
		top:0;
		width: 100%;
		height: 100vh;
		left: 0;
		overflow: auto;
		background-color: #FFF;
	}
	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;
	width: 100%;
	text-align: center;
}

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%;
    display: flex;
  justify-content: space-between;
flex-wrap: wrap;
    align-items: center;
    text-align: center;
}

.main-img .box-img {
	width: 68%;
}

.main-img img {
    width: 100%;
height: auto;
    min-height: 550px;
    border-radius: 0px 3vw 20vw 0px;
}

@media screen and (max-width: 1280px) {
.main-img img {
	border-radius: 0px 35px 300px 0px;
}
}


.title-box {
    flex: 1;
}

.title-box h2, .title-box h3 {
	font-weight: var(--base-weight);
    letter-spacing: 0.25em;
}

.title-box h2 {
    font-family: var(--sub-font);
    line-height: 1.2;
	font-size: 40px;
    position: relative;
}

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

.title-box h3 {
    font-family: var(--subtitle-font);
    color: var(--color-sub);
    line-height: 0.8;
	font-size: 16px;
	padding-top: 30px;
}


/* contents */

.contents {
	width: 100%;
	padding-top: 120px;
}

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

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


/* lay */

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

.lay p {
	line-height: 1.8;
	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;
}

.lay1160 {
	width: 1160px;
	margin-left: auto;
	margin-right: auto;
}

.lay-85 {
	width: 85%;
    max-width: 1380px;
	margin-left: auto;
	margin-right: auto;
}

/* midashi-box */

.midashi-box {
	width: 100%;
	margin-bottom: 60px;
	position: relative;
	text-align: center;
}

.midashi-box h2 {
	font-family: var(--subtitle-font);
	color: var(--color-base);
	font-size: 60px;
line-height: 0.8;
letter-spacing: 0.15em;
    font-weight: 300;
	margin-bottom: 15px;
}

.midashi-box h3 {
	font-family: var(--title-font);
    font-weight: var(--base-weight);
	font-size: 26px;
	line-height: 1.2;
letter-spacing: 0.2em;
}


.midashi02 {
	font-family: var(--sub-font);
    font-weight: var(--base-weight);
    color: #FFF;
	font-size: 34px;
	line-height: 1.2;
letter-spacing: 0.15em;
    padding: 20px;
    text-align: center;
    background-color: var(--color-sub);
    border-radius: 70px;
    display: inline-block;
    min-width: 960px;
    margin-bottom: 70px;
}



/* layout-contents01 */

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

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

/* contents-treatmentmenu */

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

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

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

.contents-treatmentmenu .box {
	width: 280px;
}

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

.contents-treatmentmenu h2 {
	font-size: 32px;
letter-spacing: 0.3em;
	margin-bottom: 40px;
}

.contents-treatmentmenu h4 {
color: #FFF;
	font-size: 15px;
letter-spacing: 0.1em;
	padding: 35px 0px 10px;
	height: 75px;
	display: flex;
  justify-content: center;
align-items: center;
flex-wrap: wrap;
	position: relative;
	border-radius: 15px;
    background-color : #7cacaf;
}

.contents-treatmentmenu h4::before {
	content: "";
	position: absolute;
left: 0px;
top: 10px;
	width: 100%;
	display: inline-block;
	font-size: 24px;
}

.contents-treatmentmenu .box:nth-child(1) h4::before {
	content: "01";
}

.contents-treatmentmenu .box:nth-child(2) h4::before {
	content: "02";
}

.contents-treatmentmenu h5 {
	font-size: 20px;
	letter-spacing: 0.2em;
	padding-top: 15px;
}



/*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;
}


/*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: 100%;
height: auto;
	max-width: 320px;
}

.footer-link ul li a {
	background-color: #006D9D;
	display: block;
}




/*footer*/

footer {
	width: 100%;
	text-align: center;
    padding-top: 150px;
}

/*footer-guide*/

.footer-guide {
    width: 100%;
}

.footer-guide h2 {
	margin-bottom: 60px;
    background-image: url("../images/back-footer-logo.svg");
background-position: center;
background-repeat: no-repeat;
background-size: auto 70px;
}

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

.footer-guide h3, .footer-guide h3 a {
	font-family: var(--number-font);
	line-height: 1.2;
	font-weight: var(--base-weight);
	font-size: 45px;
	color: var(--color-main);
}

.footer-guide h3 {
	display: inline-block;
	position: relative;
	padding-top: 35px;
	padding-left: 35px;
    margin-bottom: 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;
    color: #40517a;
}


/* footer-map */

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

.footer-map .box-text {
	background-color: var(--color-main);
	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;
	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;
}

/* layout-time */

.layout-time {
    width: 780px;
}

.box-time {
   border-style : solid;
border-color : #666666;
border-width : 1px;
}

.box-time table {
    width: 100%;
    text-align: center;
}

.box-time table td {
    width: 25%;
    padding: 10px;
    font-size: 1vw;
    vertical-align: middle;
}

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

.box-time table td {
    font-size: 15px;
}
    
}

.box-time table tr:not(:last-child) td {
    border-bottom-style : solid;
border-color : #666666;
border-width : 1px;
}

.box-time table tr td.line-none {
    border-bottom-style : none;
}

.box-time table tr td:not(:last-child) {
    border-right-style : solid;
border-color : #666666;
border-width : 1px;
}

.layout-time p {
    font-family: var(--title-font);
   text-align: right;
    padding-top: 10px;
}




/**
 * for SmartPhone
 */
@media screen and (min-width: 768px) {
	
	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 {
}

	
/*開閉ボタン*/
	#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 {
	top: 10px;
	}
	
nav .box-menu > h2 img{
	height: 52px;
	}
	
/*main-img*/
 
.main-img {
}

.main-img .box-img {
	width: 95%;
}

.main-img img {
    min-height: 200px;
    border-radius: 0px 3vw 20vw 0px;
}


.title-box {
    width: 100%;
    padding-top: 35px;
}

.title-box h2, .title-box h3 {
    letter-spacing: 0.2em;
}

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

.title-box h2::before {
	height: 60px;
    margin-top: -75px;
}

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

/* contents */

.contents {
	width: 100%;
	padding-top: 70px;
}

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

/* lay */

.lay1000, .lay1100, .lay1160, .lay-85 {
	width: 88%;
}


/* midashi-box */

.midashi-box {
	margin-bottom: 35px;
}

.midashi-box h2 {
	font-size: 32px;
letter-spacing: 0.1em;
	margin-bottom: 12px;
}

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

/* layout-contents01 */

.layout-contents01 {
	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;
}

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

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

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

.contents-treatmentmenu .box {
	width: 48%;
}
	
.contents-treatmentmenu h2 {
	font-size: 22px;
	margin-bottom: 20px;
}

.contents-treatmentmenu h4 {
	font-size: 12px;
	padding: 35px 0px 10px;
	height: 70px;
}

.contents-treatmentmenu h4::before {
top: 5px;
}

.contents-treatmentmenu h5 {
	font-size: 16px;
	letter-spacing: 0.1em;
}
	
/*btn-top*/
	
.pagetop_btn {
    bottom: 10px;
    right: 10px;
}

.pagetop_btn img {
    height: 50px;
}

/*footer-link*/

.footer-link {
	display: block;
}



/*footer*/

footer {
    padding-top: 80px;
}

/*footer-guide*/

.footer-guide h2 {
	background-size: auto 40px;
    margin-bottom: 40px;
}
    
.footer-guide h2 img {
	height: 100px;
}

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

.footer-guide h3 {
	padding-top: 25px;
	padding-left: 25px;
    margin-bottom: 30px;
}

.footer-guide h3::before {
bottom: 2px;
	height: 28px;
}

.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;
}

    
/* layout-time */

.layout-time {
    width: 88%;
}

.box-time table td {
    font-size: 3vw;
    padding-left: 0px;
    padding-right: 0px;
}

.box-time table td span.sp-view {
    display: block;
    padding: 5px 0px;
    font-size: 2vw;
}
      
}
