/*
Theme Name: endeavor
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
ul, ol {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
/*************************************************************

ここまでリセット

*************************************************************/
/*共通*/
/*全体のフォントサイズを指定、remでbodyに引っ張られないようにする*/
html {
	font-size: 62.5%;
	font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
    background: url("images/bk.jpg");
}
body {
	font-size: 1.4em;
    letter-spacing: 1px;
	color: #000;
	font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif;
}
/*全体のフォントサイズを指定*/
a {
    color: #000;
	text-decoration: none;
    transition: all .3s;
}
a:hover {
    opacity: 0.8;
 filter: alpha(opacity=80);
 -moz-opacity: 0.8;
}

a:active {
    opacity: 0.8;
 filter: alpha(opacity=80);
 -moz-opacity: 0.8;
}
a:visited {
    color: #000;
}
.clearfix:after {
	display: table;
	clear: both;
	content: "";
}
div, ul, li {
	box-sizing: border-box;
}
img {
	max-width: 100%;
	width: 100%;
}
/*ヘッダー*/
header {
	position: relative;
	z-index: 20;
}
header .logo {
	max-width: 250px;
}
.site_header {
	position: fixed;
	width: 100%;
	z-index: 10;
	border-bottom: solid 1px #000;
    padding: 10px 30px;
    background: url("images/bk.jpg");
}
.site_header_inner {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
    padding: 0;
}
@media screen and (max-width:1200px) {
.site_header {
    padding: 8px 5px 8px 15px;
}
}
@media screen and (max-width: 940px) {
	header .logo {
		max-width: 200px;
	}
}
.site_header_inner .prime_menu {
	display: flex;
    align-items: center;
}
.site_header_inner .prime_menu li a {
	padding: 0 1.5em;
    color: #000;
}
.site_header_inner .prime_menu li img {
    height: 25px;
}
a.underline span {
	position: relative;
    font-family: "Oswald", sans-serif;
    font-size: 1.6rem;
}
a.underline span::after {
	background-color: #898989;
	bottom: 0;
	content: '';
	display: block;
	height: 1px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -3px;
	position: absolute;
	transition: .5s all;
	width: 0;
}
@media screen and (min-width: 940px) {
	a.underline:hover span::after {
		width: 100%;
	}
}
.site_header_inner .prime_menu li a:hover {
	color: #898989;
}
.lg_m, .mobile_menu {
	display: none;
}
@media screen and (max-width: 940px) {
	/*SPメニューを出しつつPCを非表示に*/
	.lg_m {
		display: block;
	}
	.site_header_inner .prime_menu {
		display: none;
	}
	.sp_logo {
		position: absolute;
		top: 12px;
		left: 10px;
	}
	.sp_to_top {
		position: absolute;
		top: 10px;
		right: 10px;
		width: 100px;
	}
	.lg_m {
		text-align: right;
	}
	/*メニューの動き*/
	.menu-trigger, .menu-trigger span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
		cursor: pointer;
	}
	.menu-trigger {
		position: relative;
		width: 50px;
		height: 50px;
		z-index: 2;
	}
	.menu-trigger span {
		position: absolute;
		background: #000;
		width: 30px;
		height: 2px;
		left: 0;
		right: 0;
		margin: auto;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 18px;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 0;
		bottom: 0;
	}
	.menu-trigger span:nth-of-type(3) {
		bottom: 18px;
	}
	.menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(6px) rotate(-45deg);
		transform: translateY(6px) rotate(-45deg);
	}
	.menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu-trigger.active span:nth-of-type(3) {
		-webkit-transform: translateY(-6px) rotate(45deg);
		transform: translateY(-6px) rotate(45deg);
	}
	.menu-trigger.active span {
		background: #fff;
	}
	.menu-trigger.active {
		position: absolute;
		right: 5px;
	}
	/*メニューの動き END*/
	#sp_g_nav .sp_nav ul {
		background-color: #000;
		opacity: 0.9;
	}
	.sp_nav {
		display: none;
		position: absolute;
		top: 70;
		width: 100%;
		z-index: 3;
	}
	#sp_g_nav .sp_nav li {
		text-align: center;
		width: 100%;
		border-bottom: solid 1px #e1001e;
	}
	#sp_g_nav .sp_nav li a {
		display: block;
		padding: 10px;
		color: #e1001e;
		font-size: 1.6rem;
	}
	.mobile_menu {
		display: block;
		position: fixed;
		z-index: 999999!important;
		overflow-y: auto;
		overflow-x: hidden;
		top: 0;
		left: -100%;
		right: 0;
		bottom: 0;
		line-height: 2em;
		width: 100%;
		height: 100%;
		padding: 1em;
		background-color: #000;
	}
	.mobile_menu > ul {
		width: 96%;
		margin: 50px auto 0;
		font-size: 2.0rem;
	}
	.mobile_menu > ul > li {
		margin-bottom: 1em;
		font-size: 2.0rem;
        color: #fff;
	}
	.mobile_menu > ul > li.sp_sub_menu {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
	}
	.mobile_menu > ul > li.sp_sub_menu ul {
		display: none;
		padding-left: 1em;
		margin-top: 0.5em;
	}
	.mobile_menu > ul > li.sp_sub_menu ul li {
		margin-bottom: 0.5em;
	}
	.mobile_menu > ul > li.sp_sub_menu a:nth-of-type(1) {
		width: 90%;
	}
	.mobile_menu > ul > li a {
		color: #fff;
	}
	.mobile_menu ul li form {
		background-color: #eeeeee;
		border-radius: 20px;
		display: flex;
		justify-content: space-between;
		padding: 10px;
		align-items: center;
	}
	.mobile_menu ul li form input[type="text"] {
		border: none;
		background-color: transparent;
		width: 90%;
	}
}
.mobile_icon {
	display: block flex;
    align-items: center;
    gap:25px;
    width: 96%;
    margin: 0px auto;
    padding-top: 10px;
	}
.mobile_icon img {
		height:25px;
	}

/*フェードイン*/
.fadein, .time-fadein {
	opacity: 0;
	transform: translate(0, 40px);
	transition: all 800ms;
}
.fadein.scrollin, .time-fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}
.fadein.fadein_l, .time-fadein.fadein_l {
	transform: translate(-50px, 0);
	transition: all 800ms;
	opacity: 0;
}
.fadein.fadein_l.scrollin, .time-fadein.fadein_l.scrollin {
	transform: translate(0, 0);
	opacity: 1;
}
.fadein.fadein_r.fadein, .time-fadein.fadein_r.fadein {
	transform: translate(50px, 0);
	transition: all 800ms;
	opacity: 0;
}
.fadein.fadein_r.scrollin, .time-fadein.fadein_r.scrollin {
	transform: translate(0, 0);
	opacity: 1;
}
@media screen and (max-width:850px) {
	/*タブレット以下は下からスライドに固定(横ずれを防ぐ為)*/
	.fadein, .time-fadein {
		transform: translate(0, 40px) !important;
	}
	.fadein.scrollin, .time-fadein.scrollin {
		opacity: 1;
		transform: translate(0, 0) !important;
	}
}
@media screen and (max-width: 600px) {
	table.table2.case_table th, table.table2.case_table td {
		font-size: 11px;
		padding: 3px 5px;
	}
}

/* ページTOPに戻る */
.pagetop {
	display: block;
	position: fixed;
	right: 15px;
	bottom: 15px;
}
.pagetop a {
	display: block;
	font-size: 0;
	width: 60px;
	height: 60px;
	text-align: center;
	background: #000;
	border-radius: 50%;
    font-size: 1.2rem;
    font-family: "Oswald", sans-serif;
    color: #fff;
    line-height: 1.3;
    padding: 5px;
    box-sizing: border-box;
}
.pagetop a i {
	font-size: 1.5rem;
	color: #fff;
}

/* ホットペッパービューティー */
.hotpepper {
	display: block;
	position: fixed;
	right: 0;
	top: 120px;
	border-top: 1px #ccc solid;
	border-left: 1px #ccc solid;
	border-bottom: 1px #ccc solid;
}
.hotpepper a {
	display: block;
    background: url("images/hotpepper_pc.jpg")left top no-repeat;
    background-size: cover;
    width: 135px;
    height: 45px;
}

footer {
	display: block;
    padding: 30px;
    text-align: center;
}

.copyright {
	font-size: 1.4rem;
    font-family: "Oswald", sans-serif;
}
.grecaptcha-badge { visibility: hidden; }

@media screen and (max-width: 768px) {
	.pagetop {
	right: 7px;
	bottom: 7px;
	}
.hotpepper {
top: 90px;
}
.hotpepper a {
    background: url("images/hotpepper_sp.jpg")left top no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
}
}

/*コンテンツ*/
.top_slide {
	margin: 0 auto;
	text-align: center;
    width: 100%;
	position: relative;
	height: 100vh;
}
.mainimage div {
    width: 100%;
	position: relative;
	height: 100vh;
}
.mainimage div.shopimg01{
	background: url("images/shop_img01.jpg") no-repeat center bottom;
    background-size: cover;
}
.mainimage div.shopimg02{
	background: url("images/shop_img02.jpg") no-repeat center bottom;
    background-size: cover;
}
.mainimage div.shopimg03{
	background: url("images/shop_img03.jpg") no-repeat center bottom;
    background-size: cover;
}

h1 {
	font-size: 2.2rem;
	text-align: center;
    line-height: 2;
	position:absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
-webkit- transform: translateY(-50%) translateX(-50%);
z-index:10;
color: #fff;
text-shadow: 1px 1px 3px #000;
width:100%;
}
.kv_logo {
position:absolute;
width:125px;
top: 60%;
left: 50%;
transform: translateX(-50%);
-webkit- transform: translateX(-50%);
z-index:10;
}
.br-pc{
	display: block;
}
.br-sp{
	display: none;
}

section {
	display: block;
    text-align: center;
    border-bottom: 1px #000 solid;
    padding: 80px 35px;
}
.contents {
	display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    position: relative;
}   
h2 {
	font-family: "Oswald", sans-serif;
	font-size: 5rem;
	margin-bottom:40px;
}
a.anchor{
    display: block;
    padding-top: 90px;
    margin-top: -90px;
}
    
/*ニュースカレンダー*/
    
.contents_flex {
	display: flex block;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    gap:100px;
}
.news_area {
	display: block;
    width: calc(100% - 450px);
    text-align: left;
}
.news_area li {
list-style:none;
margin-bottom: 20px;
padding-bottom:20px;
border-bottom:dotted #CCC 1px;
}
.news_area p.day {
font-family: "Oswald", sans-serif;
font-size: 1.4rem;
margin-bottom: 8px;
text-align: left;
}
.news_area p {
font-size: 1.4rem;
line-height:1.8;
text-align: left;
}
.calendar_area {
	display: block;
    width: 350px;
    text-align: center;
}
.calendar_btn {
	display: inline-block;
    background-color: #000;
    padding: 22px 50px;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 3px;
    border-radius: 100vh;
    margin: 25px auto 0;
}
table.wp-calendar-table{
width:100%;
margin:0 auto;
}
table.wp-calendar-table caption{
text-align:left;
font-size: 1.7rem;
font-weight: bold;
margin-bottom:10px;
font-family: "Oswald", sans-serif;
letter-spacing:0;
}
table.wp-calendar-table th{
font-size: 1.5rem;
padding:15px 0px;
font-family: "Oswald", sans-serif;
letter-spacing:0;
}
table.wp-calendar-table td {
font-size: 1.5rem;
padding:10px 0px;
font-family: "Oswald", sans-serif;
}
table.wp-calendar-table td a {
pointer-events: none;
}
table.wp-calendar-table th {
background-color:#000;
color:#fff;
}
table.wp-calendar-table tr th:last-of-type{
color:#E42539;
}
table.wp-calendar-table tr td:last-of-type{
color:#E42539;
}
table.wp-calendar-table tr td:nth-of-type(2){
background-color:#DDD;
}
table.wp-calendar-table tr td[colspan]{
background:none;
}
nav.wp-calendar-nav{
display:none;
}
.calendar_p{
font-size: 1.3rem;
text-align:left;
margin-top: 15px;
}
#wp-calendar tbody tr #today {
background-color: #999;
}
#wp-calendar td[colspan] + td {
background-color:transparent;
}


/*メニュー*/
    
.menu_tit {
    display: block;
    background-color: #000;
    padding: 0 5px 2px 5px;
	font-family: "Oswald", sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: left;
}
.menu_box {
	width:45%;
}
.menu_flex {
	display: flex block;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto 35px;
    padding: 0;
    gap:30px;
    width: 100%;
}
.menu_name {
    color: #000;
    font-size: 1.4rem;
    line-height: 2.3;
    text-align: left;
}
.menu_price {
    color: #000;
	font-family:Helvetica;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: right;
    letter-spacing: 0;
}
.menu_txt {
    color: #000;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: right;
}
.menu_kitsuke_photo {
    display: block;
    float: left;
    margin-right: 80px;
    width: 300px;
}
.menu_kitsuke_txt {
    display: block;
    overflow: auto;
    text-align: left;
}
.menu_kitsuke_p {
    color: #000;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: right;
    margin: -15px auto 10px;
}
.menu_kitsuke_tit {
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 10px;
}
.menu_kitsuke_p2 {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.menu_btn {
	display: inline-block;
    background-color: #000;
    padding: 22px 50px;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 3px;
    border-radius: 100vh;
    margin: 25px auto 0;
}
.menu_products_tit {
	text-align: center;
}
.menu_products {
	display: block;
    margin: 80px auto 0;
    text-align: left;
    max-width: 800px;
}
.menu_products img {
    margin: 0px auto 30px;
}
.kitsuke_menu {
    max-width: 400px;
    float: left;
}


/*スタイリスト*/
    
.st_flex {
display: block grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap:30px 80px;
margin: 0 auto;
justify-content: center;
}

.st_box {
display: block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 5px;
    line-height: 1.8;
    max-width: 250px;
    margin: 0 auto;
}

.st_box span {
    font-size: 1.3rem;
    font-weight: normal;
    letter-spacing: 3px;
}

.st_box img {
margin: 0 auto 10px;
}

/*サロンインフォ*/

table td, table th {
border:none;
padding: 0;
margin:0;
}

table {
border-top:none!important;
}

.salon_line {
width:100%;
height:1px;
border-top:dotted #CCC 1px;
margin:30px auto;
max-width: 900px;
}

.salon{
width: 100%;
max-width: 900px;
margin: 0 auto;
}

.salon th{
text-align:left;
vertical-align:middle;
border-right:solid #CCC 1px;
width:30%;
font-size:1.6rem;
line-height:160%;
letter-spacing:4px;
font-weight:bold;
padding: 0 60px;
}
.salon td{
width:auto;
text-align:left;
font-size:1.6rem;
line-height:1.6;
padding: 0 60px;
}
iframe {
margin: 40px auto 0;
width: 100%;
height: 400px;
}

/*リクルート*/

.rec_p {
font-size:1.8rem;
font-weight:bold;
text-align: center;
margin:0px auto 20px;
}
.rec_p2 {
font-size:1.4rem;
line-height:1.8;
text-align: center;
margin:0px auto 40px;
}
.rec_flex {
display: flex;
margin: 0 auto 40px;
align-items: center;
justify-content: center;
gap:80px;
}
.rec_line {
width:1px;
height:80px;
border-right:dotted #CCC 1px;
}
.rec_btn {
display: block flex;
border: #000 1px solid;
padding: 20px 50px;
    box-sizing: border-box;
    position: relative;
    font-size: 1.6rem;
    text-align: center;
    border-radius: 5px;
    line-height: 1;
    margin: 0;
    font-weight:bold;
    letter-spacing: 4px;
    align-items: center;
    justify-content: center;
    max-width: 300px;
}
.rec_btn:before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 24px;
    background: url("images/icon_mail.svg") left center no-repeat;
    background-size: contain;
    transition: all .3s;
    margin: 0 25px 0 0;
}
.rec_tel_p {
font-size:1.2rem;
text-align: center;
margin:0px auto 10px;
letter-spacing: 4px;
}
.rec_tel {
font-family: "Oswald", sans-serif;
font-weight: bold;
font-size: 3.5rem;
text-align: center;
margin:0px auto;
display: flex;
align-items: center;
}
.rec_tel:before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 24px;
    background: url("images/icon_tel.svg") left center no-repeat;
    background-size: contain;
    transition: all .3s;
    margin: 0 25px 0 0;
}

.rec_btn:hover {
    opacity: .7;
    -webkit-transform: translate(1px,1px);
    transform: translate(1px,1px);
}
.c-contactForm .c-formItem{
  width: 100%;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 25px;
}
.c-formItem .c-form__ttl{
  width: 250px;
  font-size: 1.6rem;
  font-weight: bold;
    text-align: left;
}
.c-formItem .c-form__ttl label span{
  color: #fff;
  background: #000;
  margin-left: 10px;
  font-size: 1.4rem;
  padding: 2px 3px;
}
.c-formItem .c-form__input{
  width: calc(100% - 250px);
	text-align:left;
}
.c-contactForm .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:first-child{
  margin-left: 0;
}
.c-formItem .c-form__input input.wpcf7-text,
.c-formItem .c-form__input textarea.wpcf7-textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #898989;
  border-radius: 5px;
  box-sizing: border-box;
}
.c-contactForm .c-formSubmit{
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin: 25px auto;
}
.c-formSubmit__back a,
.c-formSubmit__next input{
display: block;
background: #000;
padding: 20px 100px;
position: relative;
font-size: 1.6rem;
text-align: center;
border-radius: 5px;
line-height: 1;
margin: 0;
font-weight:bold;
letter-spacing: 4px;
color: #fff;
width: 100%;
max-width: 400px;
}
.c-formSubmit__back a:hover,
.c-formSubmit__next input:hover{
    opacity: .7;
    -webkit-transform: translate(1px,1px);
    transform: translate(1px,1px);
}
.c-contactForm .c-formSubmit .wpcf7-spinner{
  display: none;
}
span.wpcf7-not-valid-tip{
line-height:1.8;
font-size:1.2rem;
}
.screen-reader-response ul{
display:none;
}

.policy {
display:block;
border: 1px solid #ccc;
position: relative;
height:200px;
overflow-y: scroll;
background-color:#FFF;
padding:12px 20px;
margin: 50px auto;
text-align:left;
}
.policy::-webkit-scrollbar{
width: 5px;
background-color: #FFF;
}
.policy::-webkit-scrollbar-track{
background-color: #FFF;
}
.policy::-webkit-scrollbar-thumb{
background-color: #000;
border-radius: 100vh;
}
.policy_p1 {
font-size: 1.4rem;
font-weight:normal;
margin-bottom:20px;
line-height:1.8;
}
.policy_p2 {
font-size: 1.5rem;
margin-bottom:8px;
font-weight:bold;
}


@media screen and (max-width:768px) {
/*コンテンツ*/
h1 {
font-size: 1.7rem;
}
.kv_logo {
width:100px;
top: 63%;
}
.br-sp{
	display: block;
}
.br-pc{
	display: none;
}
    
section {
    padding: 40px 25px;
}  
h2 {
    font-size: 3.5rem;
    margin: 0 auto 30px;
}
a.anchor{
    padding-top: 70px;
    margin-top: -70px;
}
    
/*ニュースカレンダー*/
    
.contents_flex {
	display: block;
}
.news_area {
	display: block;
    width: 100%;
    text-align: center;
margin-bottom: 40px;	
}
.news_area li {
margin-bottom: 18px;
padding-bottom:18px;
}
.news_area p.day {
font-size: 1.3rem;
margin-bottom: 8px;
}
.news_area p {
font-size: 1.3rem;
}
.calendar_area {
    width: 100%;
}
.calendar_btn {
    padding: 18px 30px;
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin: 20px auto 0;
}
table.wp-calendar-table{
width:100%;
margin:0 auto;
max-width:400px;
}
table.wp-calendar-table caption{
font-size: 1.6rem;
margin-bottom:10px;
}
table.wp-calendar-table th{
font-size: 1.4rem;
padding:15px 0px;
}
table.wp-calendar-table td {
font-size: 1.4rem;
padding:10px 0px;
}
table.wp-calendar-table td a {
pointer-events: none;
}
.calendar_p{
font-size: 1.2rem;
display:block;
margin:15px auto 0;
max-width:400px;
width:100%;
}

/*メニュー*/
    
.menu_tit {
    padding: 0 5px 2px 5px;
    font-size: 2rem;
    margin-bottom: 14px;
}
.menu_box {
	width:100%;
}
.menu_flex {
    margin: 0 auto 20px;
}
.menu_name {
    font-size: 1.3rem;
    line-height: 2.2;}
.menu_price {
    font-size: 1.7rem;
    line-height: 1.68;
}
.menu_txt {
    text-align: left;
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.menu_kitsuke_photo {
    float: none;
    margin: 20px auto 18px;
    width: 80%;
    max-width: 300px;
}
.menu_kitsuke_p {
    font-size: 1.1rem;
    text-align: left;
    margin: -8px auto 10px;
}
.menu_kitsuke_tit {
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.menu_kitsuke_p2 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}
.menu_btn {
    padding: 18px 30px;
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin: 5px auto 0;
}
.menu_products_tit {
	text-align: left;
}
.menu_products {
    margin: 45px auto 0;
}
.menu_products img {
    margin: 0px auto 18px;
}
.kitsuke_menu {
    max-width: 100%;
    float: none;
}
    
/*スタイリスト*/
    
.st_flex {
gap:30px 50px;
}

.st_box {
    font-size: 1.7rem;
    letter-spacing: 5px;
    width: 80%;
    margin: 0 auto;
}

.st_box span {
    font-size: 1.2rem;
}

.st_box img {
margin: 0 auto;
}
    
/*サロンインフォ*/

table.salon td,
table.salon th {
display: block;
width: 100%;
}

.salon_line {
margin:18px auto;
}

table.salon th{
width: 100%;
border-right:none;
font-size:1.4rem;
letter-spacing:4px;
padding: 0 0 8px 0;
}
table.salon td{
width: 100%;
font-size:1.4rem;
padding: 0;
}
iframe {
margin: 20px auto 0;
height: 300px;
}
    
/*リクルート*/

.rec_p {
font-size:1.6rem;
}
.rec_p2 {
font-size:1.2rem;
margin: 0 auto 25px;
}
.rec_flex {
display: block;
margin: 0 auto 40px;
position: relative;
text-align: center;
}
.rec_flex div {
margin: 0 auto;
text-align: center;
}
.rec_line {
display: none;
}
.rec_btn {
font-size: 1.4rem;
}
.rec_tel_p {
font-size:1.1rem;
margin:0px auto 8px;
}
.rec_tel {
font-size: 3.2rem;
margin:0px auto 30px;
justify-content: center;
}
.rec_tel:before {
margin: 0 15px 0 0;
}

.rec_btn:hover {
    opacity: .7;
    -webkit-transform: translate(1px,1px);
    transform: translate(1px,1px);
}
.c-formItem .c-form__ttl{
  font-size: 1.4rem;
}
.c-formItem .c-form__ttl label span{
  margin-left: 7px;
  font-size: 1.2rem;
  padding: 2px 3px;
}
.c-contactForm .c-formItem{
    display: block;
  }
  .c-formItem .c-form__ttl,
  .c-formItem .c-form__input{
    width: 100%;
    margin: 0 0 10px 0;
  }
  .c-formItem .c-form__input input.wpcf7-text,
  .c-formItem .c-form__input textarea.wpcf7-textarea{
    padding: 10px;
  }
.c-formSubmit__back a,
.c-formSubmit__next input{
  font-size: 1.6rem;
}
.policy {
padding:11px 16px;
margin: 30px auto;
}
.policy_p1 {
font-size: 1.2rem;
margin-bottom:15px;
line-height:1.6;
}
.policy_p2 {
font-size: 1.3rem;
margin-bottom:7px;
}
    
}

@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
	