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


/* 変数 */
:root {
	--sectionContentPadding: 20px;
	--sectionContentPaddingV: 3em;
	--naviBgColorHover: #e9e9e9;
	--naviTxtColorHover: #333;
}


body {
	font-family: 'Noto Sans JP', sans-serif;
}
body.not_DCL * {
	transition: none!important;
	transition-delay: 0s!important;
}


/* バーガーボタンスタイル */
body.drawer--normal .drawer-hamburger {
  /* バーガーアイコン線の太さ */
  --hamburgerIconThin: 2px;
  /* バーガーアイコン線の間隔 */
  --hamburgerIconGap: 6px;
  /* バーガーアイコン線の色 */
  color: #333;
  /* ボタンの幅 */
  --hamburgerWidth: 2em;
  /* ボタンの高さ（ 右側の値を変更する ） */
  height: var(--headerHeight, 60px);
  /* ボタンのパディング左右 */
  --hamburgerPaddingH: 15px;
  /* ボタンの角丸 */
  border-radius: 0;
  /* ボタンの背景色 */
  --hamburgerBgColor: rgba(255,255,255,0.5);
  /* バーガーアイコンと文字の間隔 */
  gap: 7px;
}

/* ドロワーメニュースタイル */
:root {
	--drawerWidth:16.25rem;
  --drawerBgColor: #fff;
  --drawerBorder: 1px solid #b1b1b1;
	--drawerULPL: 0px;
}
body.drawer--normal #drawerContents .drawer-menu {
  padding-left: var(--drawerULPL);
	margin-bottom: 0;
}
body.drawer--normal #drawerContents .drawer-menu li {
	border-top: var(--drawerBorder);
	/*overflow: hidden;*/
}
body.drawer--normal #drawerContents .drawer-menu > li:last-child {
	border-bottom: var(--drawerBorder);
}
body.drawer--normal #drawerContents .drawer-menu .sub-menu {
	--drawerULPL: 28px;
	margin-top: -1px;
	margin-bottom: 0;
	padding-left: var(--drawerULPL);
}
body.drawer--normal:not(.drawer--subOpCl) #drawerContents .drawer-menu .sub-menu {
	border-top: var(--drawerBorder);
}
body.drawer--normal.drawer--subOpCl #drawerContents .drawer-menu .sub-menu {
	border-top: var(--drawerBorder);
	border-color: transparent;
}
body.drawer--normal.drawer--subOpCl #drawerContents .drawer-menu .open .sub-menu {
	border-top: var(--drawerBorder);
}
body.drawer--normal #drawerContents .drawer-menu .sub-menu > :first-child {
	margin-top: -1px;
}
body.drawer--normal #drawerContents .drawer-menu a {
	position: relative;
	display: block;
	margin: 0;
	padding: 0.8em 1em;
	color: currentColor;
}
body.drawer--normal #drawerContents .drawer-menu > li > a {
	font-weight: bold;
}
body.drawer--normal #drawerContents .drawer-menu .sub-menu a {
  font-size: 0.9em;
	padding-left: 0;
}
body.drawer--normal #drawerContents .drawer-menu a:hover {
	text-decoration: none;
	color: var(--naviTxtColorHover);
}
body.drawer--normal #drawerContents .drawer-menu a:hover:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(-1 * var(--drawerULPL));
	right: 0;
	background-color: var(--naviBgColorHover);
	z-index: -1;
}
body.drawer--normal #drawerContents .drawer-btnBox {
	display: flex;
	gap: 20px;
	padding: 20px;
	justify-content: center;
}
body.drawer--normal #drawerContents .drawer-btnBox a {
	max-height: 30px;
}
body.drawer--normal #drawerContents .drawer-btnBox .snsLink {
	display: flex;
	text-align: center;
	align-items: center;
	justify-content: center;
	max-width: 30px;
	padding: 0;
}
body.drawer--normal #drawerContents .drawer-btnBox .snsLink .snsIcon {
	max-height: 100%;
	width: 100%;
}


html.drawer-open body {
  position: static;
}


/* ドロワーメニューサブメニュー展開 */
#drawerContents .gnaviContents>li>.sub-menu {
	overflow: hidden;
	transition: all .7s ease;
}
#drawerContents .gnaviContents>li.open>.sub-menu {
	height: auto;
}
#drawerContents .gnaviContents>li>a {
	display: flex;
}
#drawerContents .gnaviContents>li>a .subMenuIcon:before {
	content: '＋';
	display: inline-block;
	margin-right: 0.2em;
}
#drawerContents .gnaviContents>li.open>a .subMenuIcon:before {
	content: '－';
}


/* ナビゲーション */
.onlyGnavi {
	display: none;
}
#GNAVI .onlyGnavi {
	display: inline;
}


/* サブページティザータイトル */
.pageClassSubpage #sub_TH_ImgTitle {
	text-align: center;
	background-color: #0a0a0a;
	padding: 1em;
	color: #fff;
	font-size: 1.6em;
	font-weight: bold;
}


/* 柔軟なレイアウト */
section {
	display: inline-block;
	width: 100%;
	padding: 0 var(--contentsPaddingSide);
	margin: 0 auto;
}
section .sectionContent {
	padding: 0;
	margin: var(--sectionContentPaddingV) auto;
}
section .sectionContent .mb_xp5 {
	margin-bottom: calc(var(--sectionContentPadding) * 0.5);
}
section .sectionContent .mb_x1 {
	margin-bottom: calc(var(--sectionContentPadding) * 1);
}
section .sectionContent .mb_x1p5 {
	margin-bottom: calc(var(--sectionContentPadding) * 1.5);
}
section .sectionContent .mb_x2 {
	margin-bottom: calc(var(--sectionContentPadding) * 2);
}
section .sectionContent .mb_x2p5 {
	margin-bottom: calc(var(--sectionContentPadding) * 2.5);
}
section .sectionContent .mb_x3 {
	margin-bottom: calc(var(--sectionContentPadding) * 3);
}
section .sectionContent > [class*=mb_]:last-child {
	margin-bottom: 0;
}

section.commonColor_pink {
	background-color: pink;
}
section.commonColor_lightgray {
	background-color: lightgray;
}
section.commonColor_lightgreen {
	background-color: #F4F9F3;
}
section[class*=commonColor] .sectionContent {
	padding: var(--sectionContentPadding);
	background-color: #fff;
}

#HEADERSET {
    background: #F7F6F0;
}

#HDLOGO-IMG, #HDLOGO-LINK {
    padding: 5px;
	width: revert-layer;
}

h2 {
    font-size: 1.7em;
}

h2,h3 {
    color: #3A4850;
}

#GNAVICONTENTS01 .gNavi>a {
    color: #260000;
}



/* transition-timing-function 変数定義 */
:root {
	--ttf: cubic-bezier(0.390, 0.575, 0.565, 1.000);
}

/* ふんわり表示 */
.fx_funwari {
	opacity: 0;
	transition: all .5s var(--ttf);
}
.sd-enterd .fx_funwari {
	opacity: 1;
}



.flex_box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}


.flex_item {
    width: calc(100% / 2);
    margin: 2em 0;
    font-size: 0.8em;
    font-weight: bold;
}


.gray_circle {
    width: 20vw;
    height: 20vw;
    background: #cccccc;
    border-radius: 50%;
    margin-bottom: 2em;
    margin-left: auto;
    margin-right: auto;
}

.circle_gaz {
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
}

.gray_sample {
    width: 100%;
    height: 300px;
    background: #cccccc;
    border-radius: 10px;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
}

.gradation_bg {
    background-image: url(../images/gradation_gaz1.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 10px 0;
}

.gradation_bg2 {
    background-image: url(../images/gradation_gaz1.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding: 10px 0;
}

.tategaki_midashi {
	font-size: 1.7em;
	font-weight: 400;
}

.medicell_midashi {
	font-size: 1.4em;
	font-weight: 400;
}



/* リンクボタン */
.button-rink, .button-rink:visited {
    width: 100%;
	font-size: 1em;
    font-weight: bold;
    display: inline-block;
    padding: 15px 0;
    color: #222222 !important;
	border: 1px solid #D9A300;
    position: relative;
    cursor: pointer;
    text-align: center;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
    text-decoration: none;
	border-radius: 100px;
}

.button-rink:hover{
    background: #D9A300;
    text-decoration: none;
    color: #ffffff !important;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
}

/* リンクボタン hotpepperbeauty */
.button-rink_hotpepperbeauty, .button-rink_hotpepperbeauty:visited {
    width: 100%;
	font-size: 18px;
    display: inline-block;
    padding: 15px 0;
    color: #AF2D5B !important;
	border: 1px solid #AF2D5B;
    position: relative;
    cursor: pointer;
    text-align: center;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
    text-decoration: none;
	border-radius: 50px;
}

.button-rink_hotpepperbeauty:hover{
    background: #AF2D5B;
    text-decoration: none;
    color: #ffffff !important;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
}

/* リンクボタン LINE */
.button-rink_line, .button-rink_line:visited {
    width: 100%;
	font-size: 18px;
    display: inline-block;
    padding: 15px 0;
    color: #00B900 !important;
	border: 1px solid #00B900;
    position: relative;
    cursor: pointer;
    text-align: center;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
    text-decoration: none;
	border-radius: 50px;
}

.button-rink_line:hover{
    background: #00B900;
    text-decoration: none;
    color: #ffffff !important;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
}


/* リンクボタン ネット予約 */
.button-rink_netyoyaku, .button-rink_netyoyaku:visited {
    width: 100%;
	font-size: 17px;
    display: inline-block;
    padding: 15px 0;
    color: #006DD9 !important;
	border: 1px solid #006DD9;
    position: relative;
    cursor: pointer;
    text-align: center;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
    text-decoration: none;
	border-radius: 50px;
}

.button-rink_netyoyaku:hover{
    background: #006DD9;
    text-decoration: none;
    color: #ffffff !important;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -o-transition: 0.2s;
    -ms-transition: 0.2s;
    transition: 0.2s;
}




.contact_box {
	border-radius: 20px;
}



/* フッター店舗詳細 */
.foot_info {
	display: flex;
    flex-direction: column;
}

.foot_info :nth-child(1) {
	width: 300px;
    margin-top: 30px;
}
.foot_info :nth-child(2) {
	text-align: center;
	margin-bottom: 20px;
}
.foot_info :nth-child(3) {
	margin-top: auto;
    margin-left: auto;
}



.kiji-midashi {
	font-size: 16px;
	font-weight: normal;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid;
}

.kiji-img {
	text-align: center;
}

.kiji-container_right img,
.kiji-container_left img{
    border-radius: 20px;
}


/* 料金 */
.price_box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid;
	align-items: flex-end;
}

.pickup_midashi {
	border-left: 10px solid #260000;
	padding-left: 10px;
	font-size: 24px;
	font-weight: bold;
}



/* アクセス */
.access_l {
	width: 32%;
	padding: 20px 10px;
	font-weight: bold;
	border-bottom: 1px solid #F8F1E3;
}

.access_r {
	width: 68%;
	padding: 20px 10px;
	border-bottom: 1px solid #F8F1E3;
}

.access_box {
	display: flex;
    gap: 40px;
    flex-direction: column;
    align-items: center;
	padding: 0 var(--contentsPaddingSide);
}


/* よくある質問 */
.faq_l {
    width: 40px;
    font-size: 1.4em;
    vertical-align: middle;
}

.faq_r {
    vertical-align: middle;
	padding-right: 40px;
	font-size: 13px;
}




/* ネイル */
.nailmenu_midashi {
	border-left: 10px solid #260000;
	padding-left: 10px;
	font-size: 24px;
	font-weight: bold;
}

.nail_l {
	width: 70%;
	padding: 20px 10px;
	border-bottom: 1px solid #F8F1E3;
}

.nail_r {
	width: 30%;
	padding: 20px 10px;
	text-align: right;
	border-bottom: 1px solid #F8F1E3;
}


/* インスタグラム埋め込み SP */
/* clear関連 */
.clear { clear:both; }
.clearfix:before,
.clearfix:after,
.cf:before,
.cf:after{
  content: " ";
  display: table;
}
.clearfix:after,
.cf:after{
  clear: both;
}
.clearfix,
.cf {
  *zoom: 1;
}

/**************************************************/
/******　　instagram gallery 基本設定 　　*********/
/**************************************************/
.instaGalleryBox {
  margin-right: -5px;
}
.instaGalleryBox #instaLoading,
.instaGalleryBox #instaError {
  min-height: 200px;
  position: relative;
  text-align: center;
  width: 100%!important;
}
.instaGalleryBox .instaPhotoLink {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  float: left;
  margin: 0 5px 5px 0;
  text-decoration: none;
  width: calc((100% - (5px * 2)) / 2);
}
.instaGalleryBox .instaPhotoLink .instaPhotoItem {
  background-position: center center;
  background-size: cover;
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}
.instaGalleryBox .instaPhotoLink .instaPhotoItem .imageSheed {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}
.instaGalleryBox .photoInfoBox {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  /* height: 50%; */
  color: #fff;
  background-color: rgba(0,0,0,0.5);
  display: none;
}
.instaGalleryBox .instaPhotoLink:hover .photoInfoBox {
  display: block;
}
.instaGalleryBox .tbParent {
  display: table;
  width: 100%;
  height: 100%;
}
.instaGalleryBox .tbCell {
  display: table-cell;
  vertical-align: middle;
}
.instaGalleryBox .lcBoxItem {
  display: inline-block;
  margin: 1em;
}
.instaGalleryBox .lcBoxItem .icon {
  width: 1em;
  margin-right: 0.5em;
  display: inline-block;
  vertical-align: middle;
}
/* instagramギャラリーサンプル画像 */
.instaGalleryBox .samplePhoto {
  background-color: #ccc;
  position: relative;
}
.instaGalleryBox .samplePhoto .sampleTxt {
  bottom: 0;
  color: #fff;
  display: block;
  font-size: 2em;
  height: 2em;
  left: 0;
  margin: auto !important;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  transform: rotate(-45deg);
}



/* （スマートフォン表示） */
@media screen and ( max-width:767.9px )
{
.instaGalleryBox .instaPhotoLink {
  width: calc((100% - (5px * 2)) / 2);
}
}
.captionBox {
	padding-top: 5px;
	line-height: 1.3;
	height: calc(4em * 1.3);
	overflow: hidden;
	-webkit-line-clamp: 4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}



#GALLERY_SLIDE {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50vh;
	margin-bottom: 0;
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: var(--groundColor);
}
#GALLERY_SLIDE .content {
	width: 100%;
}
#GALLERY_SLIDE .swiper-slide {
	--borderWidth: 1px;
	display: grid;
	grid-template-rows: 16vh auto;
	height: auto;
	padding: 10px;
	border: var(--borderWidth) solid #b2b2b2;
	background-color: #fff;
	color: currentColor;
	font-size: 0.9em;
}
#GALLERY_SLIDE .swiper-slide img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
}
#GALLERY_SLIDE .swiper-slide .expl {
	/* color: var(--groundColor); */
	padding: calc(var(--borderWidth) + 0.5em + 5px) 0.5em 0.5em;
}
#GALLERY_SLIDE .swiper-slide .expl .numbr {
	color: #ff7400;
}
#GALLERY_SLIDE .swiper-slide .expl .icon {
	line-height: 1.5;
}
#GALLERY_SLIDE .swiper-slide .expl .icon_arrow {
	width: auto;
	height: 10px;
}

.txt {
	font-size: 1.4em;
	font-weight: bold;
}



/* 記事サークル装飾 */
.circleArticle {
  --borderWidth: 3cqw;
  --borderMargin: 5cqw;
  --contentPadding: 10cqw;
  --color: #70D7D6;
  container-type: size;
  aspect-ratio: 1/1;
	width: 100%;
  max-width: 400px;
  margin-inline: auto;
  /* background-color: #ffd600; */
}
.circleArticleBox .circleArticle:nth-child(2) {
	--color: #4B8FD0;
}
.circleArticleBox .circleArticle:nth-child(3) {
	--color: #244E80;
}
.circleArticle > .borderBox {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - (var(--borderMargin) * 2));
  height: calc(100% - (var(--borderMargin) * 2));
  border-radius: 100vh;
  border: var(--borderWidth) solid var(--color);
  padding: 0;
  margin: var(--borderMargin);
  line-height: 1.5;
}
.circleArticle .num {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: calc(-1 * (var(--borderMargin) + var(--borderWidth)));
  font-size: 25cqw;
  font-weight: bold;
  z-index: 1;
  color: var(--color);
  font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}
.circleArticle .conetnt {
  flex-grow: 0;
  padding: var(--contentPadding);
	padding-left: calc(var(--contentPadding) / 2);
  z-index: 1;
}
.circleArticle .title {
}
.circleArticle p {
  margin: 0;
}
.circleArticle > .borderBox::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  border: 6cqw solid transparent;
  border-inline: 19cqw solid #fff;
  aspect-ratio: 1/1;
  margin-left: calc(-1 * (var(--borderMargin) + var(--borderWidth)));
  z-index: 0;
  /* background-color: red; */
  /* opacity: .5; */
}


.oshirase-day {
    font-weight: bold;
}

.oshirase-box {
    display: flex;
    gap: 30px;
    padding: 0 10px 10px 10px;
	margin-bottom: 10px;
    border-bottom: 1px dashed #ccc;
    justify-content: flex-start;
}