@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Shippori+Mincho+B1:wght@400;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Zen+Old+Mincho:wght@400;600;700&display=swap');

:root {
	--header: 100px;
	scroll-padding: var(--header);

  --main-color: #EF5081;
  --text-color-base: #303030;
  --text-color-sub: #795C2F;
  --text-color-sub2: #7B5D32;
  --text-color-sub3: #7B692A;
  --btn_bg: #FFFFFF;
  --btn_bg2: #F0F0F0;
  --border-color: #CDC7B4;
  --bg_pink: #FFC1CE;
  --bg_pink-light: #FEF0F1;
  --bg_blue: #C1E7FF;
  --bg_blue-light: rgba(193,231,255,0.65);
  
}
@media screen and (min-width: 1024px){
    :root{
        --header: 140px;
    }
}

#root {
  overflow-x: hidden;
}

/* リセットCSS */

/* 要素 フォントサイズ・マージン・パディングをリセット */
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%;
    font-weight: normal;
    vertical-align: baseline;
    background: transparent;
}

/* 行の高=フォントサイズ */
body {
    line-height: 1;
}

/* 新規追加要素をブロック要素化 */
article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section {
    display: block;
}

/* ulのマーカー非表示 */
ol,
ul {
    list-style: none;
}

/* 引用符の非表示 */
blockquote,
q {
    quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    outline: none;
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
    text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
    vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:after {
    overflow: hidden;
    visibility: hidden;
    height: 0;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
}

br {
    line-height: inherit;
}

/*【共通】パーツ
----------------------------------------------------------------*/
/* リンク */
a,
a * {
    -webkit-transition: opacity 0.6s ease;
    -moz-transition: opacity 0.6s ease;
    -o-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    font-family: inherit;
    -webkit-backface-visibility: hidden;
    /* 追加 */
    backface-visibility: hidden;
    /* 追加 */
}

a:hover,
a:active {
    text-decoration: none;
    opacity: 0.8;
    filter: alpha(opacity=80);
    transition: 0.3s ease-in-out;
    color: inherit;
}

.contents-inr{
    max-width: 1230px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

.gjs-dashed .dn{
    display: block;
}
.dn{
    display: none;
}
.dnn{
    display: none;
}

body {
  background-color: #F7F6F1;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  margin-top: 80px;
}
p {
  font-size: 16px;
  color: var(--text-color-base);
  line-height: 28px;
}
p.txt_res {
  color: var(--text-color-sub2);
}
a:hover {
  text-decoration: none;
}
.mb120 {
  margin-bottom: 120px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb48 {
  margin-bottom: 48px;
}
p.mb8 {
  margin-bottom: 8px;
}
p.mb0 {
 margin-bottom: 0px;
}
.pd0 {
  padding: 0px;
}
.max100 {
  max-width: 100%;
}
.c1657 {
  overflow: hidden;
}
.page-top{
    margin-top: 80px;
}
@media screen and (min-width: 768px) {
}
@media screen and (min-width: 1024px) {
    .page-top{
        margin-top: 120px;
    }
}
.header_logo {
  padding: 10px 0px 10px 10px;
}
.header_logo img {
  height: 55px;
}
.newslist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.content_raw {
  display: flex;
  flex-direction: column;
}
.content_raw_center {
  justify-content: center;
}
.content_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.valign_center {
  display: flex;
  align-items: center;
}
.valign_center .container {
  padding: 0px;
}
.row_inner_half {
  width:100%;
}

/* ヘッダー（SP） */
.hd-h1{
  display: none;
}
.header_wrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: #F7F6F1;
  padding: 0px;
  position: fixed;
  z-index: 50;
}
.h_menu .navbar {
  padding: 0px;
}

/* ハンバーガーメニュー（SP） */
.btn_hmenu {
  width: 80px;
  height: 80px;
  background-image: linear-gradient(135deg, rgba(255, 198, 187, 1), rgba(239, 80, 129, 1));
  margin: 0px;
  border-radius: 0px;
}
.btn_hmenu {
  position: fixed;
  top:0px;
  right: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 5;
  outline: none !important;
}
.btn_hmenu.collapsed {
  position: static;
}
.btn_hmenu .navbar-toggler-icon.nav_line {
  background: none;
  width:30px;
  height: 1px;
  border-bottom: 1px solid var(--btn_bg);
  margin: 10px auto;
}
.btn_hmenu.collapsed .navbar-toggler-icon.nav_line {
  width: 45px;
  margin: 6px auto;
}
.btn_hmenu.collapsed .navbar-toggler-icon.nav_line.h_top {
		transform: translateY(0px) rotate(0deg);
}
.btn_hmenu.collapsed .navbar-toggler-icon.nav_line.h_middle {
		display:block;
}
.btn_hmenu.collapsed .navbar-toggler-icon.nav_line.h_bottom {
		transform: translateY(0px) rotate(0deg);
}
.btn_hmenu .navbar-toggler-icon.nav_line.h_top {
		transform: translateY(11px) rotate(38deg);
}
.btn_hmenu .navbar-toggler-icon.nav_line.h_middle {
		display: none;
}
.btn_hmenu .navbar-toggler-icon.nav_line.h_bottom {
		transform: translateY(-11px) rotate(-38deg);
}
.h_window {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  overflow-y: scroll;
  height:100%;
  background-color: #FFFFFF;
  z-index:3;
  -webkit-overflow-scrolling: touch;
}
.h_window_blank {
  width:calc(100% - 640px);
  height: 100%;
}
.h_window_nav {
  width:100%;
  height: 100%;
  padding: 180px 0px 80px;
  align-items: center;
}
.h_window_nav .nav-item {
  width: calc(100% - 40px);
  padding: 30px 25px;
  margin:0px 20px;
  border-bottom: 1px solid var(--border-color);
}
.h_window_nav .nav-item:first-of-type {
  border-top: 1px solid var(--border-color);
}
.h_window_nav .nav-item:last-of-type {
  margin-bottom: 0px;
}
.h_window_nav .nav-item p {
  margin-bottom: 0px;
  font-size:20px;
  line-height: 36px;
}
.h_menu_bottom {
  text-align: center;
  padding: 30px 0px;
}
.h_menu_line {
    margin-bottom: 35px;
}
.h_menu_sp {
  background-image: url(/system_panel/uploads/images/h_menu_bg.png);
  background-size: cover;
  background-position: top;
  padding: 50px 20px;
  margin-top: 40px;
}

.mainimage {
  position: relative;
  height: 150px;
  margin: 0px auto;
  padding: 0px;
}
.mainimage img {
  position: absolute;
  top:0px;
  right: 0;
  z-index: 1;
  height: 150px;
}
.mainimage h2 {
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  left: 30px;
  font-size: 32px;
  z-index: 2;
  color: var(--main-color);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  text-shadow: 0px 0px 28px rgba(255, 255, 255, 1), 0px 0px 28px rgba(255, 255, 255, 1), 0px 0px 28px rgba(255, 255, 255, 1);
}
.content01 {
  padding: 75px 0px 60px 0px;
}
.content02 {
  padding: 0px 0px 60px 0px;
}
.content_inner {
  width:100%;
  display: flex;
  flex-direction: column;
  justify-content:flex-start;
}
.content_inner.sp_rv {
  flex-direction: column-reverse;
}
.bgillust01 {
  background-image: url("/system_panel/uploads/images/01_illust02.png");
  background-size: contain;
  background-position: center right -100px;
  background-repeat: no-repeat;
}
.bgillust01.bgleft {
  background-position: bottom left;
}
.valign_center.bgillust01 .container,
.valign_center.bgillust01.bgleft .container {
  padding: 0px;
}
.main01 {
  background-image: url("/system_panel/uploads/images/01_main.jpg");
  background-size: cover;
  background-position: top;
  padding: 100px 0px 20px 0px;
}
.main01_inner {
  display: flex;
  flex-direction: row-reverse;
}
.main01_text {
  display: inline-block;
  width: auto;
  margin: 0px 0px 0px auto;
  font-size: 18px;
  line-height: 36px;
}
.main01_text .main01_head {
  font-size: 30px;
  line-height: 56px;
  margin-bottom: 35px;
}
.main01_text p {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 30px;
  text-shadow: 0 0 10px #000;
}
.main01_text h2 {
  color: #FFFFFF;
  font-size: 15px;
  line-height: 30px;
  text-shadow: 0 0 10px #000;
}
img.content01_illust01,
img.content01_illust02,
img.content01_image01,
img.oth01_image01 {
  width:100%;
  margin-top: 0px;
}
img.content01_image01,
img.oth01_image01 {
  transform: translateX(0%);
}
.h2base{
  font-size: 34px;
  line-height: 51px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
.h2sub_base {
  color: var(--text-color-sub);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin-bottom: 45px;
}
.about-h2{
  font-size: 34px;
  line-height: 51px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 16px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
h3.h3base {
  font-size: 34px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
h3.h3base.h3base__long{
  font-size: min(34px,6.5vw);
}
h4.h4_subtitle {
  font-size: 34px;
  line-height: 51px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 30px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
}
h3.h3base.mb0 {
  margin-bottom: 16px;
}
.h3sub_base {
  color: var(--text-color-sub);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin-bottom: 45px;
}
h4.h4base {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-color);
  line-height: 38px;
  margin-bottom: 25px;
}

/* トップページ（SP） */
.home_main {
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}
.home_main img {
  width:100%;
}
p.sp_main_text {
  color: var(--main-color);
  font-weight: 700;
  line-height: 38px;
  font-size: 20px;
  margin-bottom:0px;
  margin-top:70px;
}
.homesec01 img.oth01_image01 {
  transform: translateX(36px);
}
.homesec01 h3.h3base {
  margin-top: 30px;
}
.home_service {
  background-image: url(/system_panel/uploads/images/home_bg01.png);
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
}
.home_service h3.h3base,
.home_service .h3sub_base {
		text-align: center;
}
.btn_reserve.btn_haircare.btn_home01 {
  transform: translateX(12%);
  margin-top: 45px;
}
.btn_reserve.btn_haircare.btn_home02 {
  transform: translateX(12%);
}
.btn_reserve.btn_haircare.btn_home01.btn_newsdetail{
  padding: 0;
  margin: 0 auto;
  transform: translateX(0);
}
.oth_txt2.homesec01 {
  background-image: url(/system_panel/uploads/images/home_bg02.png);
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
}

.homesec02 {
  padding: 0px;
}
.oth_txt2.homesec03 {
  padding: 70px 0px 70px 0px;
}
.oth_txt2.homesec04 {
  padding: 0px 0px 70px 0px;
  background: none;
}
.oth_txt2.homesec03 {
  padding: 70px 0px 70px 0px;
  background-image: url("/system_panel/uploads/images/home_bg03.png");
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
}
.home_bana img {
  max-width: 100%;
}
img.shopimage {
  width:100%;
  transform: translateX(-20px);
}
p.sp_shopinfo {
  margin-top: 35px;
}
.btn_reserve.btn_haircare.btn_home01 .btntxt_link img,
.btn_reserve.btn_haircare.btn_home02 .btntxt_link img,
.btn_newslist .btn_reserve.btn_haircare .btntxt_link img {
  width: auto;
  height: auto;
}
.o_menu {
    width: 50%;
    color:var(--btn_bg) !important;
    position: relative;
    transition: all .3s;
}
.o_menu:before{
    content: "";
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(205, 199, 180, .7), rgba(123, 105, 42, .7));
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
    z-index: 1;
}
.o_menu:hover {
  color:var(--main-color) !important;
}
.o_menu:hover:before{
    background-image: linear-gradient(to bottom, rgba(255, 193, 206, 0.7), rgba(255, 198, 187, 0.7));
}
.o_menu img {
  width: 100%;
}

/* 脱毛（SP） */
.epilation__student__txt {
  max-width: 600px;
  width: 100%;
  border: solid 1px var(--main-color);
  font-size: 18px;
  color: var(--main-color);
  padding: 20px 15px;
  margin: 0 auto 30px;
}
.epi_txt {
  padding: 70px 15px 80px 15px;
}
.epi_txt.pt100 {
  padding-top: 50px;
}
.epi_txt.sec_bg {
  background-image: url("/system_panel/uploads/images/03_bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.epi_txt.nobg {
  background: none;
  padding: 0px 15px 0px 15px;
}
.epi_reason img,
.epi_recomend img,
.epi_price img {
  width: 100%;
}
.epi_txt.bg_pink {
  background-image: linear-gradient(180deg, #FFC1CE, #FFC6BB);
}
.epi_txt.bg_blue {
  background-color: #C1E7FF;
}
.epi_txt.bg_pink, .epi_txt.pt120 {
  padding: 70px 0px 80px 0px;
}
.epi_block01 {
  flex-direction: row;
  flex-wrap: wrap;
  transform: translateX(25px);
}
.epi_block01 div {
  width:50%;
  margin-bottom: 20px;
}
.r_item {
  margin-bottom: 50px;
}
.r_item h4.h4base {
  text-align: center;
  margin: 20px 0px;
}
  .r_item h4.h4base strong{
  font-weight: 700;
}
.epi_price_bg {
  background-color: var(--bg_pink-light);
  border-radius: 10px;
  margin:0px 15px;
}
.epi_price_bg__blue {
  background-color: #effafd;
  border-radius: 10px;
  margin:0px 15px;
}
.price_inner {
  margin: 0px auto;
  padding-top: 30px;
  padding-bottom: 30px;
}
.epi_txt p.epi_price_text {
  color: var(--main-color);
  font-size: 16px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}
.epi_txt p.epi_price_text__blue {
  color: #5099EF;
  font-size: 16px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}
.price_inner img.mb64 {
  margin-bottom: 50px;
}
.epi-price__img--face{
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
.epi-price__img--face.mb64{
  margin-bottom: 50px;
}

/* まつげ・まゆ（PC） */
.epi_txt.sec_bg2 {
  background-image: url("/system_panel/uploads/images/08_illust01.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.epi_txt.sec_styling.pt0 {
  padding-top: 0px;
}
.esy_styling_bg {
  background-image: linear-gradient(180deg, #FFC1CE, #FFC6BB);
  margin:0px auto;
}
.epi_txt p.esy_styling_text {
  color: var(--main-color);
  font-size: 18px;
  line-height: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.styling_block {
  margin-bottom: 40px;
}
.styling_block .style_image_wrap {
  width:100%;
  margin-bottom: 15px;
}
.esy_styling_bg {
  padding: 15px;
}
.switch_styling {
  margin-bottom: 13px;
}
.switch_styling a {
  width:100%;
  height: 80px;
  background-color: var(--btn_bg2);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}
.switch_styling a.active {
  background-image: linear-gradient(180deg, #FFC1CE, #FFC6BB);
}
.switch_styling p {
  color: var(--main-color);
  margin-bottom: 0px;
}
.tab-styling {
  display: none;
}
.tab-styling.active {
  display: block;
}
.er_price .table_th p {
  position: relative;
  padding-left: 20px;
}
.er_price .table_th p:before {
  content: '●';
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  left:-3px;
  color: var(--main-color);
  display: inline-block;
}
.er_price .table_th {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}
.er_price .table_td {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.er_price .table_th p {
  color: var(--text-color-base);
  font-weight: 700;
  display: inline-block;
  width: 100%;
  margin: 0px auto;
  text-align: left;
}
img.sp_mb15 {
  margin-bottom: 15px;
}

/* そのほかのメニュー */
.oth_txt2 {
  padding: 70px 15px 80px 15px;
  background-image: url("/system_panel/uploads/images/08_illust01.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.oth_txt2.homesec01 h3.h3base br {
  display: inline;
}
.oth_txt2.nobg {
  background: none;
  padding: 0px 15px 0px 15px;
}
.oth_txt2.bg_pink, .oth_txt2.pt120 {
  padding: 70px 0px 80px 0px;
}
.oth_txt2.bg_pink .mb120 {
  margin-bottom: 70px;
}
.oth_txt3 {
  padding: 70px 15px 70px 15px;
}
.oth_service.oth_txt3 {
  padding: 0px 15px 70px 15px;
}
.other_menu_block {
  display: flex;
  flex-wrap: wrap;
}
.h3othmenutitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}
.h4othmenutitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}
.o_menu p.om_link {
    width: auto;
    font-size: 12px;
    color: inherit;
    margin-bottom: 0px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    color: inherit;
    transform: translateX(-50%);
    z-index: 2;
}
.oth_txt2 .table_td p {
  text-align: left;
}
.oth_txt2.bg_pink {
  background-image: linear-gradient(180deg, #FFC1CE, #FFC6BB);
}
.oth_txt2.bg_blue {
  background-color: #C1E7FF;
}
.now-feature__slider__item {
  margin: 0 10px;
}
.slick-slide img {
  width:100%;
}
.btntxt_link {
  display: flex;
  justify-content:space-between;
  align-items: center;
  height: 63px;
  padding: 0px 24px 0px 32px !important;
}
.btntxt_link img {
  width:32px;
  height: 32px;
}
.btntxt_link p {
  margin-bottom: 0px;
  color: var(--main-color);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 3px;
  font-family: "Shippori Mincho B1", serif;
}
.btntxt_link p.btn_link_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
.oth_txt2 .table_th p {
  position: relative;
  padding-left: 20px;
}
.oth_txt2 .table_th p:before {
  content: '●';
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  left:0px;
  color: var(--main-color);
  display: inline-block;
}
.oth_txt2 .table_th {
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}
.oth_txt2 .table_td {
  width: 100%;
}
.oth_txt2 .table_th p {
  color: var(--main-color);
  font-weight: 700;
  display: inline-block;
  width: 100%;
  margin: 0px auto;
  text-align: left;
}
.oth_txt2 .table_th p.th_price {
  color: var(--text-color-base);
  padding-left: 20px;
}

/* 店舗情報 */
.shopinfo-catch__ttl strong{
  font-weight: 600;
}
.si_txt {
  padding: 70px 0px 60px 0px;
}
.si_txt h3.h3base {
  font-size: 28px;
  line-height: 43px;
}
.si_txt2 {
  padding: 70px 0px 70px 0px;
  background-image: url("/system_panel/uploads/images/08_illust01.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.si_txt2 img {
  margin-bottom: 30px;
}
.si_txt p.text-center {
  text-align: left;
}
.si_txt3 {
  padding: 70px 0px 60px 0px;
}
.si_txt2.pt0,
.si_txt3.pt0 {
  padding-top: 0px;
}
.si_txt4 {
  padding: 0px 0px 70px 0px;
}
.table_wrap {
  padding: 0px;
}
.table_wrap.pickup {
  margin-bottom: 80px;
}
.table_raw {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  border-top: 1px solid var(--border-color);
  padding: 15px 0px;
}
.table_raw:last-of-type{
    border-bottom: 1px solid var(--border-color);
}
.table_th {
  text-align: left;
  width: 100%;
}
.table_td {
  width: 100%;
}
.table_th p {
  color: var(--main-color);
  font-weight: 700;
  display: inline-block;
  width: 100px;
  margin: 0px auto;
  text-align: left;
}
.table_th p,
.table_td p {
  margin-bottom: 0px;
}
.table_td p {
    margin-left: auto;
}
.gmap {
  padding: 0px 15px;
  margin-top: 80px;
}
.gmap div {
  width:100%;
}
.gmap iframe {
  width: 100%;
  height:250px;
  border: none;
}
.gallery_wrap {
  display: flex;
  flex-wrap: wrap;
}
.gallery_wrap .pd0 {
  padding: 0px 7px;
}
.gallery_item {
  width:48%;
  margin-bottom: 14px;
}
.gallery_item img {
  width:100%;
}

/* ご予約 */
.res_btn .content_raw {
  align-items: center;
}
.res_txt {
  padding: 70px 0px;
}
.res_btn {
  padding-bottom: 100px;
}
.r32 {
  margin-right: 0px;
  margin-bottom: 48px;
}

/* よくあるご質問 */
.faq__box{
    padding-top: 60px;
}
.faq-list {
  margin-bottom:120px;
}
.faq-item{
    padding: 0px;
    margin-bottom: 64px;
    cursor: pointer;
}
.faq-item:last-of-type{
    margin-bottom: 0;
}
.nav_faq_item p {
  margin-bottom:0px;
  font-weight:bold;
}
.nav_faq {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 70px 0px;
}
.nav_faq_item {
  width: 100%;
  margin: 0px 15px 20px 15px;
  background-image: linear-gradient(180deg, rgba(255, 193, 206, 1), rgba(255, 198, 187, 1));
  text-align: center;
  padding: 20px 0px;
  border-radius: 5px;
}
.faq-item__cont__inr{
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.faq-item__cont__inr__img{
  display: inline-block;
  background-image: linear-gradient(180deg, rgba(255, 193, 206, 1), rgba(255, 198, 187, 1));
  padding: 22px 30px;
  border-radius: 50px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  width: 50px;
  height: 60px;
  position: relative;
  margin-right:15px;
}
.faq-item__cont__inr__img.icon_ans {
  background-image: linear-gradient(180deg, #d9b47c, #dec196);
}
.faq-item__cont__inr__img p {
  margin-bottom: 0px;
  font-size: 32px;
  color: #FFFFFF;
  line-height: 1;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.faq-item__cont__inr__txt{
    flex: 1;
    padding-right: 35px;
    position: relative;
}
.faq-item__cont__inr__txt p {
  margin-bottom:0px;
}
.faq-item__cont--q .faq-item__cont__inr__txt:before{
    content: "";
    width: 20px;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    top: 10px;
    right: 0;
    transform: translateY(-50%);
}
.faq-item__cont--q .faq-item__cont__inr__txt:after{
    content: "";
    width: 1px;
    height: 20px;
    background-color: var(--main-color);
    position: absolute;
    top: 0;
    right: 10px;
    transform: translateX(50%);
    transition: all 0.3s;
}
.faq-item__cont__inr__txt__p{
    margin-bottom:0px;
}
.faq-item__cont--a{
    display: none;
    border-top: solid 1px #d5d5d5;
    padding-top: 20px;
    margin-top: 30px;
}
.faq-item.is-active .faq-item__cont--q .faq-item__cont__inr__txt:after{
    transform: translateX(50%) rotate(-90deg);
}
.gjs-dashed .faq-item__cont.faq-item__cont--a{
    display: block;
}

/* 新着情報（SP） */
.info-list .blog-item .blogdate {
  margin-bottom: 30px;
}
.info-list .blog-item .blogttl {
  margin-bottom: 20px;
}
.newslist .webgene-pagination a {
  background:none;
  border: 1px solid var(--main-color);
  border-radius: 5px;
  margin-right: 20px;
}
.webgene-pagination li a:hover {
  background-color: var(--main-color) !important;
}
.newslist .webgene-pagination .selected a {
  background-color: var(--main-color);
  border: none;
  border-radius: 5px;
}
.info-list.newslist .blog-item .blogdate{
  margin-bottom: 15px;
}
.info-list.newslist .blog-item .blogcate {
  margin-bottom: 0px;
}

/* 新着情報詳細（SP） */
h3.info-detail-ttl {
  font-size: 24px;
  line-height: 35px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 40px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  border-bottom: 1px solid var(--border-color);
  padding: 0px 20px 24px;
}
.info-detail-content {
  line-height: 1.875;
  padding: 0px 20px;
  margin-bottom:60px;
}
.info-link-list a {
  color:var(--main-color);
  text-decoration:underline;
  margin-bottom: 30px;
}

/* フッター */
.btn_reserve {
  display: inline-block;
  padding: 0px;
  background-color: var(--btn_bg);
  border-radius: 60px;
  width:80%;
  height:67px;
  border: 2px solid var(--main-color);
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.btn_reserve.btn_haircare {
  margin-top: 30px;
  margin-bottom: 30px;
}
.btn_reserve.mb48 {
  margin-bottom: 36px;
}
.btntxt_line {
  display: flex;
  justify-content: center;
  align-items: center;
  height:63px;
}
.btntxt_line img {
  width:32px;
  height: 32px;
  margin-right: 16px;
}
.btntxt_line p {
  margin-bottom: 0px;
  color: var(--text-color-sub3);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 3px;
  font-family: "Shippori Mincho B1", serif;
}
.btntxt_line p.tel {
  color: var(--text-color-sub2);
  font-family: "Zen Old Mincho", serif;
  font-size: 25px;
}
.sp_map iframe{
  width: 100%;
  height: 250px;
}
.footer_info {
  padding: 90px 0px 90px 0px;
}
.c3092 {
  width:100%;
}
.ft-googlemap{
    height: 300px;
    width: 100%;
}
.ft-googlemap iframe{
    width: 100%;
    height: 100%;
}
@media screen and (min-width:768px){
  .sp_map{
    display: none;
  }
    .ft-googlemap{
        height: 400px;
    }
}
@media screen and (min-width:1024px){
    .ft-googlemap{
        height: 640px;
    }
}
@media screen and (min-width:1080px){
}
.c2883 iframe {
  border:none; 
}
.footer_si {
  text-align: center;
}
.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(180deg, rgba(255, 193, 206, 1), rgba(255, 198, 187, 1));
  height:50px;
}
.copyright p {
  text-align:center;
  color:var(--text-color-sub2);
  margin-bottom:0px;
  font-size: 10px;
}


.reserve_bottom .content_center {
  margin-top: 45px;
}
.reserve_bottom  {
  background-image: url("/system_panel/uploads/images/pagebottombg_contact.png");
  background-size: cover;
  background-position: top;
  padding: 70px 0px 100px 0px;
}
.reserve_bottom h3,
.reserve_bottom .h3sub_base {
  text-align: center;
}
.c2618 {
  margin-bottom: 30px;
  width: 130px;
}
.c3092,
.c3092 iframe {
  height: 240px;
}
.sp_none {
  display: none;
}
.fix_right {
  position: fixed;
  z-index: 2;
  bottom: 50%;
  right: 15px;
  display: flex;
  flex-direction: column;
  width: 35px;
  height: 280px;
  transform: translateY(50%);
}
.fix_right p {
  margin-bottom: 0px;
  transform: rotate(90deg);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: var(--text-color-sub);
}
.link_insta {
  height: 180px;
}
.fix_right img {
  margin-bottom: 24px;
}
.sp_sns_link {
  display: flex;
  justify-content: center;
  margin: 2px auto 30px;
}
.sp_sns_link img {
  margin: 0px 16px;
}
p.fp01 {
  margin-bottom: 40px;
}
.container.pdrl0 {
  padding-right: 0px;
  padding-left: 0px;
}
p.sp_pink {
  color:var(--main-color);
}
p.mb30_sp {
  margin-bottom: 30px;
}
.footer_si img.image_cc {
  width:165px;
}
.home_service p.s_text {
  margin-bottom: 48px;
}

@media screen and (min-width:768px){
  a.nolink {
    pointer-events: none;
  }
  p {
    font-size: 18px;
    line-height: 36px;
  }
  .sp_sns_link {
    margin: 2px auto 48px;
  }
  p.sp_pink {
    color:var(--text-color-base);
  }
  p.fp01 {
    margin-bottom:20px;
  }
  p.mb30_sp {
    margin-bottom: 1rem;
  }
  .home_service p.s_text {
    margin-bottom: 1rem;
  }
  .footer_si img.image_cc {
    width:auto;
  }
  .copyright {
    height:100px;
  }
  .copyright p {
    font-size: 18px;
  }
  .c3092,
  .c3092 iframe {
    height: 480px;
  }
  .c2618 {
    width: auto;
  }
  .oth_txt2.homesec01 {
    background-size: contain;
    background-position: center right;
  }
  .content_raw {
    flex-direction: row;
  }
  .mainimage {
    margin: 0px;
    height: 380px;
    padding: 0px;
  }
  .mainimage img {
    height: auto;
  }
  .header_wrap {
    display: flex;
    justify-content: space-between;
  }
  .rowhalf {
    width: 50%;
  }
  p {
    font-size: 14px;
    line-height: 27px;
  }
  .content01 {
    padding: 88px 0px 60px 0px;
  }
  .content02 {
    padding: 0px 0px 60px 0px;
  }
  .content_inner {
    width:100%;
    flex-direction: row;
  }
  .content_inner.sp_rv {
    flex-direction: row;
  }
  .valign_center.bgillust01 .container {
    padding: 0px 0px 0px 30px;
  }
  .valign_center.bgillust01.bgleft .container {
    padding: 0px 30px 0px 0px;;
  }
  img.content01_illust01 {
    width:100%;
  }
  img.content01_illust02 {
    width:150%;
  }
  h2.h2base {
    font-size: 27px;
  }
  .about-h2{
    font-size: 27px;
  }
  h3.h3base {
    font-size: 27px;
    margin-bottom: 56px;
  }
  .h4.h4_subtitle{
      font-size: 27px;
      margin-bottom: 56px;
  }
  .h3sub_base {
    margin-bottom: 56px;
  }
  img.content01_image01,
  img.oth01_image01 {
    width:150%;
    transform: translateX(-35%);
  }
  h4.h4base {
    font-size: 23px;
    line-height: 45px;
    margin-bottom: 35px;
  }
  
  /* トップページ（タブレット） */
  .homemainimage{
    transform: scale(1.1);
  }
  p.sp_main_text {
    display: none;
  }
  .about-about__img{
    flex: 1;
  }
  .btn_reserve.btn_haircare.btn_home01 {
    transform: translateX(0%);
  }
  .btn_reserve.btn_haircare.btn_home02 {
    transform: translateX(0%);
  }
  .homesec01 h3.h3base {
    font-size: 27px;
    margin-top: 0px;
    margin-bottom: 26px;
  }
  .home_service h3.h3base,
  .home_service .h3sub_base {
    text-align: left;
  }
  .home_bana img {
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  }
  .oth_txt2.homesec01 p.txtleft {
    line-height: 27px;
  }
  .homesec03 .h3sub_base {
    margin-bottom: 26px;
  }
  .homesec03 img.shopimage  {
    width:120%;
  }
  .homesec02 {
    padding: 30px 0px 30px 0px;
  }
  .oth_txt2.homesec04 {
    padding: 30px 0px 30px 0px;
    background: none;
  }
  .o_menu p.om_link {
    font-size: 18px;
    bottom: 30px;
  }
  img.shopimage {
    transform: translateX(0px);
  }
  p.sp_shopinfo {
    margin-top: 0px;
  }
  
  /* 脱毛（タブレット） */
  .epilation__student__txt {
    font-size: 20px;
  }
  .epi_txt h3.h3base br {
    display: none;
  }
  .epi_txt {
    margin: 0;
    max-width: 100%;
  }
  .epi_txt.pt100,
  .epi_txt_2.pt100 {
    padding-top: 100px;
  }
  .epi_txt p {
    text-align: center;
  }
  .epi_txt h3.h3base.text-left {
    line-height: 80px;
    text-align:center !important;
  }
  .epi_txt p.txtleft {
    text-align: left;
  }
  .epi_txt.nobg {
    padding: 0px 15px 80px 15px;
  }
  .epi_txt.nobg .mb120 {
    margin-bottom: 60px;
  }
  .epi_txt.bg_pink, .epi_txt.pt120 {
    padding: 80px 0px 100px 0px;
  }
  .epi_block01 {
    transform: translateX(58px);
  }
  .r_item {
    width:32%;
    margin: 0px 16px;
  }
  .r_item h4.h4base {
    font-size: 18px;
    line-height: 36px;
    text-align: center;
    margin: 40px 0px;
  }
  .r_item h4.h4base strong{
    font-size: 18px;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    margin: 40px 0px;
  }
  .price_inner {
    margin: 0px auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .epi_txt p.epi_price_text {
    color: var(--main-color);
    font-size: 24px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 50px;
  }
    .epi_txt p.epi_price_text__blue {
    color: #5099EF;
    font-size: 24px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 50px;
  }
  .price_inner img.mb64 {
    margin-bottom: 64px;
  }
  .epi-price__img--face.mb64{
    margin-bottom: 64px;
  }
  
  /* まつげ・まゆ（タブレット） */
  .epi_txt h3.h3base.eyelashe-catch__ttl br {
    display: block;
  }
  .epi_txt p.esy_styling_text {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 16px;
  }
  .styling_block .style_image_wrap  {
    width:40%;
    margin-bottom: 0px;
  }
  .styling_block p {
    width:60%;
  }
  .styling_block p {
    margin-left: 40px;
    margin-bottom: 0px;
  }
  .esy_styling_bg {
    padding: 50px;
  }
  .switch_styling {
    justify-content: space-between;
  }
  .switch_styling a {
    width:48%;
    height: 80px;
  }
  .beforeafter img {
    margin: 0px 32px;
    width: calc(50% - 64px);
  }
  .epi_txt.epi_price.pt0 {
    padding-top: 0px;
  }
  img.sp_mb15 {
    margin-bottom: 0px;
  }
  .table_raw {
    flex-direction: row;
    padding: 40px 0px;
  }
  .er_price .table_th p {
    position: relative;
    padding-left: 20px;
  }
  .er_price .table_th p:before {
    content: '●';
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    left:-3px;
    color: var(--main-color);
    display: inline-block;
  }
  .er_price .table_th {
    text-align: center;
    width: 50%;
    margin-bottom: 0px;
  }
  .er_price .table_td {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .er_price .table_th p {
    color: var(--text-color-base);
    font-weight: 700;
    display: inline-block;
    width: 100%;
    margin: 0px auto;
    text-align: left;
  }
  
  /* そのほかのメニュー */
  .oth_txt2 h3.h3base br {
    display: none;
  }
  .oth_txt2 {
    margin: 0;
    max-width: 100%;
  }
  .oth_txt2 p {
    text-align: center;
  }
  .oth_txt2 h3.h3base.text-left {
    line-height: 80px;
    text-align:center !important;
  }
  .oth_txt3 {
    padding: 80px 15px 80px 15px;
  }
  .oth_service.oth_txt3 {
    padding: 80px 15px 80px 15px;
  }
  .h3othmenutitle {
    font-size:23px; 
  }
  .h4othmenutitle {
    font-size:23px; 
  }
  .homesec01 img.oth01_image01 {
    width:150%;
    transform: translateX(-35%);
  }
  .pl80 {
    padding-left: 38px;
  }
  .oth_txt2 p.txtleft {
    text-align: left;
  }
  .oth_txt2 .bgillust01 {
    background-position: center right -56px;
  }
  .oth_txt2.nobg {
    padding: 0px 15px 80px 15px;
  }
  .oth_txt2.nobg .mb120 {
    margin-bottom: 60px;
  }
  .table_wrap.pickup {
    margin-bottom: 1rem;
  }
  .oth_txt2 .table_th {
    text-align: center;
    width: 40%;
    margin-bottom: 0px;
  }
  .oth_txt2 .table_td {
    width: 60%;
  }
  .table_th p {
    width:auto;
  }
  .oth_txt2 .table_td p {
    text-align: right;
    margin-right: 150px;
  }
  .oth_txt2.bg_pink, .oth_txt2.pt120 {
    padding: 80px 0px 100px 0px;
  }
  .oth_txt2 .table_th p {
    margin-left:80px;
  }
  .oth_txt2 .table_th p.th_price {
    padding-left: 40px;
}
  .btn_reserve.btn_haircare {
    margin-top: 80px;
    margin-bottom: 0px;
  }
  .btntxt_link {
    height: 78px;
  }

  /* 店舗情報 */
.shopinfo-catch__ttl strong br{
  display: none;
}
  .si_txt {
    padding: 80px 0px 70px 0px;
  }
  .si_txt h3.h3base {
    font-size: 28px;
    line-height: 43px;
  }
  .si_txt p.text-left {
    text-align: center !important;
  }
  .si_txt3 {
    padding: 80px 0px 70px 0px;
  }
  .si_txt4 {
    padding: 0px 0px 80px 0px;
  }
  .gmap {
    padding: 0px 15px;
  }
  .gmap iframe {
    height:300px;
  }
  .gallery_wrap .pd0 {
    padding: 0px 15px;
  }
  .gallery_item {
    width:48%;
    margin-bottom: 41px;
  }
  .table_th {
    text-align: center;
  }
  
  /* ご予約 */
  .r32 {
    margin-bottom: 0px;
    margin-right: 32px;
  }
  .res_txt p.text-left {
    text-align: center !important;
  }
  .nav_faq_item p {
   font-size:20px;
  }
  
  /* 新着情報詳細（タブレット） */
  h3.info-detail-ttl {
    font-size: 26px;
    line-height: 45px;
    padding: 0px 20px 24px;
    margin-bottom:50px;
  }
  .info-detail-content {
    padding: 0px 30px;
    margin-bottom:100px;
  }
  .info-link-list a {
    margin-bottom: 50px;
  }
  
  /* よくあるご質問 */
  .faq__box{
    padding-top: 100px;
  }
  .faq-item{
    padding: 0px 50px;
  }
  .nav_faq_item {
    width:calc(50% - 20px);
    margin: 0px 10px 20px 10px;
    padding: 20px 0px;
  }
  .faq-item__cont__inr{
    gap: 0 60px;
  }
  .faq-item__cont__inr__img{
    width: 80px;
    height: 80px;
    padding-top: 7px;
    margin-right:0px;
  }
  .faq-item__cont__inr__txt{
    padding-right: 45px;
  }
  .faq-item__cont__inr__txt__p{
    
  }
  .faq-item__cont--q .faq-item__cont__inr__txt:before{
    width: 30px;
    top: 15px;
  }
  .faq-item__cont--q .faq-item__cont__inr__txt:after{
    height: 30px;
    right: 15px;
  }
  .faq-item__cont--a{
    padding-top: 30px;
  }

  .reserve_bottom h3,
  .reserve_bottom .h3sub_base {
    text-align: center;
  }
  .reserve_bottom h3.h3base {
    font-size:40px;
  }
  .btn_reserve {
    width: 380px;
    height: 100px;
  }
  a.btn_haircare.btn_reserve {
    width: 300px;
    height: 80px;
  }
  .btntxt_line {
    height: 96px;
  }
  p.txt_res {
    text-align:center; 
  }
  .reserve_bottom .content_inner {
    flex-direction: column;
  }
  .reserve_bottom .content_center {
    margin-top: 60px;
  }
  .reserve_bottom  {
    padding: 80px 0px 80px 0px;
  }
  .footer_info {
    padding: 80px 0px 100px 0px;
  }
  .c3092,
  .c3092 iframe {
    height: 500px;
  }
  .footer_info {
    padding: 120px 0px 160px 0px;
  }
  .footer_si {
    text-align: left;
  }
}

@media (min-width: 1024px) {
  .r_item h4.h4base strong{
    font-size: 24px;
  }
  h4.h4base.h4base__long{
    font-size: 28px;
  }
  .sp_none {
    display:block;
  }
  p {
    font-size: 18px;
    line-height: 36px;
  }
  .container.pdrl0 {
    padding-right: 15px;
    padding-left: 15px;
  }
  .mainimage {
    height: 380px;
    margin: 0px auto;
  }
  .mainimage h2 {
    left:64px;
    font-size: 48px;
  }
  .mainimage-h3 {
    left: 64px;
    font-size: 48px;
}
  .c1657 {
    overflow: visible;
  }
  .content01 {
    padding: 143px 0px 110px 0px;
  }
  .content02 {
    padding: 0px 0px 160px 0px;
  }
  .reserve_bottom .content_inner {
    flex-direction: row;
  }
  .content_inner {
    justify-content: space-between;
  }
  .content_raw {
    flex-direction: row;
  }
  .row_inner_half {
    width:50%;
  }
  h2.h2base {
    font-size: min(48px,3.3vw);
  }
  .about-h2 {
    font-size: 48px;
  }
  h3.h3base {
    font-size: 48px;
    margin-bottom: 80px;
  }
  h3.h3base.h3base__long {
    font-size: 48px;
  }
  .epi_txt h3.h3base.h3base__long{
    font-size: 34px;
  }
  h4.h4_subtitle{
    font-size: 48px;
  }
  h4.h4base {
    font-size: 32px;
    line-height: 56px;
    margin-bottom: 64px;
  }
  .h3sub_base {
    margin-bottom: 80px;
  }
  img.content01_illust01 {
    margin-top: -45px;
  }
  img.content01_image01,
  img.oth01_image01 {
    width:150%;
    transform: translateX(-30%);
  }
  .valign_center.bgillust01 .container {
    padding: 0px 0px 0px 80px;;
  }
  .valign_center.bgillust01.bgleft .container {
    padding: 0px 80px 0px 0px;;
  }
  .main01 {
    padding: 316px 0px 90px 0px;
  }
  .main01_text .main01_head {
    font-size: 40px;
    line-height: 72px;
    margin-bottom: 46px;
  }

  /* ヘッダー */
  .header_wrap {
    display: flex;
    justify-content: space-between;
  }
  .header_logo {
		padding: 10px 0px 10px 30px;
  }
  .header_logo img {
    height: 80px;
  }
  .nav_wrap {
    display: flex;
    align-items: center;
  }
  .headermenu {
    display: flex;
    justify-content: flex-end;
    color:#795C2F;
    font-weight: bold;
    padding: 0px 100px 0px 10px;
    font-size: 17px;
  }
  .headermenu p {
    margin-bottom: 0px;
    color:var(--text-color-sub);
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    margin: 0px 9px;
  }
  .headermenu .container {
    display: inline-block;
    width:auto;
  }
  
  /* ハンバーガーメニュー（PC） */
  .h_window {
    background:none; 
    background-color: #7b5d32a1;
  }
  .gjs-dashed .h_window {
    top: 120px;
  }
  .gjs-dashed .h_window_blank {
    display: none !important;
  }
  .btn_hmenu {
    width: 120px;
    height: 120px;
  }
  .btn_hmenu .navbar-toggler-icon.nav_line {
    width:64px;
    height: 1px;
    border-bottom: 1px solid var(--btn_bg);
    margin: 10px auto;
  }
  .btn_hmenu.collapsed .navbar-toggler-icon.nav_line {
    width:64px;
    margin: 10px auto;
  }
  .h_menu_sp {
    background: none;
    padding-top: 0px;
  }
  .h_window_nav {
    width:640px;
    height: calc(100% + 260px);
    background-image: linear-gradient(180deg, rgba(247, 246, 241, 0.9), rgba(255, 198, 187, 0.9));
    padding: 130px 0px 130px;
    align-items: center;
    overflow-y: scroll;
  }
  .h_window_nav .nav-item {
    width: auto;
    padding: 0px;
    border:none;
    margin-bottom: 25px;
  }
  .h_window_nav .nav-item:first-of-type {
    border:none;
    margin-top:130px;
  }
  .h_menu_bottom {
    padding: 0px 0px 80px 0px;
  }
  .h_menu_line {
    margin-bottom: 48px;
  }
  
  /* トップページ（PC） */
  h3.h3base.h3home {
    margin-bottom: 64px;
    line-height: 85px;
  }
  .homesec01 h3.h3base {
    font-size: min(3.2vw, 48px);
  }
  .btn_reserve.btn_haircare.btn_home01 {
    margin-top: 48px;
  }
  .btn_reserve.btn_haircare.btn_home02 {
    margin-top: 64px;
  }
  .btn_reserve.btn_haircare.btn_home01 .btntxt_link img {
    width:auto;
    height: auto;
  }
  .oth_txt2.homesec01 {
    padding-bottom: 164px;
  }
  .home_service {
    background-position: top center;
  }
  .homesec02 {
    padding: 0px 0px 160px;
  }
  .oth_txt2.homesec03 {
    padding: 240px 0px 120px 0px;
  }
  .oth_txt2.homesec04 {
    padding: 120px 0px 240px 0px;
  }
  .oth_txt3.pt0 {
    padding-top: 0px;
    padding-bottom: 200px;
  }
  .s_text {
    white-space: nowrap;
  }
  .oth_txt2.homesec01 p.txtleft {
    line-height: 36px;
  }
  
  /* よくあるご質問 */
  .faqwrap {
    padding-bottom:120px;
  }
  .faq-item{
    padding: 0px 120px;
  }
  .nav_faq {
    padding: 160px 0px;
  }
  .nav_faq_item {
    width:calc(33% - 40px);
    margin: 0px 20px 40px 20px;
    padding: 26px 0px;
  }
  .faq-list h3.h3base {
    font-size: 40px;
  }
  
  /* 脱毛（PC） */
  .epi_txt {
    padding: 160px 0px 200px 0px;
    margin: 0 auto;
    max-width: 100%;
  }
  .epi_txt.pt100,
  .epi_txt_2.pt100 {
    padding-top: 100px;
  }
  .epi_txt.pt0 {
    padding-top: 0px;
  }
  .epi_txt.pt280 {
    padding: 280px 0px 160px 0px;
  }
  .epi_txt.pb160 {
    padding-bottom: 160px;
  }
  .epi_txt_2 {
    padding: 160px 0px 160px 0px;
  }
  .epi_txt3 {
    padding: 125px 15px 200px 15px;
  }
  .epi_txt.nobg {
    padding: 0px 15px 160px 15px;
  }
  .epi_txt.nobg .mb120 {
    margin-bottom: 120px;
  }
  .epi_txt.bg_pink,
  .epi_txt.pt120 {
    padding: 120px 0px 160px 0px;
  }
  .epi_txt .table_th p {
    margin-left:80px;
  }
  .epi_block01 {
    transform: translateX(50px);
  }
  .epi_block01 div {
    width:25%;
    margin-bottom: 0px;
  }
  .r_item h4.h4base {
    font-size: 24px;
    line-height: 48px;
  }
  .epi_price .h3sub_base {
    margin-bottom: 107px;
  }
  .price_inner {
    padding-top: 85px;
    padding-bottom: 85px;
    margin: 0 auto;
  }
  .epi_txt p.epi_price_text {
    color: var(--main-color);
    font-size: 24px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 64px;
  }
  .epi_txt p.epi_price_text__blue {
    color: #5099EF;
    font-size: 24px;
    line-height: 48px;
    font-weight: 700;
    margin-bottom: 64px;
  }
  .price_inner img.mb64 {
    margin-bottom: 80px;
  }
  .epi-price__img--face.mb64{
    margin-bottom: 80px;
  }
  
  /* まつげ・まゆ（PC） */
  .epi_txt h3.h3base.eyelashe-catch__ttl br {
    display: none;
  }
  .epi_txt_2.pt120 {
    padding-top: 120px;
  }
  .esy_styling_bg {
    padding: 120px;
  }
  .switch_styling {
    padding: 0px 21px;
  }
  .beforeafter img {
    margin: 0px 64px;
  }
  .epi_price .h3sub_base.mb75 {
    margin-bottom: 75px;
  }
  .epi_txt.er_price .table_th p {
    margin-left: 105px;
  }
  .er_price .table_th p:before {
    left:-24px;
  }
  .er_price .table_td {
    justify-content: center;
  }
  
  /* そのほかのメニュー */
  .oth_txt2 {
    padding: 160px 0px 200px 0px;
    margin: 0 auto;
    max-width: 100%;
  }
  .oth_txt2_2 {
    padding: 160px 0px 160px 0px;
  }
  .oth_txt3 {
    padding: 125px 15px 200px 15px;
  }
  .h3othmenutitle {
    font-size:32px; 
  }
  .h4othmenutitle {
    font-size:32px; 
  }
  .homesec01 img.oth01_image01 {
    width:150%;
    transform: translateX(-34%);
  }
  .pl80 {
    padding-left: 80px;
  }
  .oth_txt2.nobg {
    padding: 0px 15px 160px 15px;
  }
  .oth_txt2.nobg .mb120 {
    margin-bottom: 120px;
  }
  .oth_txt2.bg_pink,
  .oth_txt2.pt120 {
    padding: 120px 0px 160px 0px;
  }
  .oth_txt2 .table_th p {
    margin-left:80px;
  }
  .btn_reserve.btn_haircare {
    margin-top: 124px;
    margin-bottom: 0px;
  }

  /* 店舗情報 */
  .si_txt {
    padding: 156px 0px 120px 0px;
  }
  .si_txt2 {
    padding: 120px 0px 120px 0px;
  }
  .si_txt2.pt0 {
    padding: 120px 0px 120px 0px;
  }
  .si_txt h3.h3base {
    font-size: 40px;
    line-height: 80px;
  }
  .si_txt3 {
    padding: 160px 0px 160px 0px;
  }
  .si_txt3.pt0 {
    padding: 160px 0px 160px 0px;
  }
  .si_txt4 {
    padding: 0px 0px 240px 0px;
  }
  .si_txt2 img {
    margin-bottom: 0px;
  }
  .table_wrap {
    padding: 0px 85px;
  }
  .table_th {
    width: 40%;
  }
  .table_td {
    width: 60%;
  }
  .gmap {
    padding: 0px 40px;
  }
  .gmap iframe {
    height: 568px;
  }
  .gallery_wrap .pd0 {
    padding: 0px;
    margin-right: 16px;
    margin-left: 16px;
  }
  .gallery_item {
    width:30%;
  }

  /* ご予約 */
  .res_txt {
    padding: 160px 0px;
  }
  .res_btn {
    padding-bottom: 240px;
  }
  .r32 {
    margin-right: 32px;
  }
  
  /* 新着情報詳細（PC） */
  h3.info-detail-ttl {
    font-size: 32px;
    line-height: 56px;
    padding: 0px 20px 24px;
    margin-bottom:64px;
  }
  .info-detail-content {
    padding: 0px 60px;
    margin-bottom:138px;
  }
  .info-link-list a {
    color:var(--main-color);
    text-decoration:underline;
    margin-bottom: 80px;
  }
  .info-list .blog-item .blogttl {
    margin-bottom: 40px;
  }
  .info-list.newslist .blog-item .blogdate{
    margin-bottom: 15px;
  }
  .info-list.newslist .blog-item .blogcate {
    margin-bottom: 0px;
  }

  /* フッター */
  .reserve_bottom {
    padding: 183px 0px 182px 0px;
  }
  .reserve_bottom .content_center {
    margin-top: 0px;
  }
  .btn_reserve {
    width:380px;
    height: 100px;
  }
  .btn_reserve.mb48 {
    margin-bottom: 48px;
  }
  .btntxt_line p.tel {
    font-size:32px;
  }
  .reserve_bottom h3,
  .reserve_bottom .h3sub_base {
    text-align: left;
  }
  .reserve_bottom h3.h3base {
    font-size: 48px;
  }
  p.txt_res {
    text-align: left;
  }
  .footer_info {
    padding: 136px 0px 120px 0px;
  }
  .fix_right {
    position: fixed;
    z-index: 2;
    bottom: 50%;
    right: 40px;
    display: flex;
    flex-direction: column;
    width: 35px;
    height: 280px;
  }
  .fix_right p {
    margin-bottom: 0px;
    transform: rotate(90deg);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    color: var(--text-color-sub);
  }
  .link_insta {
    height: 180px;
  }
  .fix_right img {
    margin-bottom: 24px;
  }
  .sp_sns_link {
    display: none;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
  .container.esy_styling_bg {
    max-width: 1200px;
  }
  .r_item h4.h4base strong br{
    display: none;
  }
}
@media (min-width: 1430px) {
  .epi_price_bg {
    width: 1400px;
    margin: 0px auto;
  }
}
@media screen and (min-width:1500px){
  .main01 {
    background-position:center;
  }
}

@media screen and (min-width:768px){
  .main-epilation.mainimage img{
    left: auto;
    right: calc(720px - 100vw);
  }
}
@media screen and (min-width:992px){
  .main-epilation.mainimage img{
    right: calc(960px - 100vw);
  }
}
@media screen and (min-width:1100px){
  .main-epilation.mainimage img{
    left: 0;
    right: auto;
  }
}


