@charset "utf-8";
/* style.css */
/* CSS記述規則：全ページ共通スタイルを記述
				基本はclass属性を使用すること
				mainタグにページカテゴリごとのid属性を設定
				ページ名：クラス名／
				*/

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ページ共通設定
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
* {
	margin: 0px;
	padding: 0px;	
}
body {
	width: 100%;
	margin:0;
	height: 100%;
	font-family: "メイリオ","Hiragino Kaku Gothic Pro",Meiryo,"ヒラギノ角ゴ Pro W3","MS PGothic","MS UI Gothic",Helvetica,Arial,sans-serif;
	overflow-x: hidden;
}
h1, h2, h3, p, li, button, figure, address, form {
	color: #000000;
}

h1 {
	margin: 0;
}
h1,h2,h3,h4,h5,h6 {
	font-weight: 700;
	color: #000;
}
h1,h2,h3,h4,h5,h6,
ul li,
ol li,
p {
	word-break: break-all;	/* 英数字折り返し */
}
p {
	line-height: 1.6;
	padding: 0;
	/*margin-bottom: 0;*/
}
input[type="text"]:focus, textarea:focus {
	outline: 0;
	border: 0px;
}
button[type="button"]:focus {
	outline: 0;
}
input:invalid {	/* Firefoxバリデート枠線消し */
	box-shadow: none;
}
ul, ol,
ul li,
ol li {
	list-style: none;
}

/* clear:both */
.clear {
	clear: both;
}

/* リンク */
a {
	color: #000000;
}
a:hover {
	color: #96785e;
	text-decoration: none;
}

/* フォント指定 */
/* サイズ */
ul li,
ol li,
dl dd,
p,
td,
th,
input[type="text"],
input[type="submit"],
input[type="email"],
select,
textarea,
label {
	font-size: 0.95rem;
}

em {
	font-style: normal;
	font-weight: bold;
}

/* ボールド */
.fwbold {
	font-weight: bold;

}

/* 明朝体 */
.mincho {
 	font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.mincho6 {
 	font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media all and (-ms-high-contrast:none){	/* IE10～対策 */
.mincho, .mincho6 {
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
}
.timesn {
	font-family: 'Times New Roman', serif;
}

/* 文字色 */
.txtPink {
	color: #e5007f;	/* カラー指定：ピンク */	
}

/* テキスト配置指定 */
.txtC {
	text-align: center;
}
.txtL {
	text-align: left;
}
.txtR {
	text-align: right;
}

/* 画像中央寄せ */
.imgC {
	display: block;
	margin: 0 auto;
}

/* マージン */
.mb1hrem {
	margin-bottom: 1.5rem;
}
.mb2rem {
	margin-bottom: 2rem;
}
.mb0 {
  margin-bottom: 0;
}

/* サイズ調整 */
.mlmr15 {
	margin-left: 15px;
	margin-right: 15px;
}
.plpr15 {
	padding-left: 15px;
	padding-right: 15px;
}

/* PC画面非表示 */
.dispNone,
.dispNone_sm,
.dispNone_md,
.dispFlexNone {
	display: none;
}
/* PC画面表示 */
.dispBlock,
.dispBlock_sm,
.dispBlock_md {
	display: block;
}
.dispFlex {
	display: flex;
}
.brNone br {
	display: none;
}

/*********************** ▼▼▼デバイス対応 992px以下▼▼▼ ***********************/
@media screen and (max-width: 992px) {
/* サイズ調整 */
.mlmr15 {
	margin-left: 16px;
	margin-right: 16px;
}
.plpr15 {
	padding-left: 16px;
	padding-right: 16px;
}
}

/*********************** ▼▼▼デバイス対応 767px以下▼▼▼ ***********************/
@media screen and (max-width: 767px) {
main {	/* Gメニューの分 */
	padding-top: 70px;
}
/* サイズ */
ul li,
ol li,
dl dd,
p,
td,
th,
input[type="text"],
input[type="submit"],
input[type="email"],
select,
textarea,
label {
	font-size: 0.95rem;
}
/* マージン */
.mb1hrem {
	margin-bottom: .5rem;
}
.mb2rem {
	margin-bottom: 1rem;
}

/* サイズ調整 */
.mlmr15 {
	margin-left: 0;
	margin-right: 0;
}
.plpr15 {
	padding-left: 0;
	padding-right: 0;
}

/* 画面表示 */
.dispNone_md {
	display: block;
}
/* 画面非表示 */
.dispBlock_md {
	display: none;
}
/* 改行無効 */
.brmdNone br {
	display: none;
}
.brNone br {
	display: block;
}
}

/*********************** ▼▼▼デバイス対応 575px以下▼▼▼ ***********************/
@media screen and (max-width: 575px) {
/* サイズ */
ul li,
ol li,
dl dd,
p,
td,
th,
input[type="text"],
input[type="submit"],
input[type="email"],
select,
textarea,
label {
	font-size: 0.9rem;
}
/* 画面表示 */
.dispNone_sm {
	display: block;
}
/* 画面非表示 */
.dispBlock_sm {
	display: none;
}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
WordPress設定
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ビジュアルエディタ画像 */
img.alignright { display: block; margin: 0 0 0 auto; }/* 配置位置 右 */
img.alignleft { display: block; margin: 0 auto 0 0; }/* 配置位置 左 */
img.aligncenter { display: block; margin: 0 auto; }/* 配置位置 中央 */
img.float-left { float:left; }/* 回り込み 左 */
img.float-right { float:right; }/* 回り込み 右 */


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
bootstrapカスタマイズ
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* container */
.container {
	max-width: 1110px;
	padding-left: 0px;
	padding-right: 0px;
	margin: 0 auto;
}
.row {
	margin-left: 0;
	margin-right: 0;
}

/*********************** ▼▼▼デバイス対応 1180px以下▼▼▼ ***********************/
@media screen and (max-width: 1180px) {	/* 20200422追記 */
.container {
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}
}

/*********************** ▼▼▼デバイス対応 992px以下▼▼▼ ***********************/
@media screen and (max-width: 992px) {
.container {
	padding-left: 25px;
	padding-right: 25px;
}
}

/*********************** ▼▼▼デバイス対応 767px以下▼▼▼ ***********************/
@media screen and (max-width: 767px) {
.container {
	padding-left: 20px;
	padding-right: 20px;
}
.col-md-6 {
	padding-left: 0;
	padding-right: 0;
}
.col-md-12 {
	padding-left: 0;
	padding-right: 0;
}
}

/*********************** ▼▼▼デバイス対応 575px以下▼▼▼ ***********************/
@media screen and (max-width: 575px) {
.container {
	padding-left: 15px;
	padding-right: 15px;
}
.col-sm-12 {
	padding-left: 0;
	padding-right: 0;
}
}

/* ヘッダーメニュー */
/*.menu_extend {
	border: none;
}
.menu_extend a {
	font-size: 1rem;
}*/


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Slick
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* Slick枠線消し */
.slick-slide {
	outline:none;
}
/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}
.slick-dots {
    position: absolute;
	position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 20px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '●';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
リンクボタン共通CSS
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* リンクボタン大ベース */
.linkBtnL a {
	display: block;
	width: 90%;
	max-width: 480px;
	padding: 12px 10px;
	margin: 0 auto 15px;
	border: 3px solid #ae937c;
	background-color: rgba(255, 255, 255, 0.5);
	color: #96785e;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	transition: all 0.5s ease-in-out;
}
@media all and (-ms-high-contrast:none){	/* IE10～対策 */
.linkBtnL a {
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	}
}
.linkBtnL a:hover {
	background-color: #ae937c;
	color: #fff;
}

/* リンクボタン小ベース */
.linkBtnS a {
	display: inline !important;
	padding: 10px 40px 9px 30px;
	margin: 0 auto 15px;
	background-color: #a78a71;
	color: #fff;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 1rem;
	text-align: center;
	letter-spacing: -.1rem;
	transition: all 0.5s ease-in-out;
}
@media all and (-ms-high-contrast:none){	/* IE10～対策 */
.linkBtnS a {
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	}
}
.linkBtnS a:hover {
	background-color: #8b6e55;
}

/* リンクボタン大・小矢印 */
.arrowL a, .arrowLw a, .arrowS a {
	position: relative;
 	display: block;
}
.arrowL a::before, .arrowL a::after, .arrowLw a::before, .arrowLw a::after {
	content: '';
 	width: 13px;
 	height: 13px;
 	border: 0px;
 	border-top: solid 1px #ae937c;
 	border-right: solid 1px #ae937c;
 	-ms-transform: rotate(45deg);
 	-webkit-transform: rotate(45deg);
  	transform: rotate(45deg);
 	position: absolute;
 	top: 40%;
 	/*margin-top: -12px;*/
}
.arrowLw a::before, .arrowLw a::after {
 	border-top: solid 1px #fff;
 	border-right: solid 1px #fff;
}
.arrowL a::before, .arrowLw a::before {
 	right: 5%;
}
.arrowL a::after, .arrowLw a::after {
 	right: 6.6%;
}
.arrowL a:link::before, .arrowL a:link::after, .arrowL a:visited::before, .arrowL a:visited::after {
	border-top-color: #ae937c;
	border-right-color: #ae937c;
}
.arrowL a:hover::before, .arrowL a:hover::after {
	border-top-color: #fff;
	border-right-color: #fff;
}
.arrowL a:active::before, .arrowL a:active::after {
	border-top-color: #fff;
	border-right-color: #fff;
}

/* リンクボタン小矢印追加分 */
.arrowS a::before, .arrowS a::after {
	content: '';
 	width: 8px;
 	height: 8px;
 	border: 0px;
 	border-top: solid 1px #fff;
 	border-right: solid 1px #fff;
 	-ms-transform: rotate(45deg);
 	-webkit-transform: rotate(45deg);
  	transform: rotate(45deg);
 	position: absolute;
 	top: 40%;
 	/*margin-top: -13px;*/
}
.arrowS a::before {
 	right: 15px;
}
.arrowS a::after {
 	right: 19px;
}

/*********************** ▼▼▼デバイス対応 767px以下▼▼▼ ***********************/
@media screen and (max-width: 767px) {
.linkBtnL a {
	padding: 10px 10px;
	border: 3px solid #ae937c;
	font-size: 1.1rem;
}
}

/*********************** ▼▼▼デバイス対応 575px以下▼▼▼ ***********************/
@media screen and (max-width: 575px) {
.linkBtnL a {
	border: 2px solid #ae937c;
}
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
価格共通CSS
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.price001 {
	color: #e5007f;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W6", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 1.1rem;	
	font-weight: bold;
	line-height: 1.2;
}
.price002 {
	color: #e5007f;
	font-size: 1.6rem;	
	font-weight: bold;
	line-height: 1.2;
	text-align: right;
	padding-top: 10px;
	margin-bottom: 0;
}
.price003 {
	color: #e5007f;
	font-size: 1.4rem;	
	font-weight: bold;
	line-height: 1.2;
	padding-top: 15px;
}
.price001 span {
	font-size: 2.6rem;
 	font-family: "Times New Roman", serif;
	font-weight: normal;
	padding-left: 5px;
	vertical-align: -1px;
}


/*********************** ▼▼▼デバイス対応 767px以下▼▼▼ ***********************/
@media screen and (max-width: 767px) {
.price002 {
	font-size: 1.2rem;	
	padding-top: 0;
	margin-top: 0;
}
}


/*********************** ▼▼▼デバイス対応 575px以下▼▼▼ ***********************/
@media screen and (max-width: 575px) {
.price001 {
	font-size: .9rem;
}
.price002 {
	font-size: 1rem;	
}
.price003 {
	font-size: 1.2rem;
	padding-top: 10px;
	margin-bottom: 0;
}
.price001 span {
	font-size: 2rem;
}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
リスト共通CSS
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.ul001 li {
	line-height: 1;
}
.ul002 li {
	margin-bottom: .2rem;
	text-indent: -1.3rem;
	margin-left: .7rem;
	padding-left: .5rem;
	line-height: 1.3;
}
.ul001 li::before, .ul002 li::before {
	content: "●";
	margin-right: 2px;
	color: #ae937c;
	font-size: 1.2rem;
	vertical-align: middle;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
定義リスト共通CSS
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.dlBox001 {
	border: 2px solid #ae937c;
	padding: 35px 35px 0;
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 2rem;
}
.dlBox001 dl {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.6;
}
.dlBox001 dt {
	width: 22%;
	padding-bottom: 1rem;
}
.dlBox001 dd {
	width: 76%;
	padding-bottom: 1rem;
}
/*********************** ▼▼▼デバイス対応 992px以下▼▼▼ ***********************/
@media screen and (max-width: 992px) {
.dlBox001 {
	padding: 25px 25px 0;
	margin-bottom: 1.5rem;
}
.dlBox001 dl {
	margin-bottom: 0;
}
.dlBox001 dt {
	padding-bottom: .5rem;
}
.dlBox001 dd {
	width: 76%;
	padding-bottom: .5rem;
}
}
/*********************** ▼▼▼デバイス対応 767px以下▼▼▼ ***********************/
@media screen and (max-width: 767px) {
.dlBox001 {
	padding: 20px 20px 0;
	margin-bottom: 1rem;
	margin-left: 0;
	margin-right: 0;
}
.dlBox001 dt {
	width: 30%;
	padding-bottom: 0;
	font-size: 0.95rem;
}
.dlBox001 dd {
	width: 68%;
	padding-bottom: 0;
}
}

/*********************** ▼▼▼デバイス対応 575px以下▼▼▼ ***********************/
@media screen and (max-width: 575px) {
.dlBox001 {
	padding: 15px 15px 0;
}
.dlBox001 dl {
	display: block;
}
.dlBox001 dd {
	width: 100%;
}
.dlBox001 dt {
	width: 100%;
	font-size: 0.9rem;
}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ページネーション
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.pagenation {
	text-align: center;
	margin-top: 2rem;
}
.pagenation:after, .pagenation ul:after {
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}
.pagenation ul {
    margin: 0;
}
.pagenation li {
	display: inline-block;
    margin-left: 1px;
	margin-right: 1px;
}
.pagenation li.pn_active {
    background-color: #a78a71;
    color: #fff;
    padding: 5px 10px;
}
.pagenation li a {
    color: #000;;
    display: block;
    padding: 5px 10px;
	transition: all 0.5s ease-in-out;
}
.pagenation li a:hover {
    background-color: #8b6e55;
    color: #fff;
}
.pagenation li.pn_back, .pagenation li.pn_next {
	background-color: transparent;
}
.pagenation li.pn_back a:hover, .pagenation li.pn_next a:hover {
	background-color: transparent;
    color: #8b6e55;
}

/* 矢印 */
.pn_arrowL, .pn_arrowR {
	position: relative;
 	display: inline;
}
.pn_arrowL {
	padding-right: 15px;
}
.pn_arrowR {
	padding-left: 15px;
}
.pn_arrowL::before, .pn_arrowL::after, .pn_arrowR::before, .pn_arrowR::after {
	content: '';
 	width: 8px;
 	height: 8px;
 	border: 0px;
 	border-top: solid 1px #000;
 	border-right: solid 1px #000;
 	position: absolute;
 	top: 30%;
 	/*margin-top: -13px;*/
}
.pn_arrowL::before, .pn_arrowL::after {
 	-ms-transform: rotate(-135deg);
 	-webkit-transform: rotate(-135deg);
  	transform: rotate(-135deg);
}
.pn_arrowR::before, .pn_arrowR::after {
 	-ms-transform: rotate(45deg);
 	-webkit-transform: rotate(45deg);
  	transform: rotate(45deg);
}
.pn_arrowL::before {
 	left: 0;
}
.pn_arrowL::after {
 	left: 4px;
}
.pn_arrowR::before {
 	right: 0;
}
.pn_arrowR::after {
 	right: 4px;
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
moreボタン
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.more_Span001 a {
	font-size: .85rem;
	background-color: #a78a71;
	color: #fff;
	padding: 0 10px;
	line-height: 1;
	transition: all 0.5s ease-in-out;
}
.more_Span001 a:hover {
	background-color: #8b6e55;
}

/*********************** ▼▼▼デバイス対応 767px以下▼▼▼ ***********************/
@media screen and (max-width: 767px) {
.more_Span001 a {
	font-size: .75rem;
	padding: 0 7px;
}
}

/*********************** ▼▼▼デバイス対応 575px以下▼▼▼ ***********************/
@media screen and (max-width: 575px) {
.more_Span001 p {
	margin-bottom: .5rem;
	line-height: 1.4;
}
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
FACIAL／BODY／OTHERタブ共通設定
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.tabBox001 {
	margin-bottom: 3rem;
	align-items: flex-end;
}
.tabBox001 a {
	text-align: center;
	background-color: #f9f7f2;
	color: #a29fa0;
	font-size: 2.2rem;
	line-height: 1;
	padding: 12px 20px 20px;
	width: 33%;
	margin-left: 0.5%;
	transition: all 0.5s ease-in-out;
	height: 60px;
}
.tabBox001 a h2 {
	color: #a29fa0;
	font-size: 2.2rem;
}
.tabBox001 a:hover, .tabBox001 a.active {
	background: #564d4e url(../images/common/ttlbg002.png) repeat-y left top;
	color: #bc9e84;
	font-size: 2.2rem;
	height: 63px;
	/*padding: 17px 20px 13px;*/
}
.tabBox001 a h2:hover, .tabBox001 a.active h2 {	
	color: #bc9e84;
	font-size: 2.2rem;
}
.tabBox001 a:first-child {
	margin-left: 0;
}

/*********************** ▼▼▼デバイス対応 992px以下▼▼▼ ***********************/
@media screen and (max-width: 992px) {
.tabBox001 {
	margin-bottom: 1.5rem;
}
.tabBox001 a {
	height: 53px;
}
.tabBox001 a h2 {
	font-size: 1.6rem;
	height: 54px;
}
.tabBox001 a:hover, .tabBox001 a.active {
	height: 52px;
}
.tabBox001 a h2:hover, .tabBox001 a.active h2 {
	font-size: 1.6rem;
}
}

/*********************** ▼▼▼デバイス対応 767px以下▼▼▼ ***********************/
@media screen and (max-width: 767px) {
.tabBox001 {
	margin-bottom: 1rem;
}
.tabBox001 a {
	padding: 12px 15px 0;
	height: 46px;
}
.tabBox001 a h2 {
	font-size: 1.2rem;
	height: 46px;
	/*margin-bottom: -50px;*/
	padding: 0;
}
.tabBox001 a:hover, .tabBox001 a.active {
	height: 48px;
	background-size: 30%;
}
.tabBox001 a h2:hover, .tabBox001 a.active h2 {
	font-size: 1.2rem;
}
}

/*********************** ▼▼▼デバイス対応 575px以下▼▼▼ ***********************/
@media screen and (max-width: 575px) {
.tabBox001 a {
	padding: 10px 10px 0;
	height: 42px;
}
.tabBox001 a h2 {
	font-size: 1rem;
	height: 42px;
}
.tabBox001 a:hover, .tabBox001 a.active {
	height: 42px;
}
.tabBox001 a h2:hover, .tabBox001 a.active h2 {
	font-size: 1rem;
}
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
ヘッダー共通CSS
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.headArea {
	/*height: 145px;*/
}
.h_logoBox {
	padding-top: 8px;
	padding-bottom: 8px;
	display:flex;
	flex: 1;
    align-items: center; /* 上下中央 */
}
/* 三美創ロゴ */
.h_logo {
	width: 50%;
}
.h_logo img {
	width: 100%;
	max-width: 247px;
}
.h_gmBtn1 a.gmenuYoyaku {
	background: url(../images/head/head_ico001.png) no-repeat center top;
}
.h_gmBtn1 a.gmenuCont {
	background: url(../images/head/head_ico002.png) no-repeat center 5px;
}
.h_gmBtn1 a.gmenuYoyaku:hover {
	background: url(../images/head/head_ico001o.png) no-repeat center top;
}
.h_gmBtn1 a.gmenuCont:hover {
	background: url(../images/head/head_ico002o.png) no-repeat center 5px;
}

/* PC：予約・相談ボタン */
@media screen and (min-width: 768px) {
.h_gmBtn1 {
	width: 20%;
}
.h_gmBtn1 a {
	padding-top: 45px;
	padding-left: 18px;
	padding-right: 18px;
	display: inline-block;
	font-size: 1rem;
	text-align: center;
	text-decoration: none;
}
/* 採用情報・代理店募集ボタン */
.h_gmBtn2 {
	padding: 10px 0 8px;
	box-sizing: border-box;
}
.h_gmBtn2 a {
	color: #ae937c;
	border: 1px solid #ae937c;
	padding: 10px 15px 9px 10px;
	font-size: 0.9rem;
	transition: all 0.5s ease-in-out;
	text-decoration: none;
}
.h_gmBtn2 a:first-child {
	border-right: none;
	padding-left: 15px;
}
.h_gmBtn2 a:hover {
	color: #fff;
	background-color: #ae937c;
}
}

/* Gメニュー */
.h_mBox {
	width: 100%;
	background-color: #564d4e;
}
.h_mBox .h_gmUl {
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
	position: relative;
	margin-bottom: 0;
}
.h_mBox .h_gmUl li {
	font-family: 'Times New Roman', serif;
	font-size: 1.2rem;
	width: 185px;
  	text-align: center;
	line-height: 1.2rem;
}
.h_mBox .h_gmUl li a {
	display: block;
	color: #ffffff;
	padding: 15px 15px 15px;
	transition: all 0.5s ease-in-out;
	text-decoration: none;
}
.h_mBox .h_gmUl li a:hover {
	background-color: #ae937c;
}
/* サブメニュー */
.h_submBox {
	position: absolute;
	z-index: 9999;
	top: 100%;
	left: center;
	margin: 0;
	padding: 20px 15px 20px 10px;
	background: #fff;
	display: flex;
	opacity: 0;
	visibility: hidden;
	transition: 0s;
	width: 185px;
}
.h_subm750 {
	width: 750px;
}
.h_submInbox {
	/*width: 33%;*/
    width: 35%;
	white-space: nowrap;
}
.h_submBox li {
	padding-top: 6px;
	padding-bottom: 6px;
}
.h_mBox .h_gmUl li .h_submInbox li {
    width: auto;
}
.h_submBox li a {
	color: #000 !important;
	font-family: "メイリオ","Hiragino Kaku Gothic Pro",Meiryo,"ヒラギノ角ゴ Pro W3","MS PGothic","MS UI Gothic",Helvetica,Arial,sans-serif;
	font-size: 0.9rem;
	text-align: left;
	display: block;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.h_mBox .h_gmUl .h_submBox li a {
	transition: none;
}
.h_mBox .h_gmUl .h_submBox li a:hover {
	border-left: 4px solid #e5007f;
	padding-left: 7px;
	margin-left: 4px;
	background-color: transparent;
}
/* サブメニューフェード */
.h_gmUl li:hover .h_submBox {
	visibility: visible;
	opacity: 0.95;
}
.h_gmUl li .h_submBox {
	visibility: hidden;
	opacity: 0;
	transition: 1s;
}
/* サブメニュータイトル */
.h_submBox p {
	font-family: "メイリオ","Hiragino Kaku Gothic Pro",Meiryo,"ヒラギノ角ゴ Pro W3","MS PGothic","MS UI Gothic",Helvetica,Arial,sans-serif;
	text-align: left;
	font-weight: bold;
	padding-left: 15px;
	margin-bottom: 0;
}
.h_mBox .h_gmUl .h_submTtl001 a {
	color: #000000;
	display: inline;
	padding-left: 0;
}
.h_mBox .h_gmUl .h_submTtl001 a:hover {
	background-color: transparent;
}

/*********************** ▼▼▼デバイス対応 992px以下▼▼▼ ***********************/
@media screen and (max-width: 992px) {
/* 三美創ロゴ */
.h_logo {
	width: 28%;
	margin-right: 4%;
}
/* 予約・相談ボタン */
.h_gmBtn1 {
	width: 30%;
}
/* 採用情報・代理店募集ボタン */
.h_gmBtn2 {
	padding: 8px 0 8px;
}
.h_gmBtn2 a {
	padding: 10px 15px 9px 10px;
}

/* Gメニュー */
.h_mBox .h_gmUl li {
	font-size: 1rem;
	width: 16%;
}
}



/*********************** ▼▼▼デバイス対応 767px以下▼▼▼ ***********************/
@media screen and (max-width: 767px) {
/* 固定ヘッダー：PC用ボタン群を非表示（ロゴ＋ハンバーガーのみ） */
.headArea .h_logoBox .h_gmBtn1,
.headArea .h_logoBox .h_gmBtn2 {
	display: none;
}
.headArea {
	position: fixed;
	z-index: 9999;
	width: 100%;
}
nav{
     width: 100%;
     height: 70px;
     position: relative;
     background: #fff;
}
.h_logoBox {
	padding-left: 0;
	width: 100%;
}
/* 三美創ロゴ */
.h_logo {
	/*position: static;*/
	width: 100%;
	margin-top: 0;
}
.h_logo img {
	max-width: 150px;
}
.h_mDrawer {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	/*position: relative;*/
	height: 70px;
	padding: 0 1em;
}
/* トグルボタン */
.h_togBtn,
.h_togBtn span {
	display: inline-block;
 	transition: all .4s;
 	box-sizing: border-box;
}
.h_togBtn {
	position: relative;
 	width: 42px;
	height: 34px;
}
.h_togBtn span {
	position: absolute;
 	left: 0;
 	width: 100%;
	height: 4px;
	background-color: #564d4e;
}
.h_togBtn span:nth-of-type(1) {
	top: 0;
}
.h_togBtn span:nth-of-type(2) {
	top: 15px;
}
.h_togBtn span:nth-of-type(3) {
	bottom: 0;
}
.h_togBtn.active span:nth-of-type(1) {
	-webkit-transform: translateY(15px) rotate(-45deg);
	transform: translateY(15px) rotate(-45deg);
}
.h_togBtn.active span:nth-of-type(2) {
	opacity: 0;
}
.h_togBtn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(45deg);
  transform: translateY(-15px) rotate(45deg);
}
/* Gメニュー */
.h_mBox .container {	/* コンテナ左右余白解除 */
	padding-left: 0;
	padding-right: 0;
}
.h_mBox {
	position: fixed;
    right: -100%;
    width: 100%;
    overflow-x: hidden;
	-webkit-transform:translate3d(0,0,0);
	-ms-transform:translate3d(0,0,0);
	transform:translate3d(0,0,0);
	-webkit-transition: ease .5s;
	-ms-transition: ease .5s;
	transition: ease .5s;
	z-index: 9999;
	background-color: #000;
	opacity: 0.8;	
    -webkit-overflow-scrolling: touch;	
}
.h_mBox .h_gmUl {
	display: block;
}
.h_mBox .h_gmUl li {
	width: 100%;
	font-size: 1rem;
	text-align: left;
	border-bottom: 1px solid #fff;
}
.h_mBox .h_gmUl li a {
	padding: 18px 20px 18px 30px;
	color: #fff;
	display: block;
}
.h_mBox .h_gmUl li a:hover {
	background-color: transparent;
}
.h_mBox .h_gmUl li a:active span {
	border-left: 4px solid #e5007f;
	padding-left: 6px;
	margin-left: -10px;
}

/*OPEN時の動き*/
.h_mBox.open {
	-webkit-transform:translate3d(-100%,0,0);
	-ms-transform:translate3d(-100%,0,0);
	transform:translate3d(-100%,0,0);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	/*position: relative;*/
}
.h_submBox {
	display: none;
}

/* 予約・相談ボタン */
.h_gmBtn1sp {
	margin-top: 20px;
	margin-bottom: 15px;
	text-align: center;
}
.h_gmBtn1sp a {
	width: 36%;
	padding-top: 78px;
	margin-left: 15px;
	margin-right: 15px;
	color: #fff;
	font-size: 1rem;
	display: inline-block;
}
.h_gmBtn1sp a.gmenuYoyaku {
	background: url(../images/head/sphead_ico001.png) no-repeat center top;
	background-size: 72px;
}
.h_gmBtn1sp a.gmenuCont {
	background: url(../images/head/sphead_ico002.png) no-repeat center 10px;
	background-size: 76px;
}
/* 採用情報・代理店募集ボタン */
.h_gmBtn2sp {
	padding: 0;
	margin-left: 15px;
	margin-right: 15px;
	margin-bottom: 20px;
}
.h_gmBtn2sp a {
	color: #a27d5d;
	width: 49%;
	display: inline-block;
	background: #fff;
	padding: 16px 15px 14px 15px;
	font-size: 1rem;
	text-align: center;
	margin-left: 2px;
}
.h_gmBtn2sp a:first-child {
	margin-left: 2px;
}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
タイトルエリア共通CSS　★未設定
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* パンくず */
.breadcrumb {
	display: flex;
	padding: 1.9rem 15px 3rem;
	font-size: 0.85rem;
	background: none;
	color: #000;
}
.bdcItem+.bdcItem::before {
	content: "\00A0>\00A0";
	white-space: pre;
}

/*********************** ▼▼▼デバイス対応 992px以下▼▼▼ ***********************/
@media screen and (max-width: 992px) {
.breadcrumb {
	padding: 1rem 18px 0;
}
}

/*********************** ▼▼▼デバイス対応 767px以下▼▼▼ ***********************/
@media screen and (max-width: 767px) {
.bdcArea {
	/*display: none;*/
}
.breadcrumb {
	padding: 0;
}
.breadcrumb li {
	font-size: .8rem;
}
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
コンテンツエリア共通CSS　★未設定
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* コンテンツエリア */
.contArea {
	width: 100%;
	margin-bottom: 10px;
}

/* h1 */
.contArea .ttlArea {
}
.contArea .ttlArea h1 {
	padding: 6.5rem 1rem;
	font-size: 3.2rem;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W6", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bold;
	color: #fff;	
	text-align: center;
	line-height: 1.3;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

/* h2 */
.contArea h2 {
	font-size: 2.5rem;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W6", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bold;
	color: #473e3f;	
	text-align: center;
	line-height: 1.3;
	margin-bottom: 2rem;
	padding: 0;
}

.contArea h3 {
	font-size: 1.3rem;
	font-weight: 700;
	/*padding: 0;*/
}

/*********************** ▼▼▼デバイス対応 992px以下▼▼▼ ***********************/
@media screen and (max-width: 992px) {
/* h1 */
.contArea .ttlArea h1 {
	padding: 3rem 1rem;
	font-size: 2rem;
}
/* h2 */
.contArea h2 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
}
/* h3 */
.contArea h3 {
	margin-bottom: 1rem;
}

}

/*********************** ▼▼▼デバイス対応 767px以下▼▼▼ ***********************/
@media screen and (max-width: 767px) {
/* h1 */
.contArea .ttlArea {
	margin-bottom: 3%;
}
.contArea .ttlArea h1 {
	padding: 2rem 25px;
	font-size: 1.6rem;
	/*margin-bottom: .5rem;*/
}
/* h2 */
.contArea h2 {
	font-size: 1.3rem;
	margin-bottom: .5rem;
}
/* h3 */
.contArea h3 {
	font-size: 1.1rem;
	margin-bottom: .5rem;
}
}

/*********************** ▼▼▼デバイス対応 575px以下▼▼▼ ***********************/
@media screen and (max-width: 575px) {
/* h1 */
.contArea .ttlArea h1 {
	padding: 1.5rem 15px;
	font-size: 1.4rem;
	/*margin-bottom: .5rem;*/
}
/* h2 */
.contArea h2 {
	font-size: 1.2rem;
}
/* h3 */
.contArea h3 {
	font-size: 1rem;
}
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
サロンリスト／SALON LIST
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.sllArea {
	padding-top: 5%;
	padding-bottom: 3%;
}
.sllArea .ttlSlist {
	font-size: 3rem;
 	font-family: 'Times New Roman', serif;
	font-weight: normal;
	color: #473e3f;
	text-align: center;
	line-height: 1.3;
	margin-bottom: 2rem;
}
.sllBox001 h3 {
 	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W6", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 1.4rem;
	text-align: center;
	padding-top: 15px;
}
.sllBox001 img {
	width: 100%;
}
.sllBox002 p {
	margin-bottom: 0;
}
.sllTel a {
	background: url(../images/common/icotel14px.png) no-repeat left center;
	padding-left: 20px;
}
.sllBox001 .linkBtnL a {
	width: 100%;	
	margin: 15px auto;
	font-size: 1.2rem;
	font-weight: normal;
}

/*********************** ▼▼▼デバイス対応 992px以下▼▼▼ ***********************/
@media screen and (max-width: 992px) {
.sllArea .ttlSlist {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}
}

/*********************** ▼▼▼デバイス対応 767px以下▼▼▼ ***********************/
@media screen and (max-width: 767px) {
.sllArea .container {
	padding-left: 0;
	padding-right: 0;
}
.sllWrap001 .col-sm-12 {
	padding-left: 5px;
	padding-right: 5px;
}
.sllArea .ttlSlist {
	font-size: 1.8rem;
	margin-bottom: .5rem;
}
.sllBox002 {
	min-height: 9rem;
}
.sllBox001 h3 {
	font-size: 1.1rem;
}
.sllBox001 .linkBtnL a {
	font-size: 1.1rem;
}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
NEWS／facebook／フッタバナー共通CSS
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ********************** NEWS ********************** */
.newsArea {
	margin-bottom: 40px;
}
.newsBox001 {
	display: flex;
	justify-content: space-between;
	border-bottom: 3px solid #564d4e;	
	margin-bottom: 2rem;
}
/* NEWS一覧ボタン */
.newsBox001 .linkBtnS {
	height: auto;
	margin-top: 10px;
}
.newsBox001 .linkBtnS a {
	display: inline-block !important;
	margin: 0;
}
.newsArea .ttlNews {
	font-size: 3rem;
 	font-family: "Times New Roman", serif;
	font-weight: normal;
	color: #473e3f;
	line-height: 1.3;
	margin-bottom: 0;
}
.newsArea li {
	padding-bottom: 1.2rem;
	display: flex;
	justify-content: flex-start;
	text-align: left;
}
.newsArea li span {
	color: #e50582;
	width: 8rem;
}
.newsArea li a {
	width: 85%;
	text-align: left;
}

/* ********************** facebook ********************** */
.facArea {
	text-align: right;
	margin-bottom: 40px;
}
.fb-root {
	width: 100%;
}

/* ********************** フッタバナー ********************** */
.fbnArea {
	margin-bottom: 4%;
}
.fbnBox001 div {
	text-align: center;
}
.fbnBox001 img {
	width: 100%;
	max-width: 544px;
}

/*********************** ▼▼▼デバイス対応 992px以下▼▼▼ ***********************/
@media screen and (max-width: 992px) {
/* ********************** NEWS ********************** */
.newsArea .ttlNews {
	font-size: 2.5rem;
	padding-top: 10px;
}
.newsBox001 .linkBtnS a {
	line-height: 1;
	margin-bottom: 5px;
	padding-top: 12px;
	padding-bottom: 12px;
}

/* ********************** facebook ********************** */
.facArea {
	text-align: center;
}
}

/*********************** ▼▼▼デバイス対応 767px以下▼▼▼ ***********************/
@media screen and (max-width: 767px) {
/* ********************** NEWS ********************** */
.newsArea {
	margin-bottom: 20px;
}
.newsBox001 {
	border-bottom: 2px solid #564d4e;
	margin-bottom: 1rem;
}
.newsArea .ttlNews {
	font-size: 1.8rem;
}
.newsArea li {
	padding-bottom: .5rem;
	display: block;
}
.newsArea li span {
	display: block;
	width: 100%;
}
.newsArea li a {
	width: 100%;
}

/* ********************** facebook ********************** */
.facArea {
	margin-bottom: 20px;
}

/* ********************** フッタバナー ********************** */
.fbnBox001 div {
	margin-bottom: 15px;
}
.fbnBox001 img {
	max-width: 360px;
}
}

/*********************** ▼▼▼デバイス対応 575px以下▼▼▼ ***********************/
@media screen and (max-width: 575px) {
/* NEWS一覧ボタン */
.linkBtnS.dispNone_md a {
	width: 50%;
	display: inline-block !important;
}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
フッターバナー／フッターリンク共通CSS
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* footer */
footer {
	width: 100%;
}

/*********************** フッタ連絡先 ********************** */
.ftlArea {
	border-top: 2px solid #8e7765;
	padding-top: 30px;
	padding-bottom: 30px;
}
.f_tWrap001 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center; /* 上下中央 */
}
.f_tBox001 {
	background: url(../images/common/logo2.png) no-repeat left center;
	padding-left: 90px;
	min-height: 72px;
}
.f_tBox001 p {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 0;
}
p.f_tP001 {
	font-size: 1.6rem;
	color: #e5007f;
	letter-spacing: -.1rem;
}
.f_tBox002 {
	padding-top: 10px;
}

.f_tBox002 p {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 0;
}
p.f_tTel {
 	font-family: "Times New Roman", serif;
	font-size: 1.8rem;
	font-weight: normal;	
	background: url(../images/common/icotel19px.png) no-repeat left center;
	padding-left: 25px;
}
p.f_tTel a:hover {
	transition: all 0.5s ease-in-out;
}
/*********************** フッタリンク誘導 ********************** */
.flkArea {
	background-color: #564d4e;
	padding-top: 20px;
	padding-bottom: 20px;
}
.f_lWrap001 dt {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W6", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 1.25rem;
	letter-spacing: -.1rem;
	color: #ae937c;
	margin-top: 1rem;
}
.f_lWrap001 dd {
	margin-bottom: 3px;
}
.f_lWrap001 dd a {
	color: #fff;
	font-size: 0.85rem;
}
.f_lWrap001 dd a:hover {
	border-left: 4px solid #e50380;
	padding-left: 6px;
	margin-left: -10px;
}
.f_lWrap001 dd.no-link {
  color: #fff;
	font-size: 0.85rem;
}


/*********************** 会社概要関連リンク ********************** */
.f_cWrap001 {
	padding-top: 30px;
}
.f_cWrap001 ul {
	text-align: center;
}
.f_cWrap001 ul li {
	display: inline-block;
	padding-left: 10px;
}
.f_cWrap001 ul li span {
	border-right: 1px solid #000;
	font-size: .6rem;
	padding-left: 15px;
	vertical-align: middle;
}

/*********************** コピーライト ********************** */
.copyright {
	width: 100%;
	line-height: 1rem;
	margin: 0 auto 30px;
	text-align: center;
}
.copyright small {
	display: inline-block;
	padding: 0 15px;
	margin: 0 auto;
}

/*********************** ページTOP ***********************/
/*.pageTop a {
	position: fixed;
	*background-color: rgba(86,77,88,1);
	background-color: #564d4e;
	*border-radius: 6px;
	display: block;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	text-indent: -1000px;
}
.pageTop a::after {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin: 0px auto;
	padding: 10px;
}
.pageTop a span {
	visibility: hidden;
}
*/
.pageTop a {
	position: fixed;
	background-color: #564d4e;
	display: block;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	text-indent: -1000px;
}

.pageTop a span {
    display: block;
    width: 20px;
    height: 20px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: 25px auto 0;
    padding: 10px;
}

/*********************** ▼▼▼デバイス対応 992px以下▼▼▼ ***********************/
@media screen and (max-width: 992px) {
/*********************** フッタ連絡先 ********************** */
.ftlArea {
	padding-bottom: 10px;
}
.f_tWrap001 {
	display: block;
}
.f_tBox002 p {
	display: inline-block;
}
p.f_tTel {
	margin-left: 20px;
}
}


/*********************** ▼▼▼デバイス対応 767px以下▼▼▼ ***********************/
@media screen and (max-width: 767px) {
/*********************** フッタ連絡先 ********************** */
.ftlArea {
	border-top: 1px solid #8e7765;
	padding-top: 15px;
	padding-bottom: 0;
}

.f_tBox001 {
	background-size: 50px;
	padding-left: 60px;
	min-height: 50px;
	margin-bottom: .5rem;
}
.f_tBox001 p {
	font-size: 0.9rem;
	line-height: 1.4;
}
p.f_tP001 {
	font-size: 1.3rem;
}
.f_tBox002 {
	padding-top: 0;
	margin-bottom: .5rem;
}
.f_tBox002 p {
	font-size: 0.95rem;
	line-height: 1.4;
}
p.f_tTel {
	font-size: 1.6rem;
}


/*********************** フッタリンク誘導 ********************** */
.flkArea {
	background-color: #fff;
	padding-top: 0;
	padding-bottom: 0;
}
.f_lUl001sp {
	margin-bottom: 0;
}
.f_lUl001sp li a {
	display: block;
	background-color: #564d4e;
	color: #fff;
	padding: 15px 25px;
	margin-bottom: 2px;
}
.f_lUl001sp li a:active {
	background-color: #ae937c;
}
.f_lUl002sp {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	/*border-top: 1px solid #564d4e;*/
	margin-top: -2px;
}
.f_lUl002sp li {
	width: 50%;
	border-left: 1px solid #564d4e;
	border-bottom: 1px solid #564d4e;
}
.f_lUl002sp li a {
	display: block;
	padding: 15px 25px;
	text-align: left;
}
.f_lUl002sp li:nth-child(odd) {
	border-left: none;
}

/*********************** ページTOP ***********************/
.pageTop a {
	display: none;
}
}


/*********************** ▼▼▼デバイス対応 575px以下▼▼▼ ***********************/
@media screen and (max-width: 575px) {
.f_tBox002 p {
	font-size: 0.9rem;
	line-height: 1.3;
}
p.f_tTel {
	font-size: 1.5rem;
	margin-left: 10px;
}

/*********************** フッタリンク誘導 ********************** */
.f_lUl001sp li a {
	padding: 15px 15px;
}
.f_lUl002sp li a {
	padding: 15px 15px;
}

}

/* 新メニューの個別ページへのリンクを削除した場合（202308 部分公開用） */
a[href=""]:hover,
a[href=""] {
  pointer-events: none !important;
  cursor: default !important;
  text-decoration: none !important;
}

/* ==========================================================================
   SANBISO-49: 本番環境デザインの完全復旧 ＋ Instagram導線の安全な新設
   ========================================================================== */

@media screen and (min-width: 768px) {
    /* 既存のボタン（本番の美しさ）を活かすため、.h_gmBtn1 や通常の a への上書きは一切行いません */

    /* Instagramボタン専用：求人ボタンの枠線や背景のルールを完全に遮断し、右隣に独立配置 */
    .h_gmBtn2 a.h_instaBtn {
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        margin: 0 0 0 16px !important;    /* 本番の求人2連枠のすぐ右隣に空ける美しい隙間 */
        width: 24px !important;            /* ユーザー指定のベストサイズ */
        height: 24px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        vertical-align: middle !important; /* 隣の求人テキストと縦中心を綺麗に整列 */
    }

    .h_gmBtn2 a.h_instaBtn img {
        width: 24px !important;            /* ロゴ画像を24pxで綺麗に表示 */
        height: 24px !important;
        display: block !important;
        opacity: 0.8 !important;           /* サイトのアッシュトーンに馴染ませる透過処理 */
        transition: opacity 0.2s ease !important;
    }

    .h_gmBtn2 a.h_instaBtn:hover img {
        opacity: 1 !important;             /* マウスを乗せたときに少し濃くする */
    }
}

@media screen and (max-width: 767px) {
    /* スマホ幅では本番環境の仕様通り、求人や予約アイコンを安全に非表示にするガード */
    .h_gmBtn1 { display: none !important; }
    .h_gmBtn2 { display: none !important; }
}

/* ==========================================================================
   SANBISO-49: スマホヘッダーへのInstagramアイコン常時露出（UX改善）
   ========================================================================== */

/* PC環境：スマホ専用ボタンを完全に非表示にするガード */
@media screen and (min-width: 768px) {
    .h_instaBtnSp {
        display: none !important;
    }
}

/* スマホ環境（画面幅 767px 以下）：ハンバーガーボタンの左隣にピタッと固定 */
@media screen and (max-width: 767px) {
    /* スマホ幅では本番の仕様通り、求人や予約アイコンを安全に非表示にするガード */
    .h_gmBtn1 { display: none !important; }
    .h_gmBtn2 { display: none !important; }

    /* スマホ用Instagram：ハンバーガーとの距離を適切に離す微調整 */
    .h_instaBtnSp {
        display: inline-flex !important;
        position: absolute !important;
        right: 85px !important;                 /* ★68pxから85pxへ変更！ハンバーガーとの間に美しい安全マージンを確保 */
        top: 50% !important;
        transform: translateY(-50%) !important; /* 垂直方向のど真ん中にロック */
        width: 26px !important;                 
        height: 26px !important;
        z-index: 99 !important;                 
        background: transparent !important;
        border: none !important;
    }

    .h_instaBtnSp img {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        opacity: 0.85 !important;               
    }
}

/* ==========================================================================
   SANBISO-49: SALON LIST予約エリアのラグジュアリー化（丸アイコン✕縦2段✕明朝体）
   ========================================================================== */

/* 店舗予約エリアのボタン全体の並び替え（PC幅：768px以上） */
@media screen and (min-width: 768px) {
    .sll-vbox-container {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: flex-start !important;
        width: 100% !important;
    }

    /* ネット予約とLINEを囲むエリアを横並びにするためのベース */
    .sll-vbox-row {
        display: inline-flex !important;
        flex-direction: column !important; /* ★アイコンとテキストを「縦2段」にする魔法の指示 */
        align-items: center !important;
        justify-content: center !important;
        width: 45% !important;             /* 左右に2つ並べるため約半分の幅に */
        height: auto !important;
        background: transparent !important; /* 不格好な背景色を完全消去 */
        border: none !important;            /* 四角い枠線を完全消去 */
        padding: 0 !important;
        margin: 0 2% 6mm 2% !important;    /* 左右の適切な間隔と、下のボタンへの余白 */
        text-decoration: none !important;
        vertical-align: top !important;
        box-sizing: border-box !important;
    }

    /* アイコン部分を「丸型」に整形する共通設定 */
    .sll-vbox-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 48px !important;
        height: 48px !important;
        margin: 0 0 8px 0 !important;
        flex-shrink: 0 !important;
    }

    .sll-vbox-icon img {
        width: 48px !important;            /* 押しやすく可愛い48pxサイズ */
        height: 48px !important;
        border-radius: 50% !important;     /* ★完全な「真丸」にするプロの技 */
        object-fit: cover !important;
        display: block !important;
    }

    /* テキスト部分を上品な明朝体へ変更 */
    .sll-vbox-text {
        font-family: 'Shippori Mincho', 'Yu Mincho', serif !important; /* 高級感のある明朝体 */
        font-size: 0.85rem !important;
        font-weight: bold !important;
        line-height: 1.3 !important;
        text-align: center !important;
        color: #ae937c !important;         /* 三美創アッシュブラウン */
        margin-left: 0 !important;
        white-space: normal !important;
    }

    /* LINE側のテキスト色は優しく馴染むグリーン、またはブラウンに統一 */
    .sll-vbox-row.line-friend .sll-vbox-text {
        color: #52c452 !important;
    }

    .sll-vbox-row:hover {
        background: transparent !important;
        text-decoration: none !important;
    }

    /* 一番下の「〇〇店はこちら」の幅広ボタンの横幅を、上の2列に美しく合わせる */
    .sllBox001 .linkBtnL a {
        display: block !important;
        width: 90% !important;
        margin: 0 auto !important;
    }
}

/* スマホ環境（767px以下）：窮屈さを防ぐため完全なセンター縦一列に */
@media screen and (max-width: 767px) {
    .sll-vbox-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }

    .sll-vbox-row {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        background: transparent !important;
        border: none !important;
        margin: 0 0 5mm 0 !important;
        padding: 0 !important;
    }

    .sll-vbox-icon {
        width: 46px !important;
        height: 46px !important;
        margin: 0 0 6px 0 !important;
    }

    .sll-vbox-icon img {
        width: 46px !important;
        height: 46px !important;
        border-radius: 50% !important;
    }

    .sll-vbox-text {
        font-family: 'Shippori Mincho', 'Yu Mincho', serif !important;
        font-size: 0.85rem !important;
        font-weight: bold !important;
        line-height: 1.3 !important;
        text-align: center !important;
        color: #ae937c !important;
        margin-left: 0 !important;
        white-space: normal !important;
    }

    .sll-vbox-row.line-friend .sll-vbox-text {
        color: #52c452 !important;
    }

    .sllBox001 .linkBtnL a {
        width: 100% !important;
        margin-top: 2mm !important;
    }
}

/* ホットペッパーロゴの差し替え調整 */
.sll-vbox-icon img.hpb-logo-img {
    width: 140px !important;       /* 右のLINEアイコンと重さのバランスが取れる上品な幅 */
    height: auto !important;
    border-radius: 0 !important;   /* 真丸になるのを防ぐ */
    margin-bottom: 8px !important;
    object-fit: contain !important;
}

.sll-vbox-row.hp-reserve .sll-vbox-icon {
    width: auto !important;
    height: auto !important;
}

/* ==========================================================================
   SANBISO-50: ホットペッパーロゴの丸め強制解除（最終調整）
   ========================================================================== */

/* 既存の .gmenuYoyaku や a img への丸めルールを、!importantで完全に粉砕する */
.closure-notice-page.mincho a img,              /* お知らせページ内での干渉防止 */
#content .sll-vbox-container a img,            /* SALON LISTエリア内 */
.sll-vbox-container a img.hpb-logo-img,        /* SALON LIST：ホットペッパーロゴのみ */
.sll-vbox-icon img.hpb-logo-img,               /* 丸アイコンCSSより優先度を上げる */
.hpb-logo-img {                                 /* ロゴ自体への直接指定 */
    border-radius: 0 !important;               /* ★丸めを完全に無くす（0にする） */
    object-fit: contain !important;             /* 画像全体を枠内におさめる */
    width: 130px !important;                   /* 右のLINEアイコンとバランスの取れる上品な幅 */
    height: auto !important;
}

/* ==========================================================================
   SANBISO-46: 金沢店 閉店のお知らせ専用スタイル
   ========================================================================== */
.closure-notice-section {
    padding: 30px 15px 80px;
}
.closure-notice-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.notice-title {
    color: #ce4076 !important;
    font-size: 26px !important;
    font-weight: 300 !important;
    letter-spacing: 2px !important;
    margin-bottom: 30px !important;
}
.notice-content-box.gold-border-box {
    border: 3px solid #ae937c;
    padding: 40px 30px;
    background-color: #ffffff;
    line-height: 1.8;
}
.notice-content-box p {
    margin-bottom: 20px;
    color: #473e3f;
    font-size: 15px;
}
.notice-contact-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed #d5c8bd;
}
.notice-btn-wrap {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}
.notice-btn-wrap a {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.btn-brown {
    border: 1px solid #ae937c;
    color: #ae937c !important;
    background: #ffffff;
}
.btn-brown:hover {
    background: #f7f5f2;
}
.btn-brown-solid {
    background: #ae937c;
    color: #ffffff !important;
    border: 1px solid #ae937c;
}
.btn-brown-solid:hover {
    background: #967d68;
}

@media screen and (max-width: 767px) {
    .notice-title { font-size: 20px !important; }
    .notice-content-box.gold-border-box { padding: 25px 15px; }
    .notice-btn-wrap { flex-direction: column; gap: 10px; }
    .notice-btn-wrap a { width: 100%; }
}
