@charset "UTF-8";
/* CSS Document */
body,html {
	font-family: 'Noto Serif JP', serif;
	color: var(--main);
}
a {
	color: var(--main);
}
:root {
	--d-color: #d11559;
	--color: #d33e6e;
	--l-01:  #ffe6e3;
	--l-02: #ffeeea;
	--l-03: #fcf9f1;
	--gray: #5b5b5b;
	--l-gray: #e8e6e6;
	--l-02grya: #cecece;
	--btn-01:#f8427e;
	--btn-02:#fa8e94;
	--main:#424242;
}
/*common --------------------------------*/
.tel a {
	color: var(--d-color);
}
[class^="btn"],
.faq-menu li {
	border-radius: 25px;
	width: 200px;
	line-height: 45px;
	text-align: center;
	transition: 300ms background-color;
	font-size: 1.6rem;
	margin: auto;
}
[class^="btn"] a,
.faq-menu li a{
	color: #fff;
	display: block;
}
.footer_reserve .btn_d_green {
	font-weight: bold;
}
.btn_more {
	border: 2px solid var(--d-color);
	color: var(--d-color);
	margin: 20px auto 0;
	background: #fff;
	line-height: 40px;
}
.btn_more a {
	color: var(--d-color);
}
.top_about .btn_green {
	color: #fff;
	margin: 30px auto 0;
}
.btn_green {
	background-color: var(--color);
}
.btn_green:hover {
	background-color: var(--d-color);
}
.btn_d_green,
.faq-menu li {
	background-color: var(--d-color);
}
header .header_right .online_btn,
.footer_reserve .online_btn {
	width: 150px!important;
	line-height: 1.5;
}
.online_btn a {
	padding: 10px 0;
}
.online_btn a span {
	font-size: 1.5rem;
	display: block;
}
.l_title {
	font-size: 2rem;
    color: var(--d-color);
    margin-bottom: 16px;
	font-weight: bold;
	letter-spacing: 1px;
}
.l_title + p {
	font-size: 1.6rem;
	color: var(--d-color);
}
footer h3, 
.site_title {
	color: var(--d-color);
    font-size: 2.2rem;
    display: flex;
    align-items: center;
	margin-bottom: 10px;
}
footer h3::before, 
.site_title::before,
.sidebar h3::before {
	content: "";
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background: var(--color);
	border-radius: 1rem;
	margin-right: 5px;
}
.site_title,
.sidebar h3 {
	font-size: 2rem;
}
.site_title::before,
.sidebar h3::before {
	width: 2rem;
	height: 2rem;
	margin-right: 4px;
}
.b {
	padding: 40px 20px;
	font-size: 1.6rem;
	text-align: justify;
}
.address_pc {
	display: none;
}
@media (min-width:375px) {
	.l_title {
		font-size: 2.5rem;
	}
}
@media (min-width:768px) {
	.l_title {
		font-size: 1.8rem;
	}
}
@media (min-width:980px) {
	.l_title {
		font-size: 2.7rem;
		margin-bottom: 20px;
		line-height: 1.5;
	}
	.l_title + p,
	.about section p {
		line-height: 2;
	}
}
@media (min-width:1024px) {
	.address_sp {
		display: none;
	}
	.address_pc {
		display: block;
	}
}
/*header --------------------------------*/
header {
	padding: 40px 0 20px;
	font-size: 1.6rem;
	line-height: 1.5;
	position: relative;
    border-bottom: 3px solid var(--btn-01);
}
header::before,
header nav::before {
	content: "";
    background: url(../images/pattern01.png);
    background-position: center;
    background-size: 100px auto;
    height: 160px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -999;
}
header::after,
header nav::after {
	content: "";
	background: linear-gradient(to top,#fff, rgba(255, 255, 255, 0));
	height: 160px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
	z-index: -999;
}
header .header_left {
	padding: 0 10px;
    text-align: justify;
}
header h1 {
    margin-bottom: 12px;
    text-align: center;
}
header h1 a {
	color: var(--d-color);
	font-weight: bold;
	font-size: 2rem;
}
header h1 a  img {
    width: 100px;
    display: block;
    margin: 0 auto 10px;
}
header h1 a  img:last-of-type {
	width: 280px;
}
header h1 + p {
	text-align: center;
}
header .header_left .h_text_pc {
	display: none;
}
header .header_left p span {
	color: var(--d-color);
	font-size: 1.7rem;
}
header .header_right {
	display: none;
}
header .h_reserve_text {
	display: none;
}
/*sp nav --------------------------------*/
header nav {
	padding: 80px 0 0;
	text-align: center;
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: opacity 400ms, z-index 800ms;
	overflow: scroll;
	opacity: 0;
	z-index: -999;
}
#nav_trigger:checked + nav {
	opacity: 1;
	z-index: 999;
	transition: opacity 800ms, z-index 400ms;
}
header nav ul li {
	line-height: 70px;
	font-size: 2rem;
    font-weight: bold;
}
header nav ul li a {
	color: var(--d-color);
}
.nav_btn {
	position: fixed;
	top: 20px;
	right: 10px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--btn-01);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 9999;
}
.nav_btn span{
	width: 26px;
	height: 2px;
	background-color: #fff;
	margin: 0 0 6px;
	transition: transform 500ms, opacity 500ms;
}
.nav_btn span:last-of-type {
	margin-bottom: 0;
}
.nav_btn + label {
	position: fixed;
    top: 65px;
    right: 10px;
    width: 50px;
	z-index: 999;
}
#nav_trigger:checked + nav + .nav_btn span:first-of-type {
	transform: translateY(8px) rotate(45deg);
}
#nav_trigger:checked + nav + .nav_btn span:nth-of-type(2){
	opacity: 0;
}
#nav_trigger:checked + nav + .nav_btn span:last-of-type {
	transform: translateY(-8px) rotate(-45deg);
}
#nav_trigger {
	display: none;
}
@media (min-width:768px) {
/*header --------------------------------*/
	header {
		padding-bottom: 0;
		padding-top: 20px;
		border-bottom: none;
	}
	header::before {
		background-size: 80px auto;
   		 height: 110px;
	}
	header::after {
   		 height: 110px;
	}
	.header_inner {
		display: flex;
	    flex-wrap: wrap;
		justify-content: space-between;
		max-width: 980px;
		margin: auto;
	}
	header h1 {
	    margin-bottom: 0;
	}
	header h1 a {
		display: flex;
		align-items: center;
		font-size: 1.8rem;
	}
	header h1 a img {
		width: 80px;
    	margin: 0 10px 0 0;
	}
	header h1 a  img:last-of-type { 
		width: 230px;
	}
	header .menu-item-186 {
		display: none;
	}
	header .header_left {
		display: flex;
		align-items: center;
		padding: 0 20px;
	}
	header .header_left .h_text_pc {
		display: block;
	}
		header .header_left .h_text_sp {
		display: none;
	}
	header .header_left p {
	    margin-left: 10px;
		position: relative;
		top: -6px;
		font-size: 1.5rem;
		text-align: left;
	}
	header .header_right {
		display: flex;
		justify-content: flex-end;
		align-items: center;
    	margin-bottom: 16px;
		margin-right: 10px;
		width: 100%;
	}
	header .header_right .btn_green {
		margin: 0 0 0 20px;
		width: 140px;
		font-size: 1.4rem;
	}
	header .header_right li:first-of-type span {
		font-size: 1.6rem;
		margin-right: 2px;
	}
	header .header_right li:nth-of-type(2) {
		background: var(--btn-02);
		margin-left: 10px;
	}
	header .header_right li:first-of-type .r_text {
		font-weight: bold;
		color: var(--d-color);
		margin-right: 6px;
	}
	header .h_reserve_text {
		display: block;
		padding: 10px 20px;
		background: var(--l-03);
		font-size: 1.4rem;
	} 
	header .header_right .salon {
		width: 220px;
	}
/*sp nav --------------------------------*/
	header nav {
		position: relative;
		z-index: 0;
		padding: 0;
		transform: translateY(0);
		opacity: 1;
		transition: opacity 0ms, z-index 0ms;
		overflow: visible;
	}
	header label,
	.nav_btn{
		display: none;
	}
	header nav {
		background: var(--color);
	}
	header nav::before,header nav::after {
		display: none;
	}
	header nav ul {
		display: flex;
		justify-content: space-between;
		max-width: 980px;
		margin: auto;
	}
	header nav ul li {
		line-height: 50px;
		width: 25%;
		font-size: 1.5rem;
		font-weight: normal;
	}
	header nav ul li a {
		display: block;
		position: relative;
		color: #fff;
	}
	header nav ul li a::before,
	header nav ul li:last-of-type a::after {
		content: "";
		border-left: 1px solid var(--l-03);
		height: 33px;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	header nav ul li:last-of-type a::after {
		right: 0;
		left: inherit;
	}
}
@media (min-width:980px) {
/*header --------------------------------*/
	header h1 a {
		font-size: 2rem;
	}
	header h1 a img:last-of-type {
		width: 360px;
	}
	header .header_left {
		padding-left: 0;
	}
	header .header_left p {
		font-size: 1.6rem;
		margin-left: 36px;
		margin-top: 33px;
		margin-bottom: 16px;
		top: 0;
	}
	header .header_right {
		font-size: 2rem;
		margin-right: 0;
	}
	header .header_right li:first-of-type .r_text {
		font-size: 2.5rem;
		margin-right: 10px;
	}
	header .header_right .btn_green {
		font-size: 1.6rem;
	}
	header .header_right li:nth-of-type(2) {
			margin-left: 20px
	}
	header .header_right .tel {
		font-size: 2.6rem;
	}
	header nav ul li {
		font-size: 1.8rem;
	}
	header .h_reserve_text {
		text-align: center;
		font-size: 1.5rem;
	}
}
/*top slider
top_main --------------------------------*/
.top_slider_wrapper + div {
	padding: 40px 20px;
	text-align: justify;
	line-height: 1.7;
}
@media (min-width:768px) {
	.top_main > div {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		padding: 40px 20px;
		max-width: 980px;
		margin: auto;
	}
	.about_inner div:first-of-type {
		padding: 40px 20px;
		max-width: 980px;
		margin: auto;
	}
	.top_slider_wrapper {
		width: 60%;
		height: 300px;
		overflow: hidden;
	}
	.top_slider_wrapper + div {
		width: 40%;
		padding: 0 20px 0 0;
	}
}
@media (min-width:980px) {
	.top_main > div {
		padding: 40px 0;	
	}
	.top_slider_wrapper {
		height: 400px;
	}
}
/*top_info --------------------------------*/
.top_info {
	padding: 40px 20px;
    font-size: 1.7rem;
    line-height: 1.5;
    text-align: justify;
	background:  var(--l-03);
}
.top_info div {
	max-width: 980px;
	margin: auto;
}
.home .top_info ul li,
.sidebar ul li a {
	border-bottom: 1px solid var(--d-color);
    display: block;
    margin-bottom: 20px;
    padding: 0 24px 10px;
	word-break: break-all;
}
.home .top_info ul li a {
	color: var(--d-color);
}
.home .top_info ul li:last-of-type,
.top_info ul li:last-of-type a {
	margin-bottom: 0;
}
.top_info ul li a p {
	color: var(--gray);
    font-size: 1.6rem;
}
@media (min-width:768px) {
	.top_info ul li a {
		padding: 0 0 10px;
	}
}
@media (min-width:980px) {
	.top_info {
		padding: 40px 0;
	}
}
/*schedule
top_schedule
close --------------------------------*/
.top_schedule {
	padding: 40px 20px;
}
.schedule {
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
    padding-bottom: 20px;
    font-size: 1.6rem;
    line-height: 2;
}
.schedule dt {
	width: 46%;
	text-align: left;
}
.schedule dd {
	width: 52%;
	text-align: left;
}
.schedule dd::before {
	background: var(--d-color);
	color: #fff;
	font-size: 1.5rem;
	border-radius: 3px;
    padding: 4px 6px;
    margin-right: 5px;
	font-weight: bold;
}
.schedule .am::before {
	content: "午前";
}
.schedule .pm::before {
	content: "午後";
}
.schedule .pm {
	margin-left: 48%;
	margin-bottom: 12px;
	margin-top: 5px;
}
.schedule dd:last-of-type {
	display: none;
}
.close {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}
.close h3 {
	width: 48%;
}
.close p {
	font-size: 1.7rem;
    width: 47%;
    margin-bottom: 10px;
}
@media (min-width:375px) {
	.schedule,
	.close p {
		font-size: 1.9rem;
	}
	.schedule dd::before {
		position: relative;
		top: -2px;
	}
}
.top_schedule .close .site_title {
	width: 48%;
}
/*top_treatment
top_reserve
top_about --------------------------------*/
.top_treatment ul li:first-child {
	background: var(--l-01);
}
.top_treatment ul li:last-of-type {
	background: var(--l-02);
}
.top_treatment ul li a,
.top_about ul li a {
	font-size: 1.6rem;
	line-height: 1.7;
	text-align: justify;
	padding: 40px 20px;
	display: block;
    color: var(--main);
}
.top_about ul li a {
	padding: 40px 0 0;
	max-width: 980px;
	margin: auto;
}
.top_about ul li:last-of-type a {
	 display: flex;
    flex-direction: column-reverse;
    padding: 0;
}
.top_about ul li:last-of-type a figure {
	padding-bottom: 40px;
}
.top_about ul li a div {
	padding: 0 20px 40px;
}
.top_treatment ul li figure {
	 float: left;
    margin-right: 20px;
	margin-left: 20px;
}
.page-template-page-about .top_treatment ul li figure {
	margin-left: 0;
}
.top_treatment ul li h2,
.page-template-page-about .top_treatment ul li h3 {
	color: var(--d-color);
	margin-bottom: 10px;
	font-size: 2.6rem;
    line-height: 100px;
}
.top_treatment ul li h3,
.page-template-page-about .top_treatment ul li h4 {
	clear: both;
	color: var(--d-color);
    margin-bottom: 10px;
    font-size: 1.6rem;	
}
.top_reserve {
	display: none;
}
.top_reserve li a span {
	font-size: 1.4rem;
	line-height: 2;
}
@media (min-width:375px){
	.top_treatment ul li h3, .page-template-page-about .top_treatment ul li h4 {
		font-size: 2rem;
	}
}
@media (min-width:768px) {
	.top_schedule > div {
		display: flex;
		justify-content: space-between;
	}
	.top_schedule > div > div {
		width: 60%;
		position: relative;
	}
	.top_schedule .schedule dt,
	.top_schedule .close .site_title {
		width: 32%;
	}
	.top_schedule .schedule dd {
		width: 33%;
	}
	.top_schedule .schedule .pm {
		margin: 0;
	}
	.top_schedule .close {
		margin-bottom: 0;
	}
	.top_schedule .btn_green {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 150px;
		line-height: 40px;
	}
	.top_reserve {
		display: flex;
		justify-content: space-between;
		width: 36%;
		margin-top: 37px;
	}
	.top_reserve li {
		width: 45%;
		max-width: 186px;
		border-radius: 10px;
		text-align: center;
		box-shadow: 0 0 5px rgba(0,0,0,.3);
		font-size: 2rem;
	}
	.top_reserve li a {
		color: #fff;
		display: flex;
		justify-content: center;
		flex-direction: column;
		height: 100%;
	}
	.top_reserve li a i {
		margin-bottom: 16px;
		font-size: 3rem;
	}
	.top_reserve li:first-of-type {
		background: var(--btn-01);
	}
	.top_reserve li:last-of-type {
		background: var(--btn-02);
	}
	.top_treatment {
		background:  linear-gradient(to right, var(--l-01) 50%,var(--l-02) 50%);
	}
	.top_treatment ul {
		display: flex;
		max-width: 980px;
    	margin: auto;
	}
	.top_treatment ul li{
		width: 50%;
	}
	.top_treatment ul li:first-of-type h3,
	.page-template-page-about .top_treatment ul li:first-of-type h4 {
/*		margin-bottom: 4rem;*/
	}
	.top_treatment ul li:nth-of-type(2) h3{
		margin-bottom: 43px;
	}
	.top_about ul li a {
		display: flex;
	    justify-content: space-between;
		align-items: center;
	}
	.top_about ul li:last-of-type a {
		flex-direction: row-reverse;
		margin-top: 40px;
	}
	.top_about ul li a div,
	.top_about ul li a figure {
		width: 50%;
	}
	.top_about ul li a div {
		padding-bottom: 0;
	}
}
@media (min-width:980px) {
	.top_schedule {
		padding: 80px 0;
	}
	.top_schedule > div {
		max-width: 980px;
		margin: auto;
	}
	.top_reserve {
		width: 40%;
	}
	.top_treatment ul li:first-of-type a {
		padding-left: 0;
	}
	.top_treatment ul li:last-of-type a{
		padding-right: 0;
	}
	.top_schedule .btn_green {
		 right: 35px;
		width: 165px;
	}
	.top_about ul li:first-of-type a div {
		padding-left: 0;
	}
	.top_about ul li:last-of-type a div {
		padding-right: 0;
	}
	.top_about ul li a {
		padding-top: 80px;
	}
	.top_treatment ul li figure {
		margin-left: 90px;
	}
	.top_about ul li:last-of-type a figure {
		padding-bottom: 80px;
	}
	.top_treatment ul li p {
		text-align: center;
	}
	.top_treatment ul li:first-of-type h3,
	.top_treatment ul li h3 {
		font-size: 1.8rem;
		text-align: center;
	}
	.top_treatment ul li:nth-of-type(2) h3 {
		margin-bottom: 10px;
	}
}
/*about page
about_slider --------------------------------*/
.page_m_wrapper {
	line-height: 1.5;
	font-size: 1.6rem;
}
.page_m {
	padding: 20px;
    background: var(--l-02);
    line-height: 1.5;
    text-align: justify;
	font-size: 1.8rem;
}
.about {
	font-size: 1.6rem;
}
.about section {
	color:#2b2229;
	line-height: 1.7;
}
.about .about_inner div:last-of-type {
	padding: 0 20px 20px;
	line-height: 1.5;
	border-bottom: 2px solid var(--l-02);
}
.about .about_inner div:last-of-type p {
	color: var(--d-color);
	text-align: right;
	font-size: 1.8rem;
}
.about_position li:first-of-type {
	color: var(--d-color);
}
.about_position li {
	padding-bottom: 10px;
}
.about_position li:last-of-type {
	padding-bottom: 0;
}
/* .about_slider ul li {
	width: 267px!important;
	overflow: hidden;
} */
.about_slider .infinite-scroll {
    display: flex;
    overflow: hidden;
}
.about_slider ul {
    display: flex;
    animation: scroll-rl 50s linear infinite;
}
@keyframes scroll-rl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}
.about_slider ul li {
    margin: 0 10px 0 0;
    width: 320px;
}
/*hisroty
treatment --------------------------------*/
.history dl,
.history ul {
	line-height: 1.5;
	padding-bottom: 40px;
}
.history dl dt {
	display: none;
}
.history dl dd {
/*	margin: -24px 0 0 70px;*/
    padding-bottom: 10px;
}
.history a {
	color: var(--d-color);
	text-decoration: underline;
}
.history ul li {
	margin-bottom: 8px;
}
.history ul li:last-of-type {
	margin-bottom: 0;
}
.page-template-page-about .top_treatment h2 {
	padding: 40px 20px 0;
    margin-bottom: 0;
    background: var(--l-01);
}
.page-template-page-about .top_treatment ul li h3 {
	text-align: left;
	clear: inherit;
}
.page-template-page-about .top_treatment ul li h4 {
	color: var(--color);
}
@media (min-width:768px) {
	.page_m_wrapper {
		max-width: 980px;
		margin: auto;
	}
	.page_m {
		text-align: center;
		position: relative;
		padding: 10px 0;
		margin-top: 20px;
		border-bottom: 2px solid rgba(250, 142, 148, 0.3);
	}
	.page_m:before, .page_m:after {
	  position: absolute;
	  content: '';
	  width: 0px;
	  height: 0px;
	  z-index: 1;
	  top: 0;
	  border-style: solid;
	}
	.page_m:before {
	  left: 0;
		border-width: 22px 0px 22px 15px;
	  border-color: transparent transparent transparent #fff;
	}
	.page_m:after {
	  right: 0;
		border-width: 22px 15px 22px 0px;
	  border-color: transparent #fff transparent transparent;
	}
	.about_inner {
		max-width: 980px;
		margin: auto;
		padding-bottom: 40px;
	}
	.about_inner div:first-of-type {
		padding-bottom: 0;
	}
	.about_inner div:first-of-type figure {
		float: right;
		padding: 34px 0 0 20px;
		width: 60%;
	}
	.about_inner div:first-of-type section {
		padding: 0;
	}
	.about .about_inner div:last-of-type {
		padding: 30px 20px;
	    display: flex;
		align-items: flex-end;
		justify-content: space-between;
	}
	.history {
		display: flex;
	    justify-content: space-between;
		flex-wrap: wrap;
	}
	.history section:first-of-type {
		width: 55%;
	}
	.history section:last-of-type {
		width: 38%;
	}
	.page-template-page-about .top_treatment h2 {
		background: linear-gradient(to right, var(--l-01) 50%,var(--l-02) 50%);
		margin: auto;
	}
	.page-template-page-about .top_treatment ul li {
		width: 50%;
	}
	.page-template-page-about .top_treatment ul li a {
		padding: 30px 20px 95px;
		position: relative;
	}
	.page-template-page-about .top_treatment ul li h3 {
		font-size: 2.2rem;
		line-height: 1;
		margin-top: 20px;
	}
	.page-template-page-about .top_treatment ul li:first-of-type h4 {
		margin-bottom: 0;
	}
	.page-template-page-about .top_treatment ul li h4 {
		padding-right: 20px;
	}
	.page-template-page-about .top_treatment ul li h4 {
		margin-bottom: 0;
		position: absolute;
		left: 140px;
		top: 85px;
		font-size: 1.6rem;
	}
	.page-template-page-about .top_treatment ul li .btn_more {
		position: absolute;
		top: 40px;
		right: 20px;
		width: 130px;
		margin: 0;
	}
}
@media (min-width:980px) {
	.about_inner div:first-of-type figure {
		width: inherit;
	}
	.about_inner div:first-of-type {
		padding: 40px 0  0;
	}
	.history {
		width: 980px;
		margin: auto;
		padding: 40px 0;
	}
	.page-template-page-about .top_treatment h2 { 
		padding: 40px 0 0;
		width: 980px;
	}
	.page-template-page-about .top_treatment ul li h3 {
	    font-size: 2.6rem;
	}
	.page-template-page-about .top_treatment ul li h4 {
		font-size: 1.8rem;
		top: 90px;
	}
	.page-template-page-about .top_treatment ul li .btn_more {
		top: 42px;
		right: 90px;
	}
	/* .about_slider ul li {
		width: 400px!important;
	} */
}
/*faq --------------------------------*/
.faq-menu {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px 0;
}
.faq-menu li {
    width: 48%;
    margin: 0 0 16px;
    font-size: 1.3rem;
}
@media (min-width:375px) {
	.faq-menu li {
		font-size: 1.5rem;
	}
}
.faq dl {
	line-height: 1.5;
}
.faq dt {
	padding: 20px 24px;
    border-top: 1px solid var(--l-02grya);
	position: relative;
}
.faq dt::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid var(--l-02grya);
    transform: rotate(45deg);
    border-top: none;
    border-left: none;
    position: absolute;
    right: 4px;
    bottom: 20px;
}
.faq dl dt:first-of-type {
	border-top: none;
} 
.faq dd {
	display: none;
	padding: 0px 24px 20px;
    color: var(--d-color);
}
@media (min-width:768px) {
	.faq-menu {
		justify-content: center;
	}
	.faq-menu li {
		width: 28%;
		max-width: 190px;
		margin: 0 10px 16px;
		font-size: 1.6rem;
	}
}
@media (min-width:980px) {
	.faq {
		max-width: 980px;
		margin: auto;
		padding: 40px 0;
	}
}
/*treatment --------------------------------*/
#s_treatment {
	padding-bottom: 60px;
}
.treatment{
	border-top: 2px solid var(--d-color);
	max-width: 880px;
	margin: auto;
}
.post-type-archive-treatment .treatment:first-of-type {
	border-top: none;
}
.treatment p {
	line-height: 1.7;
}
.treatment section {
	padding: 20px 0;
	display: none!important;
}
.treatment div h3 {
	margin-bottom: 10px;
	line-height: 1.7;
}
.treatment div .site_title + h3 {
	color: var(--color);
	font-size: 1.8rem;
}
.treatment div ul li h3 {
	color: var(--d-color);
}
.treatment div ul {
/*	display: flex;*/
    justify-content: center;
    padding: 20px 0;
    flex-wrap: wrap;
	display: none;
}
.treatment div ul li {
	margin: 0 16px 16px;
    text-align: center;
}
.treatment section figure {
	text-align: center;
}
.treatment section img {
	width: 150px;
}
.treatment .first_visit {
    margin-bottom: 30px;
    border: 2px solid var(--d-color);
    padding: 20px 20px 12px;
    background: #fff;
    border-radius: 10px;
}
.treatment .first_visit:last-of-type {
	margin-bottom: 60px;
}
.treatment .first_visit h3,
.treatment .first_visit h4 {
	margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.7;
    color: var(--d-color);
    font-size: 2rem;
}
.treatment .first_visit ul {
    display: block;
    padding: 0 0 0 20px;
}
.treatment .first_visit ul li {
    margin: 0 0 10px;
    line-height: 1.7;
    text-align: justify;
	position: relative;
}
.treatment .first_visit ul li::before {
content: "";
    width: 6px;
    height: 6px;
    border-radius: 3px;
    position: absolute;
    top: 11px;
    left: -18px;
    display: block;
    background: var(--main);
}
.treatment .first_visit a {
	margin: 10px 0 0;
	color: var(--d-color);
	text-decoration: underline;
	display: inline-block;
}
.treatment .first_visit p:last-of-type {
	margin-bottom: 10px;
}
@media (min-width:768px) {
	.treatment section {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.treatment div .site_title + h3 +p {
		margin-bottom: 20px;
	}
	.treatment section figure {
		width: 170px;
		margin-right: 20px;
	}
	.treatment section div {
		width: 70%;
	}
}
/*access --------------------------------*/
.access .b {
	max-width: 880px;
	margin: auto;
}
.access .b p{
	line-height: 1.5;
}
.access .b [class^="btn"]  {
	margin: 30px auto 20px;
	line-height: 36px;
}
.access .b [class^="btn"] +p {
	font-size: 1.8rem;
	color: var(--d-color);
	margin-bottom: 10px;
}
.access .map + ul li img {
	width: 100%;
}
.access .address_pc {
    font-size: 1.8rem;
    color: var(--d-color);
}
@media (min-width:768px) {
	.treatment .first_visit {
		padding: 20px 30px 12px;
	}
	.access .site_title + div {
		display: flex;
		flex-direction: row-reverse;
		justify-content: flex-end;
		align-items: baseline;
	}
	.access .b [class^="btn"],
	.access .b [class^="btn"] +p{
		margin-bottom: 0;
	}
	.access .b .btn_more {
	    margin: 0 0 0 20px;
	}
	.access .map {
		width: 100%;
	}
	.access ul {
		display: flex;
	}
	.access .map + ul li {
		width: 34%;
	}
}
/*recruit --------------------------------*/
.recruit_wrapper {
	background: var(--l-03);
}
.recruit {
	max-width: 880px;
    margin: auto;
}
.recruit .recruit_time_inner div {
	padding-bottom: 80px;
}
.recruit div:last-of-type {
	padding-bottom: 0;
}
.recruit div dl  {
	line-height: 1.5;
	padding-bottom: 40px;
}
.recruit div:last-of-type dl {
	padding-bottom: 0;
}
.recruit div dl dt {
	color: var(--d-color);
	padding: 20px 24px 0;
}
.recruit div dl dd:first-of-type {
	color: #3D9BE9;
}
.recruit div dl dd {
    padding: 5px 24px 20px 110px;
    border-bottom: 1px solid var(--l-02grya);
    margin-top: -29px;
}
.recruit_time {
	background: #cadb99;
}
.recruit_time .site_title {
	justify-content: center;
}
.recruit_time .recruit_time_inner div {
	display: flex;
    justify-content: center;
    margin: 20px 0;
	line-height: 1.5;
}
.recruit_time dl dd:first-of-type {
	margin: -25px 0 0 80px;
}
.recruit_time dl dd:nth-of-type(2) {
	margin-left: 80px
}
.recruit_time dl dd:nth-of-type(3) {
	text-align: center;
    margin-top: 10px;
}
@media (min-width:768px) {
	.recruit_time .site_title {
		width: 100%;
	}
	.recruit_time_inner {
		max-width: 840px;
		margin: auto;
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		justify-content: space-between;
	}
	.recruit_time div dl {
		display: flex;
	}
	.recruit div dl dd {
		padding-right: 130px;
	}
	.recruit_time .site_title,
	.recruit_time .recruit_time_inner div {
		justify-content: flex-start;
	}
	.recruit_time .recruit_time_inner div {
		margin: 10px 0 0;
	}
	.recruit_time .recruit_time_inner dl dd {
		margin: 0 0 0 20px;
		text-align: left;
	}
	.recruit_time .btn_d_green {
		margin: 0;
		width: 230px;
	}
}
/* link -------------------------------- */
.link-list-item li a {
	padding: 10px;
	border: 1px solid var(--l-01);
}
/*blog --------------------------------*/
.paginate {
	text-align: center;
    padding: 40px 0 0;
}
.paginate span,
.paginate span + .page-numbers,
a + .page-numbers {
	background: var(--color);
    display: inline-block;
    border-radius: 100%;
    line-height: 35px;
    width: 35px;
    color: #fff;
	margin: 0 5px;
}
.paginate .next,
.paginate .prev {
	color: var(--color);
    margin: 0 5px;
    background: inherit;
    width: inherit;
    line-height: inherit;
    border-radius: inherit;
}
.sidebar section {
	padding-bottom: 40px;
}
.sidebar h3 {
	margin-bottom: 20px;
}
.sidebar ul li a {
	border-bottom: 1px solid var(--l-01);
	line-height: 1.5;
}
.sidebar ul li:last-of-type a {
	margin-bottom: 0;
}
@media (min-width:768px) {
	.blog_wrapper {
		background: var(--l-03);
		padding-right: 20px;
	}
	.blog_wrapper .blog {
		max-width: 840px;
		margin: auto;
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.blog_wrapper .blog .top_info {
		width: 65%;
	}
	.blog_wrapper .blog_nav {
		width: 30%;
		background: #fff;
		margin-top: 32px;
	}
	.blog_wrapper .blog .top_info ul li a {
		padding: 0 24px 10px;
	}
	.sidebar h3 {
		margin-bottom: 20px;
		font-size: 1.6rem;
		display: flex;
	}
	.sidebar h3::before {
		width: 1.6rem;
		height: 1.6rem;
	}
	.blog_wrapper .blog .top_info ul {
		flex-wrap: wrap;
	}
	.blog_wrapper .blog .top_info ul li {
		width: 100%;
	}
	.sidebar ul li a {
		font-size: 1.5rem;
		margin-bottom: 10px;
	}
}
@media (min-width:880px) {
	.blog_wrapper {
		padding-right: 0;
	}
}
/*single --------------------------------*/
.single .top_info {
	font-size: 1.6rem;
	line-height: 1.7;
}
.single .top_info .site_title {
	padding-left: 22px;
    position: relative;
}
.single .top_info .site_title::before {
    position: absolute;
    left: 0;
    top: 8px;
}
.single .top_info p {
	margin-bottom: 16px;
	line-height: 2;
}
.single .top_info .wp-block-image {
	margin: 2rem 0;
}
.single .top_info a {
	text-decoration: underline;
    color: var(--d-color);
}
.single .blog {
	position: relative;
}
.single .blog_wrapper .blog .top_info .prev_next {
	flex-wrap: nowrap;
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
}
.single .blog_wrapper .blog .top_info .prev_next li {
	width: auto;
}
.single .blog_wrapper .blog .top_info .prev_next li a {
	margin: 0;
    text-decoration: none;
    border-bottom: none;
    background: #fff;
	padding: 3px 7px;
    font-size: 1.4rem;
    border-radius: 30px;
    line-height: 30px;
    color: var(--color);
    border: 1px solid var(--color);
}
@media (min-width:375px) {
	.single .blog_wrapper .blog .top_info .prev_next li a {
		padding: 3px 10px;
	}
}
@media (min-width:768px) {
	.single .top_info {
		padding-bottom: 80px;
	}
	.single .blog_wrapper .blog .top_info .prev_next {
		position: absolute;
		bottom: 0;
		width: calc(65% - 40px);
	}
	.single .blog_wrapper .blog .top_info .prev_next li a {
		padding: 3px 20px;
		font-size: 1.5rem;
	}
}
@media (min-width: 880px) {
	.single .blog_wrapper .blog .top_info .prev_next {
		width: 65%;
	}
}
/*map --------------------------------*/
.access .map {
	height: 400px;
}
.map {
	margin-bottom: 30px;
}
.map iframe {
	height: 400px;
}
/*footer --------------------------------*/
.page_top {
	transition: 100ms;
	position: fixed;
	right: 10px;
	bottom: 68px;
	width: 50px;
    height: 50px;
	border-radius: 25px;
	background: #e8e6e6;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.7rem;
	z-index: 99;
}
.page_top a {
	color: #fff;
}
.footer_reserve_sp {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	z-index: 999;
}
.footer_reserve_sp li {
	width: 50%;
	text-align: center;
	font-size: 1.8rem;
	background: var(--btn-02);
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer_reserve_sp li:first-of-type {
	background: var(--btn-01);
}
.footer_reserve_sp li i {
	margin-right: 5px;
}
.footer_reserve_sp li a {
	width: 100%;
	line-height: 1.5;
	color: #fff;
	display: block;
}
.online_btn_list li:last-of-type a {
	padding: 10px 0;
}
.online_btn_list li:last-of-type span {
	font-size: 1.4rem;
	display: block;
}
footer {
	background:  var(--l-03);
	padding: 40px 0 78px;
	font-size: 1.6rem;
	text-align: center;
}
footer > div {
	margin: auto;
	max-width: 980px;
}
footer .footer_inner {
	padding: 0 20px;
}
footer h2 {
    margin: 0 auto 20px;
}
footer h2 img {
	width: 100px;
    display: block;
    margin: 0 auto 10px;
}
footer h2 img:nth-of-type(2) {
	width: 280px;
}
footer h2 + p {
	color: var(--d-color);
	text-align: center;
}
footer div div p {
	font-size: 1.7rem;
    line-height: 1.7;
    text-align: center;
}
.footer_reserve {
	margin: 25px 0 0;
	font-size: 2rem;
}
.footer_reserve li {
	margin-bottom: 20px;
}
.footer_reserve li:first-of-type {
	font-size: 	3rem;
	text-align: center;
}
.footer_reserve li:first-of-type span {
	font-size: 1.6rem;
	margin-right: 2px;
}
.footer_reserve li:nth-of-type(2) {
	background: var(--btn-02);
}
.footer_reserve li:last-of-type {
	margin-bottom: 30px;
}
.footer_reserve li:first-of-type .r_text {
	display: block;
    font-size: 2.4rem;
    margin-bottom: 10px;
    font-weight: bold;
	color: var(--d-color);
}
footer .footer_reserve .salon {
	width: 220px;
	margin: 20px auto 30px;
}
footer .f_reserve_text {
	margin-bottom: 40px;
    border-bottom: 2px solid var(--l-gray);
    text-align: justify;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
	line-height: 1.5;
}
.footer_reserve +div {
	text-align: left;
}
footer small {
	font-size: 1.3rem;
	color: var(--gray);
}
@media (min-width:768px) {
	.page_top {
		bottom: 10px;
		right: 20px;
	}
	.footer_reserve_sp {
		display: none;
	}
	.top_schedule .schedule {
		justify-content: flex-start;
	}
	.schedule, .close p {
		font-size: 1.6rem;
	}
	.schedule dd::before {
		font-weight: normal;
	}
	footer {
		text-align: left;
		padding-top: 30px;
		padding-bottom: 20px;
	}
	footer > div {
		display: flex;
	}
	footer .footer_inner,
	.map {
		width: 50%;
	}
	footer h2 {
		margin: 0 0 10px;
	}
	footer h2 a {
		display: flex;
		align-items: center;
	}
	footer h2 img {
		width: 80px;
		margin: 0;
	}
	footer h2 img:nth-of-type(2) {
		width: 250px;
		margin-left: 10px;
	}
	footer h2 + p {
		text-align: left;
	}
	.footer_reserve {
		font-size: 1.8rem;
		margin-top: 10px;
	}
	.footer_reserve li {
		margin-bottom: 15px;
	}
	.footer_reserve .btn_d_green {
		font-size: 1.4rem;
		width: 165px;
		font-weight: normal;
	}
	.map iframe {
		height: 100%;
	}
	footer small {
		text-align: center;
	}
}
@media (min-width:980px) {
	.schedule dt,
	.close h3 {
		width: 30%;
    	font-size: 1.6rem;
	}
	.schedule {
		padding-bottom: 30px;
		justify-content: flex-start;
	}
	.schedule, .close p {
		font-size: 1.8rem;
	}
	.schedule dd {
		width: 34%;
	}
	.schedule .pm {
		margin: 0;
	}
	footer .footer_inner {
		padding-top: 20px;
		padding-left: 0;
	}
	.footer_reserve {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		padding-bottom: 25px;
		margin-top: 20px;
	}
	.footer_reserve li:first-of-type {
		font-size: 2rem;
		margin-bottom: 0;
	}
	.footer_reserve .btn_d_green {
		width: 140px;
		font-size: 1.5rem;
		margin: 0;
	}
	.footer_reserve li:last-of-type {
		margin-bottom: 0;
	}
	.footer_reserve li:first-of-type .r_text {
		font-size: 1.7rem;
	}
	footer .footer_reserve .salon {
		margin: 20px auto 0;
	}
}
@media (min-width:1024px) {
	footer div div p {
		font-size: 1.6rem;
		text-align: justify;
	}
}
/*not-found-----------------*/
.not-found {
	text-align: center;
    padding: 60px 20px;
	font-size: 1.4rem;
}
.not-found h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: bold;
    color: var(--color);
}
.not-found h2 + p {
	line-height: 1.7;
	margin-bottom: 30px;
}
.not-found [class^="btn"] {
	margin: 16px auto;
}
@media (min-width:375px) {
	.not-found {
		font-size: 1.6rem;
	}
}
@media (min-width:768px) {
	.not-found {
		font-size: 1.8rem;
	}
}
/* オンライン予約 */
.reservation_btn {
	line-height: 1.5;
}
.reservation_btn a {
	padding: 10px 0;
}