@charset "UTF-8";
/*
Theme Name: SORA
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ******************************
   変数設定など
   ****************************** */
:root {

  /* カラー(ボタン背景色など) */
  --main-color: #bed4df;
  /*--sub-color: #aabec8;*/
  --sub-color: #e0dbd0;
  --txt-color: #181818;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Cardo", 'Noto Sans JP', sans-serif;

  --font-mincho: "Shippori Mincho", serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root{
  overflow: hidden;
}
*,
*:before,
*:after{
  transition: 0.2s all;
}

/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

  /* リサイズレート */
  --resize-rate: 0.3;
  --slim-rate: 0.8;

}

.container{
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width:768px){

  /* コンテナサイズ:px */
  .container{
    max-width: 720px;
    padding-left: 15px;
    padding-right: 15px;
  }

  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
    --resize-rate: 0.6;
  }
}
@media (min-width:992px){

  /* コンテナサイズ:px */
  .container{
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
  }

  :root {
    --margin-for-device-side: calc(465px - 50vw);
    --margin-for-device-side-w: calc(465px - 50vw);
  }
}
@media (min-width:1200px){

  /* コンテナサイズ:px */
  .container{
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
  }

  :root {
    --margin-for-device-side: calc(555px - 50vw);
    --margin-for-device-side-w: calc(555px - 50vw);
    --resize-rate: 0.7;
  }
}
@media (min-width:1366px){

  /* コンテナサイズ:1286px */
  /*.container.wide{
    max-width: calc(1286px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  :root {
    --margin-for-device-side-w: calc(643px - 50vw);
  }*/

}
@media (min-width:1470px){

  /* コンテナサイズ:1370px */
  .container.wide{
    max-width: calc(1370px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
  :root {
    --margin-for-device-side-w: calc(685px - 50vw);
    --resize-rate: 0.7;
  }

}
@media (min-width:1720px){

  /* コンテナサイズ:1520px */
  .container.wide{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }
  :root {
    --margin-for-device-side-w: calc(760px - 50vw);
    --resize-rate: 1.0;
  }
}


/* ******************************
   
   ****************************** */

/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

@media (max-width:767px){
  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

.mincho{
  font-family: "Shippori Mincho", serif;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
}
img{
  max-width: 100%;
  width: auto;
}

ul, ol, li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.img_fit{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

a:hover .img_fit img{
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gjs-dashed .responsive_video:before{
  display: none;
}
.gjs-dashed .responsive_video [data-gjs-type="video"]:before{
  content: "";
  display: block;
  padding-top:56.25%;
  pointer-events: none;
}


/* 指定デバイスのみで表示するclass */
@media (min-width:1200px){
  .md:not(.pc){
    display: none!important;
  }
  .tb:not(.pc){
    display: none!important;
  }
  .sp:not(.pc){
    display: none!important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .pc:not(.md){
    display: none!important;
  }
  .tb:not(.md){
    display: none!important;
  }
  .sp:not(.md){
    display: none!important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none!important;
  }
  .md:not(.tb){
    display: none!important;
  }
  .sp:not(.tb){
    display: none!important;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none!important;
  }
  .md:not(.sp){
    display: none!important;
  }
  .tb:not(.sp){
    display: none!important;
  }
}


/* 指定デバイスで改行を消す */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}


/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}


/*******************************
*　ヘッダー
********************************/
.header{
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

/* ロゴ */
.hdr_logo{
  display: flex;
}
.hdr_logo img{
  width: 100px;
  
  transition: 0.3s all;
}
.hdr_salon{
  display: flex;
  align-items: center;
  font-size: 21px;
  font-weight: 500;
  font-family: var(--font-mincho);
  margin-left: 20px;
  border-left: 1px solid #e5e5e5;
  
}
.hdr_salon select{
  border: 0;
  padding: 0 15px;
  background: transparent;
  outline: none;
  cursor: pointer;
}
.hdr_salon select,
.hdr_salon option,
.hdr_salon select:focus,
.hdr_salon option:focus{
  background: transparent;
  outline: none;
  border: none;
  box-shadow: none;
  appearance: none;        /* ブラウザ標準の矢印なども非表示 */
  -webkit-appearance: none;
  -moz-appearance: none;
}
.hdr_salon_name{
  margin-left: 15px;
}

/* メニュー全般 */
.hdr_menu{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_link{

}
.hdr_tel_link p{

}
.hdr_tel_link p:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 6px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  width: 330px;
  background: #FFF;
  padding: 10px 5px;
  padding: 0;
  margin: 0 20px;
  text-align: center;
  transition: 0.2s all;
  border: 1px solid #CCC;
  border-radius: 25px;
  overflow: hidden;
}
.hdr_contact a.btn1{
  border-color: #ae2b5b;
}
.hdr_contact a.btn2{
  border-color: #06c755;
}

.hdr_contact a img{
  transition: 0.2s all;
}
.hdr_contact a:hover img{
  transform: scale(1.02);
}
/*.hdr_contact_a.btn1:hover{
  background: #ae2b5b;
  background: #bed4df;
}
.hdr_contact_a.btn2:hover{
  background: #06c755;
  background: #bed4df;
}*/

.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  /*background: var(--sub-color);*/
  /*color: #FFF;*/
}

/* SNSボタン */
.hdr_sns{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_sns a{
  width: 24px;
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 10px;
}

/* ヘッダースリム */
.header.slim{

}
.header.slim .hdr_logo img{
  /*width: calc(120px * var(--slim-rate));*/
}


@media (min-width:375px){

}
@media (max-width:767px){

  .header{
    position: static;
    z-index: 4;
    top: 10px;
    left: 10px;
  }
  .header.sub_page{
    position: static;
    padding: 0 10px;
  }
  .header.sub_page .hdr_logo img {
    width: 80px;
  }
  
  .hdr_logo img{
    display: block;
  }
  
  .hdr1 {
    padding: 0 10px;
    height: 60px;
    /*justify-content: center;*/
  }
  .hdr_salon{
    font-size: 12px;
  }
  .hdr_salon_name{
    
  }

  /* お問い合わせボタン */
  .hdr_contact{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    padding-top: 70px;
  }
  body.home{
    padding-top: 0;
    padding-bottom: 0;
  }
  .header{
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
  }

  .hdr1{
    height: 70px;
    padding: 0 0;
  }

  /* ロゴ */
  .hdr_logo{
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 20px;
  }
  .hdr_logo img{
    width: 80px;
  }
  .hdr_menu{
    margin-left: auto;
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
    width: calc(80px * var(--slim-rate));
  }

  .hdr_contact a{
    width: 200px;
    margin: 0 5px;
  }

  .hdr_salon{
    font-size: 16px;
  }

}
@media (min-width:1024px){

  /* ヘッダー固定 */
  body{
    /*padding-top: 120px;*/
  }
  .header{

  }
  .hdr1{
    /*height: 120px;*/
    /*padding: 0 15px;*/
  }

  /* ロゴ */
  .hdr_logo{
    top: 10px;
    left: 30px;
  }
  .hdr_logo img{
    width: 100px;
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
    width: calc(100px * var(--slim-rate));
  }

  .hdr_contact a{
    width: 240px;
    margin: 0 10px;
  }


}
@media (min-width:1200px){

  /* ヘッダー固定 */
  body{
    padding-top: 90px;
  }
  .header{

  }
  .hdr1{
    height: 90px;
    /*padding: 0 15px;*/
  }

  /* ロゴ */
  .hdr_logo{
    top: 15px;
    left: 40px;
  }
  .hdr_logo img{
    width: 120px;
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
    width: calc(120px * var(--slim-rate));
  }

  .hdr_contact a{
    width: 250px;
    margin: 0 10px;
  }
  
  .hdr_salon{
    font-size: 21px;
  }

}

@media (min-width:1470px){

  /* ヘッダー固定 */
  body{
    padding-top: 100px;
  }
  .header{

  }
  .hdr1{
    height: 100px;
    padding: 0 0;
  }

  /* ロゴ */
  .hdr_logo{
    top: 20px;
    left: 55px;
  }
  .hdr_logo img{
    width: 153px;
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
    width: calc(153px * var(--slim-rate));
  }

  .hdr_contact a{
    width: 300px;
    margin: 0 15px;
  }

}
@media (min-width:1720px){

  /* ヘッダー固定 */
  body{
    padding-top: 120px;
  }
  .header{

  }
  .hdr1{
    height: 120px;
    padding: 0 0 0 15px;
  }

  /* ロゴ */
  .hdr_logo{
    top: 20px;
    left: 55px;
  }
  .hdr_logo img{
    width: 153px;
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
    width: calc(153px * var(--slim-rate));
  }

  .hdr_contact a{
    width: 330px;
    margin: 0 20px;
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 250px;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
}
.mv_txt_p1{

}
.mv_txt_p2{

}

/* スライダーの場合 */
.mv_slider{

}
.mv_slider_item{
  position: relative;
  z-index: 1;
}

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

}
@media (min-width:1024px){


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

}
@media (min-width:1200px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 820px;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

}


/*******************************
*　サイドバー
********************************/

/* サイドバー */
.sidebar{
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* バナー */
.sidebar_bn{
  display: block;
}
.sidebar_bn img{
  width: 40px;
  transition: 0.2s all;
}
.sidebar_bn:hover{

}
.sidebar_bn:hover img{
  transform: scale(1.05);
  filter: brightness(1.05);
}
.sidebar .sns{
  display: flex;
  flex-direction: column;
}
.sidebar .sns li{
  margin: 5px 5px;
}
.sidebar .sns li img{
  display: block;
  width: 24px;
}
.sidebar .sns li a:hover img{
  transform: scale(1.1);
}

@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    top: 50%;
  }

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 60px;
  }

  .sidebar .sns li{
    margin: 15px 20px;
  }
  .sidebar .sns li img{
    width: 32px;
  }

}
@media (min-width:1024px){

}
@media (min-width:1200px){

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  background: #e8eef1;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.pg_header:after{
  content: "";
  background: #FFF;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
}
.pg_header_inner{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 47%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_en{
  font-size: 30px;
  font-weight: 600;
  font-family: var(--font-mincho);
  line-height: 1.2;
  margin-bottom: 10px;
}
.pg_header_title_en:after{
  content: "";
  display: block;
  width: 95px;
  height: 1px;
  background: #e0dbd0;
  margin-top: 10px;
}
.pg_header_title_ja{
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-mincho);
  line-height: 1.2;
}

.pg_header_mv{
  width: 705px;
  margin-left: auto;
}
.pg_header_mv_img{
  margin-right: var(--margin-for-device-side);
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}





@media (max-width:767px){
  .pg_header_mv{
    width: 100%;
  }
  .pg_header_mv_img{
    margin-left: var(--margin-for-device-side);
  }
}
@media (min-width:768px){
  .pg_header{
    margin-bottom: 50px;
  }
  .pg_header:after{
    height: 80px;
  }
  .pg_header_title{
    top: 47%;
  }
  .pg_header_title_en{
    font-size: 40px;
    margin-bottom: 10px;
  }
  .pg_header_title_en:after{
    width: 95px;
    margin-top: 20px;
  }
  .pg_header_title_ja{
    font-size: 20px;
  }
  .pg_header_mv{
    width: 400px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

}
@media (min-width:1200px){

  .pg_header{
    margin-bottom: 135px;
  }
  .pg_header_title_en{
    font-size: 70px;
    margin-bottom: 10px;
  }
  .pg_header_title_en:after{
    width: 95px;
    margin-top: 10px;
  }
  .pg_header_title_ja{
    font-size: 20px;
  }
  .pg_header_mv{
    width: 705px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 500px;
  }
}

@media (min-width:1470px){

  .pg_header{
    margin-bottom: 135px;
  }
  .pg_header_title_en{
    font-size: 90px;
    margin-bottom: 10px;
  }
  .pg_header_title_en:after{
    width: 95px;
    margin-top: 10px;
  }
  .pg_header_title_ja{
    font-size: 26px;
  }
}



/*******************************
*　フッター
********************************/

.footer{
  margin-top: 50px;
}

/* 予約 */
.ftr_reserve{
  padding: 50px 0;
  background-image: url('/img/ftr_reserve_bg.jpg');
  background-size: cover;
  background-position: center top;
  color: #FFF;
  position: relative;
  z-index: 1;
}
.ftr_reserve:after{
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(49,59,64,0.8);
}
.ftr_reserve .container{
  position: relative;
  z-index: 1;
}
.ftr_reserve_msg{
  font-size: 14px;
  line-height: 1.875;
  text-align: center;
}

.ftr_contact{
  display: flex;
  flex-wrap: wrap;
  
}
* + .ftr_contact{
  margin-top: 20px;
}
.ftr_contact_item{
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.ftr_contact_item:before,
.ftr_contact_item:after{
  width: 100%;
  background: #FFF;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
}
.ftr_contact_item:before{
  content: "";
  left: 0;
}
.ftr_contact_item:last-child:after{
  content: "";
  right: 0;
}
.ftr_contact_item + .ftr_contact_item{
  
}
.ftr_contact_item_title{
  margin-bottom: 25px;
}
.ftr_contact_item_title_icon{
  margin-bottom: 10px;
}
.ftr_contact_item_title_txt{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-mincho);
}
.ftr_contact_item_title:after{
  content: "";
  display: block;
  width: 35px;
  height: 1px;
  background: #FFF;
  margin: 20px auto 0;
}
.ftr_contact_item_btn{
  
}
.ftr_contact_item_btn_tel1{
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-mincho);
  line-height: 1;
}
.ftr_contact_item_btn_tel2{
  font-size: 13px;
  margin-top: 3px;
}


.ftr1{
  padding: 10px 0;
  background: #bed4df;
}

.ftr1_box1{

}
.ftr1_box2{

}

.ftr2{
  margin-top: 30px;
}
.ftr2_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr2_box1{
  width: 100%;
}
.ftr2_box2{
  width: 100%;
}


/* リンク */
.ftr_links{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 15px;
  font-family: var(--font-mincho);
  color: #5f5f5f;
}
.ftr_links li{
  text-align: center;
  padding: 5px 10px;
  position: relative;
  z-index: 1;
}
.ftr_links li+li:before{
  /*content: "";
  width: 1px;
  height: 1em;
  background: #b1b1b1;
  position: absolute;
  z-index: 1;
  top: 4px;
  left: 0;*/
}
.ftr_links li a{
  
}


/* ロゴ */
.ftr_logo{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.ftr_logo img{
  width: 129px;
}
.ftr_salon_name{
  font-size: 21px;
  font-weight: 500;
  font-family: var(--font-mincho);
  margin-left: 15px;
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-left: 1px solid #e5e5e5;
}
.ftr_addr{
  margin-bottom: 20px;
  font-family: var(--font-gothic);
}

/* 店舗情報 */
.ftr_info{
  margin-bottom: 20px;
}
.ftr_info dl{
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-family: var(--font-gothic);
}
.ftr_info dl + dl{
  margin-top: 15px;
}
.ftr_info dt{
  width: 80px;
  position: relative;
  z-index: 1;
}
.ftr_info dt:after{
  content: "";
  width: 1px;
  height: 1em;
  background: #b1b1b1;
  position: absolute;
  z-index: 1;
  top: 2px;
  right: 0;
}
.ftr_info dd{
  width: calc(100% - 80px - 10px);
}

/* インスタ */
.ftr_insta{
  
}
.ftr_insta a{
  display: inline-block;
  transition: 0.2s all;
}
.ftr_insta a:hover{
  transform: scale(1.05);
}
.ftr_insta a+a{
  margin-left: 5px;
}

/* マップ */
.ftr_map{
  
}
.ftr_map iframe{
  width: 100%;
  height: 300px;
  margin-bottom: 0;
}

.ftr_copy{
  font-size: 14px;
  font-family: var(--font-mincho);
  margin-top: 30px;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #cab386;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #ef7f1a;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #cab386;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 30px;
  z-index: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #e0dbd0;
}
.pagetop a i{
  font-size: 40px;
}



@media (min-width:375px){

}
@media (max-width:767px){

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }
  
  .ftr_contact_item:before,
  .ftr_contact_item:after{
    height: 1px;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
  }
  .ftr_contact_item:before{
    
  }
  .ftr_contact_item:last-child:after{
    top: auto;
    bottom: 0;
  }
  .ftr_contact_item_btn img{
    height: 40px;
  }
  
  .ftr1{
    display: none;
  }
  .ftr2_box1{
    width: 100%;
    order: 2;
    margin-top: 30px;
    text-align: center;
  }
  .ftr2_box2{
    width: 100%;
    order: 1;
  }
  .ftr_logo{
    text-align: center;
  }
  .ftr_addr{
    text-align: center;
  }
  .ftr_insta{
    text-align: center;
  }
  .ftr_info{
    display: inline-block;
    text-align:left;
    white-space: nowrap;
  }
  
  .ftr_logo{
    justify-content: center;
  }
  .ftr_logo img{
    width: 120px;
  }
  .ftr_salon_name{
    font-size: 14px;
  }
}
@media (min-width:768px){
  body{
   padding-bottom: 50px;
  }
  .footer{
    margin-top: 100px;
  }
  
  /* 予約 */
  .ftr_reserve{
    padding: 50px 0;
  }
  .ftr_reserve_msg{
    font-size: 15px;
    line-height: 2.133;
    text-align: center;
  }

  .ftr_contact{
  }
  * + .ftr_contact{
    margin-top: 20px;
  }
  .ftr_contact_item{
    width: 33.333%;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .ftr_contact_item:before,
  .ftr_contact_item:after{
    width: 1px;
    background: #FFF;
    top: 0;
    bottom: 0;
  }
  .ftr_contact_item:before{
    content: "";
    left: 0;
  }
  .ftr_contact_item:last-child:after{
    content: "";
    right: 0;
  }
  .ftr_contact_item + .ftr_contact_item{

  }
  .ftr_contact_item_title{
    margin-bottom: 25px;
  }
  .ftr_contact_item_title_icon{
    margin-bottom: 10px;
  }
  .ftr_contact_item_title_txt{
    font-size: 16px;
  }
  .ftr_contact_item_title:after{
    width: 35px;
    margin: 20px auto 0;
  }
  .ftr_contact_item_btn{

  }
  .ftr_contact_item_btn_tel1{
    font-size: 35px;
  }
  .ftr_contact_item_btn_tel2{
    font-size: 13px;
    margin-top: 3px;
  }
  
  .ftr2{
    margin-top: 70px;
  }
  .ftr2_inner{
  }
  .ftr2_box1{
    width: 49%;
  }
  .ftr2_box2{
    width: 49%;
  }
  .ftr2_box3{
    width: 100%;
    margin-top: 60px;
  }

  

  /* リンク */
  .ftr_links{
    font-size: 15px;
  }
  .ftr_links li{
    width: 20%;
    padding: 5px 10px;
  }
  

  /* ロゴ */
  .ftr_logo{
    margin-bottom: 20px;
  }
  .ftr_logo img{
    width: 129px;
  }
  .ftr_addr{
    margin-bottom: 20px;
  }

  /* 店舗情報 */
  .ftr_info{
    margin-bottom: 20px;
  }
  .ftr_info dl{
    font-size: 15px;
  }
  .ftr_info dl + dl{
    margin-top: 15px;
  }
  .ftr_info dt{
    width: 80px;
  }
  .ftr_info dt:after{
    top: 2px;
    right: 0;
  }
  .ftr_info dd{
    width: calc(100% - 80px - 10px);
  }

  /* インスタ */
  .ftr_insta{

  }
  .ftr_insta a{
  }
  .ftr_insta a+a{
    margin-left: 5px;
  }

  /* マップ */
  .ftr_map{

  }
  .ftr_map iframe{
    height: 300px;
    margin-bottom: 0;
  }

  .ftr_copy{
    font-size: 14px;
    margin-top: 30px;
  }

}
@media (min-width:1024px){
  .footer{
    margin-top: 125px;
  }
}
@media (min-width:1200px){

  /* 予約 */
  .ftr_reserve{
    padding: 100px 0;
  }
  
  .ftr2{
    margin-top: 70px;
  }
  .ftr2_inner{
  }
  .ftr2_box1{
    width: calc(100% - 570px - 30px);
  }
  .ftr2_box2{
    width: 570px;
  }
  .ftr2_box3{
    width: 100%;
    margin-top: 60px;
  }


  /* リンク */
  .ftr_links{
    font-size: 15px;
  }
  .ftr_links li{
    width: auto;
    padding: 5px 10px;
  }
  

  /* ロゴ */
  .ftr_logo{
    margin-bottom: 20px;
  }
  .ftr_logo img{
    width: 129px;
  }
  .ftr_addr{
    margin-bottom: 20px;
  }

  /* 店舗情報 */
  .ftr_info{
    margin-bottom: 20px;
  }
  .ftr_info dl{
    font-size: 15px;
  }
  .ftr_info dl + dl{
    margin-top: 15px;
  }
  .ftr_info dt{
    width: 80px;
  }
  .ftr_info dt:after{
    top: 2px;
    right: 0;
  }
  .ftr_info dd{
    width: calc(100% - 80px - 10px);
  }

  /* インスタ */
  .ftr_insta{

  }
  .ftr_insta a{
  }
  .ftr_insta a+a{
    margin-left: 5px;
  }

  /* マップ */
  .ftr_map{

  }
  .ftr_map iframe{
    height: 300px;
    margin-bottom: 0;
  }

  .ftr_copy{
    font-size: 14px;
    margin-top: 30px;
  }
  
}


/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

/* テーブル入れ子 */
.table_rows .table_rows{

}
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_td{
  border-top:0;
}
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_td{
  border-bottom:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:first-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:first-child{
  border-left:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:last-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:last-child{
  border-right:0;
}


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

/* アンカー */
.anchor{
  position: relative;
  top: -30px;
}

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 300px;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  border: 1px solid var(--sub-color);
  background: var(--sub-color);
  /*border-radius: 27px;*/
  /*color: #FFF;*/
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.075em;
}
.tt2_en{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-mincho);
  line-height: 1;
  letter-spacing: 0.075em;
  color: #e8eef1;
}
.tt2_en.wh{
  color: #FFF;
}
.tt2_ja{
  font-size: 15px;
  font-weight: 400;
  line-height: 1.888;
  margin-top: 10px;
}
.tt2.left{
  text-align: left;
}


.tt2_about{
  display: inline-block;
}
* + .tt2_about{
  margin-top: 10px;
}
.tt2_about_txt1{
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1;
}
.tt2_about_txt2{
  display: flex;
  align-items: center;
  font-size: 20px;
  font-family: var(--font-mincho);
  line-height: 1;
  margin-top: 10px;
}
.tt2_about_txt2 span{
  white-space: nowrap;
}
.tt2_about_txt2:before,
.tt2_about_txt2:after{
  content: "";
  width: 100%;
  width: 70px;
  height: 1px;
  background: #000;
}
.tt2_about_txt2:before{
  margin-right: 10px;
}
.tt2_about_txt2:after{
  margin-left: 8px;
}

.tt2_about_txt3{
  font-size: 24px;
  font-family: var(--font-mincho);
  line-height: 1;
  margin-top: 10px;
}

.tt3{
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.tt4{
  font-size: 18px;
  font-family: var(--font-mincho);
  margin-bottom: 20px;
  text-align: center;
}
.tt4.left{
  text-align: left;
}

/* 説明文 */
.cmn_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}


/* セクション */
.section{
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.sec1{
  padding-top: 0;
}
.section:last-child{
}

.section.beige{
  background-color: #c3b9a9;
}

/* コンテナ */
.container.wide{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

  /* スマホ用テーブル */
  .table_rows.resp{

  }
  .table_rows.resp,
  .table_rows.resp .table_rows_tr,
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    display: block;
    width: 100%;
    border: 0;
  }

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }

}
@media (min-width:768px){

  .anchor{
    top: -100px;
  }

  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: 350px;
    font-size: 14px;
    padding: 16px 10px;
    margin: 5px 5px;
  }
  .read_more a:after{
    content: "→";
    top: 50%;
    right: 18px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 50px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 10px;
  }

  .tt3{
    font-size: 28px;
    margin-bottom: 30px;
  }
  .tt4{
    font-size: 22px;
    margin-bottom: 30px;
  }
  

  .tt2_about{
  }
  * + .tt2_about{
    margin-top: 10px;
  }
  .tt2_about_txt1{
    font-size: 16px;
  }
  .tt2_about_txt2{
    font-size: 26px;
    margin-top: 10px;
  }
  .tt2_about_txt2:before,
  .tt2_about_txt2:after{
    width: 70px;
  }
  .tt2_about_txt2:before{
    margin-right: 10px;
  }
  .tt2_about_txt2:after{
    margin-left: 8px;
  }

  .tt2_about_txt3{
    font-size: 32px;
    margin-top: 10px;
  }


}
@media (min-width:1024px){

  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

  /* 説明文 */
  .cmn_txt{
    font-size: 16px;
    line-height: 2.125;
  }

}
@media (min-width:1200px){

  /* 見出し */
  .tt2{
    margin-bottom: 30px;
  }
  .tt2_en{
    font-size: 80px;
  }
  .tt2_ja{
    font-size: 18px;
    margin-top: 10px;
  }

  .tt3{
    font-size: 35px;
    margin-bottom: 30px;
  }
  .tt4{
    font-size: 26px;
    margin-bottom: 30px;
  }
  
  .read_more a{
    width: 350px;
    font-size: 16px;
  }

}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }


}

.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
  background-color: #428cb1;
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
  background-color: #c9b893;
}



/* カテゴリNav */
.cmn_cat_nav{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav li{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav li a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50px;
  padding: 2px 10px 3px;
  border: 1px solid #e0dbd0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

.cmn_cat_nav li a:after{
  content: "→";
  font-size: 10px;
  font-family: var(--font-mincho);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cmn_cat_nav li.on a,
.cmn_cat_nav li a:hover{
  background: #e0dbd0;
}
.cmn_cat_nav li a:hover:after{
  margin-right: -2px;
}

.cmn_cat_nav.color2 li a{
  background: #e0dbd0;
}
.cmn_cat_nav.color2 li a:hover{
  background: #FFF;
  color: #181818;
}

@media (max-width:767px){

  .cmn_cat_nav.col1_sp li{
    width: 100%;
  }
  .cmn_cat_nav.col2_sp li{
    width: 50%;
  }
  .cmn_cat_nav.col3_sp li{
    width: 33.333%;
  }
  .cmn_cat_nav.col4_sp li{
    width: 25%;
  }

  .cmn_cat_nav.txt_sm_sp li{
    font-size: 10px;
  }

}
@media (min-width:768px){

  .cmn_cat_nav{
    margin-left: -5px;
    margin-right: -5px;
  }
  .cmn_cat_nav li{
    width: 50%;
    padding: 0 5px;
    margin: 5px 0;
    font-size: 12px;
  }
  .cmn_cat_nav li a{

  }

  .cmn_cat_nav li a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav li a:hover:after{
    margin-right: -5px;
  }
}
@media (min-width:1024px){

}
@media (min-width:1200px){

  .cmn_cat_nav{
    margin-left: -10px;
    margin-right: -10px;
  }
  .cmn_cat_nav li{
    padding: 0 10px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav li a{

  }

  .cmn_cat_nav.col2 li{
    width: 50%;
  }
  .cmn_cat_nav.col3 li{
    width: 33.333%;
  }
  .cmn_cat_nav.col4 li{
    width: 25%;
  }
  .cmn_cat_nav.col5 li{
    width: 20%;
  }

}

/*  */

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){

}
@media (min-width:1200px){

}

/*  */

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){

}
@media (min-width:1200px){

}

/*  */

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){

}
@media (min-width:1200px){

}

/*  */

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){

}
@media (min-width:1200px){

}


/*******************************
*　Enter
********************************/

/* セクション設定 */
.pg_enter{

}
.pg_enter .section.sec1{

}
.pg_enter .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_enter{

  }
  .pg_enter .section.sec1{

  }
  .pg_enter .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}

/* メイン部分 */


/* MV */
.enter_mv{
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
}
.enter_mv_box1{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50%;
  background-image: url('/img/enter_mv_bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /*height: 100%;*/
}
.enter_mv_box2{
  width: 100%;
  height: 50%;
  /*height: 100%;*/
  position: relative;
  z-index: 1;
}

.enter_mv_catch{
  font-size: 30px;
  font-size: 8vw;
  font-weight: 500;
  line-height: 1.2142;
  font-family: "Shippori Mincho", serif;
  margin-bottom: -50px;
}

.enter_mv_img{
  height: 100%;
}
.enter_mv_img.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.enter_mv_txt{
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
}
.enter_mv_txt img{
  height: 100%;
}

/* 店舗一覧 */
.enter_shops{
  display: flex;
  flex-wrap: wrap;
}
.enter_shops_item{
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 50px 30px;
}
.enter_shops_item_inner{
  background: rgba(255,255,255,0.8);
  padding: 35px 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.enter_shops_item_img{
  position: absolute;
  z-index: 0;
  inset: 0;
}
.enter_shops_item_img.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.enter_shops_item_title{
  font-size: 22px;
  line-height: 1.4;
}
.enter_shops_item_title_en{
  font-size: 40px;
  font-family: var(--font-mincho);
  line-height: 1;
  letter-spacing: 0;
  color: #aabec8;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.enter_shops_item_catch{
  font-size: 15px;
  font-family: var(--font-mincho);
  font-weight: 500;
  margin-top: 20px;
}
.enter_shops_item_addr{
  font-size: 12px;
  line-height: 1.5333;
  margin-top: 20px;
}


@media (max-width:767px){

}
@media (min-width:768px){

  /* MV */
  .enter_mv{
    height: 50vh;
  }
  .enter_mv_box1{
    width: 44.27%;
    height: 100%;
  }
  .enter_mv_box2{
    width: 55.73%;
    height: 100%;
  }

  .enter_mv_catch{
    font-size: 34px;
  }

  .enter_mv_img{
    height: 100%;
  }
  .enter_mv_img.img_fit:before{
    height: 100%;
  }

  /* 店舗一覧 */
  .enter_shops{
  }
  .enter_shops_item{
    width: 50%;
    padding: 30px 80px;
  }
  .enter_shops_item_inner{
    padding: 35px 30px;
  }
  .enter_shops_item_title{
    font-size: 30px;
  }
  .enter_shops_item_title_en{
    font-size: 55px;
    top: 0;
    left: 0;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .enter_shops_item_catch{
    font-size: 16px;
    margin-top: 20px;
  }
  .enter_shops_item_addr{
    font-size: 15px;
    margin-top: 20px;
  }
}
@media (min-width:1024px){

  /* MV */
  .enter_mv{
    height: 70vh;
  }
  .enter_mv_box1{
    width: 44.27%;
  }
  .enter_mv_box2{
    width: 55.73%;
  }

  .enter_mv_catch{
    font-size: 42px;
  }


}
@media (min-width:1200px){

  /* MV */
  .enter_mv{
    height: calc(100vh - 90px);
  }
  .enter_mv_box1{
    width: 44.27%;
  }
  .enter_mv_box2{
    width: 55.73%;
  }

  .enter_mv_catch{
    font-size: 50px;
  }

}
@media (min-width:1470px){

  /* MV */
  .enter_mv{
    height: calc(100vh - 100px);
  }
  .enter_mv_box1{
    /*width: 44.27%;*/
  }
  .enter_mv_box2{
    /*width: 55.73%;*/
  }

  .enter_mv_catch{
    font-size: 60px;
  }

}
@media (min-width:1720px){

  /* MV */
  .enter_mv{
    height: calc(100vh - 120px);
  }
  .enter_mv_box1{
    /*width: 44.27%;*/
  }
  .enter_mv_box2{
    /*width: 55.73%;*/
  }

  .enter_mv_catch{
    font-size: 70px;
  }

}




/*******************************
*　TOP
********************************/
:root{
  --top-menu-bg-txt-resize:0.2;
}
.wrapper{
  overflow: hidden;
}

/* セクション設定 */
.pg_top{
  
}
.pg_top .section.sec1{
  padding-top: 50px;
}
.pg_top .section.sec2{
  background-image: url('/img/top/bg1.jpg');
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.pg_top .section.sec3{

}
.pg_top .section.sec4{
  background-image: url('/img/top/bg2.jpg');
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.pg_top .section.sec5{

}
.pg_top .section.sec6{

}

.top_menu_bg_txt{
  position: absolute;
  z-index: -1;
}
.top_menu_bg_txt.pos1{
  width: calc(900px * var(--top-menu-bg-txt-resize));
  top: 40px;
  right: 0;
}
.top_menu_bg_txt.pos2{
  width: calc(839px * var(--top-menu-bg-txt-resize));
  top: 8%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  
  :root{
    --top-menu-bg-txt-resize:0.3;
  }
  
  .pg_top{

  }
  .pg_top .section.sec1{
    padding-top: 150px;
    padding-bottom: 110px;
    
  }
  .pg_top .section.sec2{
    padding-top: 140px;
    padding-bottom: 150px;
  }
  .pg_top .section.sec3{
    padding-top: 135px;
    padding-bottom: 115px;
  }
  .pg_top .section.sec4{
    padding-top: 100px;
    padding-bottom: 115px;
  }
  .pg_top .section.sec5{
    padding-top: 100px;
    
  }
  .pg_top .section.sec6{
    
  }
  .pg_top .section.sec7{
    
  }
  .pg_top .section.sec8{
    
  }
  
  .top_menu_bg_txt{
  }
  .top_menu_bg_txt.pos1{
    top: 75px;
  }
  .top_menu_bg_txt.pos2{
    top: 14%;
  }

}
@media (min-width:1024px){
  
  .top_menu_bg_txt.pos1{
    /*top: 75px;*/
  }
  .top_menu_bg_txt.pos2{
    /*top: 50%;*/
  }
}
@media (min-width:1200px){

  :root{
    --top-menu-bg-txt-resize:0.4;
  }
  .top_menu_bg_txt.pos1{
    top: 75px;
  }
  .top_menu_bg_txt.pos2{
    top: 50%;
  }
}
@media (min-width:1470px){

  :root{
    --top-menu-bg-txt-resize:0.5;
  }

}
@media (min-width:1720px){

  :root{
    --top-menu-bg-txt-resize:1;
  }
  .top_menu_bg_txt.pos1{
    top: 75px;
  }
  .top_menu_bg_txt.pos2{
    top: 50%;
  }

}

/* メイン部分 */

/* MV */
.top_mv{
  background: #e8eef1;
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.top_mv:after{
  content: "";
  background: #FFF;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 205px;
}
.top_mv_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.top_mv_box1{
  width: 48.64%;
  width: 100%;
  position: relative;
  z-index: 2;
}
.top_mv_box2{
  width: 48.64%;
  width: 100%;
  position: relative;
  z-index: 1;
}
.top_slider_sub{
  margin-left: -30px;
}
.top_slider_main{
  margin-right: var(--margin-for-device-side);;
}

.top_slider_sub_imgs_item.img_fit:before{
  padding-top: 107.018%;
}
.top_slider_main_imgs_item.img_fit:before{
  padding-top: 119.718%;
}

.top_mv_catch{
  font-size: 22px;
  line-height: 1.2833;
  line-height: 1.4;
  white-space: nowrap;
  margin-left: -30px;
  margin-top: 20px;
}
.top_mv_catch_en{
  font-size: 100px;
  font-family: var(--font-mincho);
  letter-spacing: 0;
  line-height: 1;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #FFF;
  opacity: 0.3;
  position: absolute;
  z-index: 1;
  bottom: 205px;
  right: calc(100% + 110px);
}

/* About */
.top_about{

}
.top_about_title{

}
.top_about_txt{
  text-align: center;
}
* + .top_about_txt{
  margin-top: 30px;
}

/* 悩みリスト */
.top_nayami_list{
  /*display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;*/
}
* + .top_nayami_list{
  margin-top: 30px;
}
.top_nayami_list_item{
  width: 100%;
  /*margin: 0 auto;*/
  /*padding: 0 5px;*/
}
.top_nayami_list_item:nth-child(n+2){
  /*margin-top: 15px;*/
}
.top_nayami_list_item_inner{
  display: block;
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #FFF;
}
.top_nayami_list_item_inner:before{
  content: "";
  /*background: rgba(0,0,0,0.65);*/
  background: rgba(0,0,0,0.40);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.top_nayami_list_item_img{
  
}
.top_nayami_list_item_img.img_fit:before{
  padding-top: 108.571%;
}
.top_nayami_list_item_img img{
  
}
.top_nayami_list_item_title{
  width: 100%;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5454;
  font-family: var(--font-mincho);
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-align: center;
  
}
.top_nayami_list_item_txt{
  font-size: 12px;
  text-align: center;
  border: 1px solid currentColor;
  padding: 8px 5px 9px;
  position: absolute;
  z-index: 3;
  left: 15px;
  right: 15px;
  bottom: 20px;
}

.top_nayami_list_item_inner:hover:before{
  background: rgba(0,0,0,0.5);
  background: rgba(0,0,0,0.8);
}
.top_nayami_list_item_inner:hover .top_nayami_list_item_img img{
  transform: scale(1.05);
}
.top_nayami_list_item_inner:hover .top_nayami_list_item_title{
  
}
.top_nayami_list_item_inner:hover .top_nayami_list_item_txt{
  transform: scale(1.05);
}

/* キャンペーン */
.top_campaign{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_campaign_box1{
  width: 100%;
}
.top_campaign_box2{
  width: 100%;
  margin-top: 20px;
}
.top_campaign_box2_inner{
  margin-right: var(--margin-for-device-side);
}

/* キャンペーンリスト */
.campaign_list{
  
}
.campaign_list_item{
  
}
.campaign_list_item_inner{
  display: block;
  box-shadow: 1.414px 1.414px 9.5px 0.5px rgba(0, 0, 0, 0.1);
}
.campaign_list_item_inner:hover{
  /*background: var(--main-color);*/
}
.campaign_list_item_img{
  
}
.campaign_list_item_img.img_fit:before{
  padding-top: 59.016%;
}

.campaign_list_item_meta{
  padding: 15px 15px;
}
.campaign_list_item_title{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-mincho);
  border-bottom: 1px solid #e0dbd0;
  padding-bottom: 8px;
}

.campaign_list_item_price{
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
}
* + .campaign_list_item_price{
  margin-top: 15px;
}
.campaign_list_item_price dl{
  display: flex;
  align-items: center;
  color: #b2b2b2;
}
.campaign_list_item_price dt{
  width: 100px;
  font-size: 1em;
  border: 1px solid currentColor;
  padding: 1px 5px 2px;
  margin-right: 12px;
  text-align: center;
}
.campaign_list_item_price dd{
  width: 120px;
  font-size: 2em;
}
.campaign_list_item_price dd span{
  display: inline-block;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  position: relative;
  z-index: 1;
}
.campaign_list_item_price dd em{
  font-size: 15px;
  font-style: normal;
}

.campaign_list_item_price dl.price1 dt{
  
}
.campaign_list_item_price dl.price1 dd{
  
}
.campaign_list_item_price dl.price1 dd span{
  padding-left: 5px;
  padding-right: 5px;
  line-height: 1.15;
}
.campaign_list_item_price dl.price1 dd span:before{
  content: "";
  background-image: url('/img/price_strike.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.campaign_list_item_price dl.price2{
  
}
.campaign_list_item_price dl.price2 dt{
  width: 110px;
  background: #bed4df;
  border: 1px solid #bed4df;
  color: #181818;
  font-size: 1.23em;
}
.campaign_list_item_price dl.price2 dd{
  width: auto;
  font-size: 2.153em;
}
.campaign_list_item_price dl.price2 dd span{
  color: #ff5858;
  margin-right: 3px;
}

/* キャンペーンリスト(スライド用) */
.campaign_list.slider{
  
}
.campaign_list.slider .campaign_list_item{
  max-width: 300px;
  padding: 10px 10px
}
.campaign_list.slider .campaign_list_item_inner{
}

/* スライダーボタン1 */
.cmn_swiper_btns{
  display: flex;
  align-items: center;
  justify-content: center;
}
* + .cmn_swiper_btns{
  margin-top: 25px;
}
.cmn_swiper_btns_prev,
.cmn_swiper_btns_next{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid #e0dbd0;
  cursor: pointer;
}
.cmn_swiper_btns_prev{
  
}
.cmn_swiper_btns_next{
  
}
.cmn_swiper_btns_prev:hover,
.cmn_swiper_btns_next:hover{
  background: #e0dbd0;
}
.cmn_swiper_btns_prev.swiper-button-disabled,
.cmn_swiper_btns_next.swiper-button-disabled{
  pointer-events: none;
  opacity: 0.5;
}
  
.cmn_swiper_btns_bdr{
  width: 1px;
  height: 50px;
  background: #e0dbd0;
  margin: 0 28px;
}


/* スライダーボタン2 */
.cmn_swiper_btns2{
  display: flex;
  justify-content: space-between;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.cmn_swiper_btns2_prev,
.cmn_swiper_btns2_next{
  width: 15px;
  aspect-ratio: 28 / 74;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
}
.cmn_swiper_btns2_prev{
  background-image: url('/img/arrow_prev.png');
}
.cmn_swiper_btns2_next{
  background-image: url('/img/arrow_next.png');
}
.cmn_swiper_btns2_prev:hover,
.cmn_swiper_btns2_next:hover{
  transform: scale(1.05);
}
.cmn_swiper_btns2_prev.swiper-button-disabled,
.cmn_swiper_btns2_next.swiper-button-disabled{
  pointer-events: none;
  opacity: 0;
}

/* メニュー(head) */
.top_menu_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}
.top_menu_head .tt2{
  margin-bottom: 20px;
}
.top_menu_head .tt4{
  margin-bottom: 20px;
}
.top_menu_head_box1{
  width: 100%;
}
.top_menu_head_box2{
  width: 100%;
}

/* メニュー */
.top_menu_contents{
  
}
.top_menu_contents_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.top_menu_contents_row + .top_menu_contents_row{
  margin-top: 50px;
}
.top_menu_contents_box1{
  width: 100%;
}
.top_menu_contents_box2{
  width: 34.23%;
  width: 100%;
  margin-top: 20px;
}
.top_menu_contents_img{
  
}
.top_menu_contents_img.img_fit:before{
  padding-top: 70.866%;
}
.top_menu_contents_img2{
  
}
.top_menu_contents_img2.img_fit:before{
  padding-top: 100%;
}
.top_menu_contents_title{
  margin-bottom: 20px;
}
.top_menu_contents_title_ja{
  font-size: 22px;
  font-weight: 400;
}
.top_menu_contents_title_en{
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-mincho);
  white-space: nowrap;
}
.top_menu_contents_title_en:after{
  content: "";
  width: 100%;
  height: 1px;
  background: #afafaf;
  margin-left: 15px;
}
.top_menu_contents_txt{
  
}



/* メニュー（小リスト） */
.top_menu_list{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .top_menu_list{
  margin-top: 50px;
}
.top_menu_list_item{
  width: 100%;
  padding: 0 5px;
}
.top_menu_list_item:nth-child(n+2){
  margin-top: 30px;
}
.top_menu_list_item:nth-child(3n+2){
  
}
.top_menu_list_item_inner{
  background: #FFF;
}
.top_menu_list_item_meta{
  padding: 20px 15px;
}
.top_menu_list_item{
  
}

/* 理由 */
.top_reason{
  position: relative;
  z-index: 1;
  padding: 0 25px;
}
* + .top_reason{
  
}
.top_reason_row{
}
.top_reason_head{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #07275e;
}
.top_reason_head_num{
  font-size: 40px;
  font-family: var(--font-mincho);
  line-height: 1;
  color: #07275e;
  padding-right: 10px;
  margin-right: 15px;
  position: relative;
  z-index: 1;
}
.top_reason_head_num:after{
  content: "";
  width: 1px;
  height: 0.75em;
  background: #e0dbd0;
  position: absolute;
  z-index: 1;
  top: 58%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.top_reason_head_title{
  font-size: 16px;
  line-height: 1.2352;
  font-family: var(--font-mincho);
  margin-bottom: -6px;
}
.top_reason_txt{
  margin-top: 20px;
  font-size: 13px;
}
.top_reason_imgs{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
* + .top_reason_imgs{
  margin-top: 25px;
}
.top_reason_imgs_item{
  width: 48.36%;
}
.top_reason_imgs_item.img_fit:before{
  padding-top: 62.921%;
}

/* お客様の声 */
.top_voice_list{
}
.top_voice_list_item{
  width: 100%;
}
.top_voice_list_item_inner{
  border: 1px solid #e0dbd0;
  padding: 35px 15px;
}
.top_voice_list_item .voice_list_age{
  margin-top: -5px;
  margin-bottom: 10px;
}
.top_voice_list_item .voice_list_detail{
  padding-left: 10px;
  padding-right: 10px;
}

/* レビュー */
.top_review{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  padding-top: 42px;
}
* + .top_review{
  padding-top: 100px;
}
.top_review_row{
  width: 100%;
  padding: 0 15px;
}
.top_review_row + .top_review_row{
  margin-top: 100px;
}
.top_review_head{
  padding: 5px 20px 20px;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
.top_review_head.bg1{
  background-image: url('/img/review_bg1.jpg');
}
.top_review_head.bg2{
  background-image: url('/img/review_bg2.jpg');
}
.top_review_head_sample{
  margin-top: -47px;
  margin-bottom: 12px;
  text-align: center;
}
.top_review_head_logo{
  margin-bottom: 18px;
}
.top_review_head_txt{
  font-size: 18px;
  font-family: var(--font-mincho);
  line-height: 1.333;
}
.top_review_posts{
  border: 1px solid #dbdbdb;
  padding: 20px 20px;
  height: 420px;
  overflow-y: scroll; 
}
* + .top_review_posts{
  margin-top: 20px;
}
.top_review_posts_item{
  
}
.top_review_posts_item + .top_review_posts_item{
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dbdbdb;
}
.top_review_posts_item_rate{
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #e7c333;
}
.top_review_posts_item_rate_num{
  font-weight: 700;
  font-family: var(--font-mincho);  
  margin-right: 10px;
}
.top_review_posts_item_rate_star{
  font-family: "Font Awesome 5 Free";
}
.top_review_posts_item_rate_star:before{
  font-weight: 900;
}
.top_review_posts_item_rate_star:after{
  font-weight: 400;
}

.top_review_posts_item_rate_star[data-rate="0.0"]:before{ content: ""; }
.top_review_posts_item_rate_star[data-rate="0.5"]:before{ content: "\f5c0"; }
.top_review_posts_item_rate_star[data-rate="1.0"]:before{ content: "\f005"; }
.top_review_posts_item_rate_star[data-rate="1.5"]:before{ content: "\f005\f5c0"; }
.top_review_posts_item_rate_star[data-rate="2.0"]:before{ content: "\f005\f005"; }
.top_review_posts_item_rate_star[data-rate="2.5"]:before{ content: "\f005\f005\f5c0"; }
.top_review_posts_item_rate_star[data-rate="3.0"]:before{ content: "\f005\f005\f005"; }
.top_review_posts_item_rate_star[data-rate="3.5"]:before{ content: "\f005\f005\f005\f5c0"; }
.top_review_posts_item_rate_star[data-rate="4.0"]:before{ content: "\f005\f005\f005\f005"; }
.top_review_posts_item_rate_star[data-rate="4.5"]:before{ content: "\f005\f005\f005\f005\f5c0"; }
.top_review_posts_item_rate_star[data-rate="5.0"]:before{ content: "\f005\f005\f005\f005\f005"; }

.top_review_posts_item_rate_star[data-rate="0.0"]:after{ content: "\f005\f005\f005\f005\f005"; }
.top_review_posts_item_rate_star[data-rate="0.5"]:after{ content: "\f005\f005\f005\f005"; }
.top_review_posts_item_rate_star[data-rate="1.0"]:after{ content: "\f005\f005\f005\f005"; }
.top_review_posts_item_rate_star[data-rate="1.5"]:after{ content: "\f005\f005\f005"; }
.top_review_posts_item_rate_star[data-rate="2.0"]:after{ content: "\f005\f005\f005"; }
.top_review_posts_item_rate_star[data-rate="2.5"]:after{ content: "\f005\f005"; }
.top_review_posts_item_rate_star[data-rate="3.0"]:after{ content: "\f005\f005"; }
.top_review_posts_item_rate_star[data-rate="3.5"]:after{ content: "\f005"; }
.top_review_posts_item_rate_star[data-rate="4.0"]:after{ content: "\f005"; }
.top_review_posts_item_rate_star[data-rate="4.5"]:after{ content: ""; }
.top_review_posts_item_rate_star[data-rate="5.0"]:after{ content: ""; }  

.top_review_posts_item_comment{
  font-size: 15px;
  line-height: 2.1333;
  line-height: 1.875;
  text-align: justify;
}
* + .top_review_posts_item_comment{
  margin-top: 10px;
}

@media (max-width:1023px){
  
  .top_mv:after{
    height: 0;
  }  
  .top_mv_box1{
    display: none;
  }
  .top_mv_box2{
    width: 85%;
    margin-left: auto;
  }
  .top_mv_catch{
    position: absolute;
    z-index: 2;
    left: 50px;
    bottom: 20px;
  }
  .top_mv_catch_en{
    font-size: 75px;
    bottom: 0;
    left: var(--margin-for-device-side);;
    right: auto;
  }
  .top_slider_main_imgs_item.img_fit:before{
    padding-top: 175%;
  }
  
}
@media (max-width:767px){


  .top_mv:after{
    height: 0;
  }  
  .top_mv_box1{
    display: none;
  }
  .top_mv_box2{
    width: 85%;
    margin-left: auto;
  }
  .top_mv_catch{
    position: absolute;
    z-index: 2;
    left: 50px;
    bottom: 20px;
  }
  .top_mv_catch_en{
    font-size: 75px;
    bottom: 0;
    left: var(--margin-for-device-side);;
    right: auto;
  }
  .top_slider_main_imgs_item.img_fit:before{
    padding-top: 175%;
  }
  
  
  .top_menu_list_item .read_more a{
    width: 100%;
  }
  
  .top_voice_list{
    padding-left: 15px;
    padding-right: 15px;
    margin-left: var(--margin-for-device-side);
    margin-right: var(--margin-for-device-side);
  }
  
  .top_about_txt{
    text-align: justify;
  }
  .top_menu_head{
    margin-bottom: 40px;
  }
  
}
@media (min-width:768px){

  
  
  /* 悩みリスト */
  .top_nayami_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .top_nayami_list{
    margin-top: 75px;
  }
  .top_nayami_list_item{
    width: 50%;
    padding: 0 10px;
  }
  .top_nayami_list_item:nth-child(n+2){
    margin-top: 0;
  }
  .top_nayami_list_item:nth-child(n+3){
    margin-top: 30px;
  }
  .top_nayami_list_item_inner{
    font-size: 22px;
  }
  
  .top_nayami_list_item_title{
    top: 50%;
  }
  .top_nayami_list_item_txt{
    font-size: 14px;
    padding: 8px 5px 9px;
    left: 35px;
    right: 35px;
    bottom: 45px;
  }
  

  /* キャンペーン */
  .top_campaign{
    
  }
  .top_campaign_box1{
    /*width: 48.64%;*/
  }
  .top_campaign_box2{
    /*width: 42.79%;*/
    margin-top: 25px;
  }
  .top_campaign_box2_inner{
    margin-left: -10px;
  }
  
  /* キャンペーンリスト */
  .campaign_list{

  }
  .campaign_list_item{

  }
  
  .campaign_list_item_meta{
    padding: 20px 30px;
  }
  .campaign_list_item_title{
    font-size: 20px;
    padding-bottom: 15px;
  }
  .campaign_list_item_price{
    font-size: 13px;
  }
  * + .campaign_list_item_price{
    margin-top: 27px;
  }
  .campaign_list_item_price dl{
  }
  .campaign_list_item_price dt{
    width: 100px;
    padding: 1px 5px 2px;
    margin-right: 12px;
  }
  .campaign_list_item_price dd{
    width: 120px;
  }
  .campaign_list_item_price dd em{
    font-size: 15px;
  }
  .campaign_list_item_price dl.price2 dt{
    width: 110px;
  }
  .campaign_list_item_price dl.price2 dd{
  }


  /* キャンペーンリスト(スライド用) */
  .campaign_list.slider{
    
  }
  .campaign_list.slider .campaign_list_item{
    max-width: 300px;
    padding: 10px 10px
  }
  .cmn_swiper_btns{
    
  }
  * + .cmn_swiper_btns{
    margin-top: 25px;
  }
  .cmn_swiper_btns_prev,
  .cmn_swiper_btns_next{
    width: 52px;
  }
  .cmn_swiper_btns_bdr{
    width: 1px;
    height: 60px;
    margin: 0 28px;
  }
  

  /* スライダーボタン2 */
  .cmn_swiper_btns2{
  }
  .cmn_swiper_btns2_prev,
  .cmn_swiper_btns2_next{
    width: 18px;
  }
  

  /* メニュー(head) */
  .top_menu_head{
    margin-bottom: 80px;
  }
  .top_menu_head .tt2{
    margin-bottom: 20px;
  }
  .top_menu_head .tt4{
    margin-bottom: 20px;
  }
  .top_menu_head_box1{
    width: 255px;
  }
  .top_menu_head_box2{
    width: calc(100% - 255px - 95px);
  }


  /* メニュー */
  .top_menu_contents{

  }
  .top_menu_contents_row{
  }
  .top_menu_contents_row + .top_menu_contents_row{
    margin-top: 50px;
  }
  .top_menu_contents_box1{
    width: 57.20%;
  }
  .top_menu_contents_box2{
    width: 34.23%;
    width: 37.23%;
    margin-top: 0;
  }
  .top_menu_contents_title{
    margin-bottom: 20px;
  }
  .top_menu_contents_title_ja{
    font-size: 22px;
  }
  .top_menu_contents_title_en{
    font-size: 18px;
  }
  .top_menu_contents_title_en:after{
    margin-left: 25px;
  }
  
  .top_menu_contents_row:nth-child(odd) .top_menu_contents_box1{

  }
  .top_menu_contents_row:nth-child(odd) .top_menu_contents_box2{

  }
  .top_menu_contents_row:nth-child(even) .top_menu_contents_box1{
    order: 2;
  }
  .top_menu_contents_row:nth-child(even) .top_menu_contents_box2{
    order: 1;
  }

  /* メニュー（小リスト） */
  .top_menu_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
  }
  * + .top_menu_list{
    margin-top: 50px;
  }
  .top_menu_list_item{
    width: 33.333%;
    padding: 0 8px;
  }
  .top_menu_list_item:nth-child(n+2){
    margin-top: 0;
  }
  .top_menu_list_item:nth-child(3n+1){
    margin-top: 100px;
  }
  .top_menu_list_item:nth-child(3n+2){
    margin-top: 50px;
  }

  

  /* 理由 */
  .top_reason{
    padding: 0 35px;
  }
  * + .top_reason{

  }
  .top_reason_row{
  }
  .top_reason_head{
  }
  .top_reason_head_num{
    font-size: 60px;
    padding-right: 15px;
    margin-right: 25px;
  }
  .top_reason_head_num:after{
    height: 0.75em;
    top: 58%;
  }
  .top_reason_head_title{
    font-size: 26px;
    margin-bottom: -10px;
  }
  .top_reason_txt{
    margin-top: 30px;
    font-size: 16px;
  }
  .top_reason_imgs{
  }
  * + .top_reason_imgs{
    margin-top: 25px;
  }
  
  /* お客様の声 */
  .top_voice_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
  }
  .top_voice_list_item{
    width: 33.333%;
    padding: 0 8px;
  }
  .top_voice_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .top_voice_list_item_inner{
    padding: 25px 15px;
  }
  .top_voice_list_item .voice_list_age{
    margin-top: -5px;
    margin-bottom: 10px;
  }
  .top_voice_list_item .voice_list_detail{
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* レビュー */
  .top_review{
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 42px;
  }
  * + .top_review{
    padding-top: 100px;
  }
  .top_review_row{
    width: 50%;
    padding: 0 15px;
  }
  .top_review_row + .top_review_row{
    margin-top: 0;
  }
  .top_review_head{
    padding: 5px 25px 25px;
  }
  .top_review_head_sample{
    margin-top: -47px;
    margin-bottom: 12px;
  }
  .top_review_head_logo{
    margin-bottom: 18px;
  }
  .top_review_head_txt{
    font-size: 20px;
  }
  .top_review_posts{
    padding: 30px 26px;
    height: 420px;
  }
  * + .top_review_posts{
    margin-top: 30px;
  }
  .top_review_posts_item{

  }
  .top_review_posts_item + .top_review_posts_item{
    margin-top: 20px;
    padding-top: 20px;
  }
  .top_review_posts_item_rate{
    font-size: 20px;
  }
  .top_review_posts_item_rate_num{
    margin-right: 10px;
  }
  
  .top_review_posts_item_comment{
    font-size: 15px;
    line-height: 2.1333;
  }
  * + .top_review_posts_item_comment{
    margin-top: 10px;
  }

}
@media (min-width:1024px){

  /* MV */
  .top_mv{
    padding-top: 80px;
  }
  .top_mv:after{
    height: 205px;
  }
  .top_mv_inner{
  }
  .top_mv_box1{
    width: 48.64%;
  }
  .top_mv_box2{
    width: 48.64%;
  }
  .top_slider_sub{
    margin-left: -30px;
  }
  .top_slider_main{
    margin-right: -170px;
  }
  .top_mv_catch{
    font-size: 48px;
    line-height: 1.2833;
    margin-left: -30px;
    margin-top: 20px;
  }
  .top_mv_catch_en{
    font-size: 200px;
    bottom: 205px;
    right: calc(100% + 110px);
  }

  
  /* 悩みリスト */
  .top_nayami_list{
    margin-left: -15px;
    margin-right: -15px;
  }
  .top_nayami_list_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .top_nayami_list_item:nth-child(n+3){
    margin-top: 0;
  }
  .top_nayami_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .top_nayami_list_item_inner{
    font-size: 19px;
  }
  .top_nayami_list_item_title{
  }
  .top_nayami_list_item_txt{
    font-size: 12px;
    left: 15px;
    right: 15px;
    bottom: 25px;
    /*
    padding: 8px 5px 9px;
    */
  }
  
  
  /* 理由 */
  .top_reason{
    padding: 0 50px;
  }
  .top_reason_txt{
    text-align: center;
  }
  
  

}
@media (min-width:1200px){

  /* MV */
  .top_mv{
    padding-top: 80px;
  }
  .top_mv:after{
    height: 205px;
  }
  .top_mv_inner{
  }
  .top_mv_box1{
    width: 48.64%;
  }
  .top_mv_box2{
    width: 48.64%;
  }
  .top_slider_sub{
    margin-left: -30px;
  }
  .top_slider_main{
    margin-right: -170px;
  }
  .top_mv_catch{
    font-size: 58px;
    line-height: 1.2833;
    margin-left: -30px;
    margin-top: 20px;
  }
  .top_mv_catch_en{
    font-size: 200px;
    bottom: 205px;
    right: calc(100% + 110px);
  }
  
  .top_nayami_list_item_inner{
    font-size: 22px;
  }
  .top_nayami_list_item_txt{
    font-size: 14px;
    padding: 8px 5px 9px;
    left: 35px;
    right: 35px;
    bottom: 45px;
  }
  
  /* キャンペーン */
  .top_campaign{
  }
  .top_campaign_box1{
    width: 48.64%;
  }
  .top_campaign_box2{
    width: 42.79%;
    margin-top: 0;
  }
  
  
  /* キャンペーンリスト */
  .campaign_list{

  }
  .campaign_list_item{

  }
  
  .campaign_list_item_meta{
    padding: 20px 30px;
  }
  .campaign_list_item_title{
    font-size: 20px;
    padding-bottom: 15px;
  }
  .campaign_list_item_price{
    font-size: 13px;
  }
  * + .campaign_list_item_price{
    margin-top: 27px;
  }
  .campaign_list_item_price dl{
  }
  .campaign_list_item_price dt{
    width: 100px;
    padding: 1px 5px 2px;
    margin-right: 12px;
  }
  .campaign_list_item_price dd{
    width: 120px;
  }
  .campaign_list_item_price dd em{
    font-size: 15px;
  }
  .campaign_list_item_price dl.price2 dt{
    width: 110px;
  }
  .campaign_list_item_price dl.price2 dd{
  }

  /* キャンペーンリスト(スライド用) */
  .campaign_list.slider{

  }
  .campaign_list.slider .campaign_list_item{
    max-width: 630px;
    padding: 10px 10px
  }
  .cmn_swiper_btns{
    justify-content: flex-start;
  }

  /* スライダーボタン2 */
  .cmn_swiper_btns2{
  }
  .cmn_swiper_btns2_prev,
  .cmn_swiper_btns2_next{
    width: 28px;
  }
  
  /* メニュー(head) */
  .top_menu_head{
    margin-bottom: 80px;
  }
  .top_menu_head .tt2{
    margin-bottom: 20px;
  }
  .top_menu_head .tt4{
    margin-bottom: 20px;
  }
  .top_menu_head_box1{
    width: 255px;
  }
  .top_menu_head_box2{
    width: calc(100% - 255px - 95px);
  }


  /* メニュー */
  .top_menu_contents{

  }
  .top_menu_contents_row{
  }
  .top_menu_contents_row + .top_menu_contents_row{
    margin-top: 100px;
  }
  .top_menu_contents_box1{
    width: 57.20%;
  }
  .top_menu_contents_box2{
    width: 34.23%;
    width: 37.23%;
  }
  .top_menu_contents_title{
    margin-bottom: 20px;
  }
  .top_menu_contents_title_ja{
    font-size: 32px;
  }
  .top_menu_contents_title_en{
    font-size: 18px;
  }
  .top_menu_contents_title_en:after{
    margin-left: 25px;
  }
  
  .top_menu_contents_row:nth-child(odd) .top_menu_contents_box1{

  }
  .top_menu_contents_row:nth-child(odd) .top_menu_contents_box2{

  }
  .top_menu_contents_row:nth-child(even) .top_menu_contents_box1{
    order: 2;
  }
  .top_menu_contents_row:nth-child(even) .top_menu_contents_box2{
    order: 1;
  }

  /* メニュー（小リスト） */
  .top_menu_list{
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .top_menu_list{
    margin-top: 100px;
  }
  .top_menu_list_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .top_menu_list_item:nth-child(n+2){
    margin-top: 0;
  }
  .top_menu_list_item:nth-child(3n+1){
    margin-top: 160px;
  }
  .top_menu_list_item:nth-child(3n+2){
    margin-top: 80px;
  }
  
  /* 理由 */
  .top_reason{
    padding: 0 95px;
  }
  * + .top_reason{

  }
  .top_reason_row{
  }
  .top_reason_head{
  }
  .top_reason_head_num{
    font-size: 100px;
    padding-right: 15px;
    margin-right: 25px;
  }
  .top_reason_head_num:after{
    height: 0.75em;
    top: 58%;
  }
  .top_reason_head_title{
    font-size: 34px;
    margin-bottom: -10px;
  }
  .top_reason_txt{
    margin-top: 30px;
    font-size: 16px;
    text-align: center;
  }
  .top_reason_imgs{
  }
  * + .top_reason_imgs{
    margin-top: 25px;
  }
  
  /* お客様の声 */
  .top_voice_list{
    margin-left: -15px;
    margin-right: -15px;
  }
  .top_voice_list_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .top_voice_list_item:nth-child(n+4){
    margin-top: 30px;
  }
  .top_voice_list_item_inner{
    padding: 35px 15px;
  }
  
  /* レビュー */
  .top_review{
    margin-left: -15px;
    margin-right: -15px;
    padding-top: 42px;
  }
  * + .top_review{
    padding-top: 100px;
  }
  .top_review_row{
    width: 50%;
    padding: 0 15px;
  }
  .top_review_row + .top_review_row{
    margin-top: 0;
  }
  .top_review_head{
    padding: 5px 45px 50px;
  }
  .top_review_head_sample{
    margin-top: -47px;
    margin-bottom: 12px;
  }
  .top_review_head_logo{
    margin-bottom: 18px;
  }
  .top_review_head_txt{
    font-size: 23px;
  }
  .top_review_posts{
    padding: 30px 26px;
    height: 420px;
  }
  * + .top_review_posts{
    margin-top: 50px;
  }
  .top_review_posts_item{

  }
  .top_review_posts_item + .top_review_posts_item{
    margin-top: 20px;
    padding-top: 20px;
  }
  .top_review_posts_item_rate{
    font-size: 20px;
  }
  .top_review_posts_item_rate_num{
    margin-right: 10px;
  }
  
  .top_review_posts_item_comment{
  }
}
@media (min-width:1470px){


}
@media (min-width:1720px){


}



/*******************************
*　HOME
********************************/
.pg_home{

}
.pg_home .section.sec1{

}
.pg_home .section.sec2{

}
.pg_home .section.sec3{

}
.pg_home .section.sec4{

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

}
@media (min-width:768px){

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}




@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}





/*******************************
*　
********************************/

/* セクション設定 */
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}

/* メイン部分 */

.menu_contents{

}
* + .menu_contents{
  margin-top: 50px;
}
.menu_contents_row{
  padding-top: 50px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}
.menu_contents_row + .menu_contents_row{
  margin-top: 40px;
}
.menu_contents_row:nth-child(odd):after{
  content: "";
  width: 100vw;
  background-image: url('/img/menu_contents_bg.jpg');
  background-size: cover;
  background-position: center top;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.menu_contents_row:nth-child(even):after{

}

/* 基本情報（カテゴリ） */
.menu_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menu_about_box1{
  width: 100%;
}
.menu_about_box2{
  width: 100%;
  margin-top: 20px;
}
.menu_about_img{
  width: 70%;
  margin: 0 auto;
}
.menu_about_img img{
  width: 100%;
}
.menu_about_head{
  margin-bottom: 30px;
}
.menu_about_head_en{
  font-size: 30px;
  font-weight: 500;
  font-family: var(--font-mincho);
  line-height: 1.2;
  letter-spacing: 0;
}
.menu_about_head_ja{
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-mincho);
  line-height: 1.2;
  color: #07275e;
  margin-top: 5px;
}
.menu_about_head_shop{
  display: flex;
  justify-content: flex-end;
  font-size: 10px;
}
.menu_about_txt{

}

/* 悩み */
.menu_about_nayami{
  background: #FFF;
  padding: 20px 15px;
}
* + .menu_about_nayami{
  margin-top: 30px;
}

.menu_about_nayami_title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--font-mincho);
  line-height: 1.4;
  text-align: center;
  margin-bottom: 15px;
}
.menu_about_nayami_title span{
  margin: 0 10px;
}
.menu_about_nayami_title:before,
.menu_about_nayami_title:after{
  content: "";
  width: 30px;
  height: 1px;
  background: #000;
}
.menu_about_nayami_title:before{

}
.menu_about_nayami_title:after{

}
.menu_about_nayami_list{

}
.menu_about_nayami_list li{
  font-size: 15px;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.menu_about_nayami_list li:before{
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #bed4df;
  position: absolute;
  top: 2px;
  left: 0;
}
.menu_about_nayami_list li + li{
  margin-top: 10px;
}

/* 金額（見出し） */
.menu_price_head{
  text-align: center;
  margin-bottom: 20px;
}
* + .menu_price_head{
  margin-top: 50px;
}
.menu_price_head_en{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--font-mincho);
  color: #FFF;
}
.menu_price_head_ja{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-mincho);
}

/* 金額（メニュー） */
.menu_price{
  
}
.menu_price_row{
  display: flex;
  flex-wrap: wrap;
}
.menu_price_row + .menu_price_row{
  margin-top: 50px;
}
.menu_price_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.menu_price_box2{
  width: 100%;
  /*padding: 30px 30px;*/
  padding: 20px 15px;
  background: #FFF;
}
.menu_price_en{
  font-size: 50px;
  font-weight: 400;
  font-family: var(--font-mincho);
  line-height: 1;
  white-space: nowrap;
  color: #ededed;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 100%;
  margin-right: -35px;
}
.menu_price_img{
}
.menu_price_img.img_fit:before{
  padding-top: 126.316%;
}
.menu_price_title{
  font-size: 18px;
  font-weight: 400;
  border-bottom: 1px solid #e0dbd0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.menu_price_desc{
  
}
.menu_price_reco{
  margin-top: 15px;
}
.menu_price_reco_title{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.menu_price_reco_list{
  display: flex;
  flex-wrap: wrap;
}
.menu_price_reco_list span{
  min-width: 100px;
  padding: 3px 10px 4px;
  font-size: 13px;
  text-align: center;
  background: #e0dbd0;
  margin: 0 5px 5px 0;
}

.menu_price_tbl{
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #e0dbd0;
}
* + .menu_price_tbl{
  margin-top: 20px;
}
.menu_price_tbl_box1{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 255px;
  width: 100%;
  padding: 10px 15px;
  background: #e8eef1;
}
.menu_price_tbl_box2{
  width: calc(100% - 255px);
  width: 100%;
  padding: 10px 25px;
}
.menu_price_tbl_title{
  font-size: 16px;
  font-family: var(--font-mincho);
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
}

.menu_price_tbl_plan{
  display: flex;
  align-items: center;
}
.menu_price_tbl_plan + .menu_price_tbl_plan{
  margin-top: 10px;
}

.menu_price_tbl_plan dt{
  width: 85px;
  font-size: 14px;
  font-weight: 400;
}
.menu_price_tbl_plan dd{
  width: calc(100% - 85px);
  font-size: 10px;
  text-align: right;
}
.menu_price_tbl_plan dd strong{
  font-size: 2.333em;
  font-family: "Outfit", 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #ff5858;
}
.menu_price_tbl_plan dd em{
  font-size: 1.25em;
  font-style: normal;
}

.menu_price_notice{
  
}
* + .menu_price_notice{
  margin-top: 20px;
}
.menu_price_notice li{
  font-size: 13px;
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.menu_price_notice li:before{
  content: "※";
}
.menu_price_notice li + li{
  margin-top: 10px;
}


/* カラー調整 */
.menu_contents_row:nth-child(even) .menu_about_nayami{
  border: 5px solid #e6e9ea;
}
.menu_contents_row:nth-child(even) .menu_price_head_en{
  color: #e8eef1;
}

@media (max-width:767px){

}
@media (min-width:768px){

  * + .menu_contents{
    margin-top: 50px;
  }

  /* 基本情報（カテゴリ） */
  .menu_about{
  }
  .menu_about_box1{
    /*width: 42.79%;*/
  }
  .menu_about_box2{
    /*width: 51.35%;*/
  }
  .menu_about_img{

  }
  .menu_about_img{
    width: 70%;
  }
  .menu_about_head{
    margin-bottom: 30px;
  }
  .menu_about_head_en{
    font-size: 40px;
  }
  .menu_about_head_ja{
    font-size: 20px;
    margin-top: 10px;
  }
  .menu_about_head_shop{
    font-size: 10px;
  }
  .menu_about_txt{

  }

  /* 悩み */
  .menu_about_nayami{
    padding: 30px 30px;
  }
  * + .menu_about_nayami{
    margin-top: 30px;
  }

  .menu_contents_row:nth-child(even) .menu_about_nayami{
    border: 5px solid #e6e9ea;
  }

  .menu_about_nayami_title{
    font-size: 20px;
    margin-bottom: 15px;
  }
  .menu_about_nayami_title span{
    margin: 0 10px;
  }
  .menu_about_nayami_title:before,
  .menu_about_nayami_title:after{
    width: 30px;
  }
  .menu_about_nayami_list li{
    font-size: 16px;
    padding-left: 20px;
  }
  .menu_about_nayami_list li:before{
    top: 2px;
  }
  .menu_about_nayami_list li + li{
    margin-top: 10px;
  }
  
  /* 金額（見出し） */
  .menu_price_head{
    margin-bottom: 30px;
  }
  * + .menu_price_head{
    margin-top: 100px;
  }
  .menu_price_head_en{
    font-size: 60px;
  }
  .menu_price_head_ja{
    font-size: 18px;
  }

  /* 金額（メニュー） */
  .menu_price{

  }
  .menu_price_row{
  }
  .menu_price_row + .menu_price_row{
    margin-top: 50px;
  }
  .menu_price_box1{
    /*width: 40%;*/
  }
  .menu_price_box2{
    /*width: 60%;*/
    padding: 30px 25px;
  }
  .menu_price_en{
    font-size: 85px;
    margin-right: -35px;
  }
  /*.menu_price_img{
    left: 25px;
  }
  .menu_price_img{
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 25px;
    right: 0;
  }
  .menu_price_img.img_fit:before{
    padding-top: 0;
    height: 100%;
  }*/
  .menu_price_title{
    font-size: 28px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .menu_price_desc{

  }
  .menu_price_reco{
    margin-top: 15px;
  }
  .menu_price_reco_title{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .menu_price_reco_list{
  }
  .menu_price_reco_list span{
    min-width: 100px;
    padding: 3px 10px 4px;
    font-size: 13px;
    margin: 0 15px 10px 0;
  }

  .menu_price_tbl{
  }
  * + .menu_price_tbl{
    margin-top: 20px;
  }
  .menu_price_tbl_box1{
    width: 255px;
  }
  .menu_price_tbl_box2{
    width: calc(100% - 255px);
    padding: 10px 15px 10px 30px;
  }
  .menu_price_tbl_title{
    font-size: 16px;
    line-height: 1.7;
  }
  
  .menu_price_tbl_plan{
  }
  .menu_price_tbl_plan + .menu_price_tbl_plan{
    margin-top: 10px;
  }

  .menu_price_tbl_plan dt{
    width: 85px;
    font-size: 14px;
  }
  .menu_price_tbl_plan dd{
    width: calc(100% - 85px);
    font-size: 12px;
  }
  .menu_price_tbl_plan dd strong{
    font-size: 2.333em;
  }
  .menu_price_tbl_plan dd em{
    font-size: 1.25em;
  }

  .menu_price_notice{

  }
  * + .menu_price_notice{
    margin-top: 20px;
  }
  .menu_price_notice li{
    font-size: 15px;
  }
  .menu_price_notice li + li{
    margin-top: 10px;
  }


}
@media (min-width:1024px){

  /* 基本情報（カテゴリ） */
  .menu_about{
  }
  .menu_about_box1{
    width: 42.79%;
  }
  .menu_about_box2{
    width: 51.35%;
    margin-top: 0;
  }
  .menu_about_img{

  }
  .menu_about_img{
    width: 100%;
  }
  .menu_about_head{
    margin-bottom: 30px;
  }
  .menu_about_head_en{
    /*font-size: 60px;*/
  }
  .menu_about_head_ja{
    /*font-size: 28px;*/
    margin-top: 10px;
  }
  .menu_about_head_shop{
    font-size: 10px;
  }

  /* 悩み */
  .menu_about_nayami{
    padding: 30px 30px;
  }
  * + .menu_about_nayami{
    margin-top: 30px;
  }
  .menu_about_nayami_title{
    font-size: 20px;
    margin-bottom: 15px;
  }


  /* 金額（見出し） */
  .menu_price_head{
    margin-bottom: 50px;
  }
  * + .menu_price_head{
    margin-top: 100px;
  }
  .menu_price_head_en{
    font-size: 80px;
  }
  .menu_price_head_ja{
    font-size: 18px;
  }

  /* 金額（メニュー） */
  .menu_price{

  }
  .menu_price_row{
  }
  .menu_price_row + .menu_price_row{
    margin-top: 50px;
  }
  .menu_price_box1{
    width: 40%;
  }
  .menu_price_box2{
    width: 60%;
    padding: 30px 25px;
  }
  .menu_price_en{
    font-size: 85px;
    margin-right: -35px;
  }
  .menu_price_img{
    left: 25px;
  }
  .menu_price_img{
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 25px;
    right: 0;
  }
  .menu_price_img.img_fit:before{
    padding-top: 0;
    height: 100%;
  }
  .menu_price_title{
    font-size: 28px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .menu_price_desc{

  }
  .menu_price_reco{
    margin-top: 15px;
  }
  .menu_price_reco_title{
    font-size: 15px;
    margin-bottom: 10px;
  }
  .menu_price_reco_list{
  }
  .menu_price_reco_list span{
    min-width: 90px;
    padding: 3px 10px 4px;
    font-size: 13px;
    margin: 0 5px 5px 0;
  }

  .menu_price_tbl{
  }
  * + .menu_price_tbl{
    margin-top: 20px;
  }
  .menu_price_tbl_box1{
    width: 200px;
  }
  .menu_price_tbl_box2{
    width: calc(100% - 200px);
    padding: 10px 15px 10px 30px;
  }
  .menu_price_tbl_title{
  }
  
  .menu_price_tbl_plan{
  }
  .menu_price_tbl_plan + .menu_price_tbl_plan{
    margin-top: 10px;
  }

  .menu_price_tbl_plan dt{
    width: 85px;
    font-size: 14px;
  }
  .menu_price_tbl_plan dd{
    width: calc(100% - 85px);
    font-size: 12px;
  }
  .menu_price_tbl_plan dd strong{
    font-size: 2.333em;
  }
  .menu_price_tbl_plan dd em{
    font-size: 1.25em;
  }

  .menu_price_notice{

  }
  * + .menu_price_notice{
    margin-top: 20px;
  }
  .menu_price_notice li{
    font-size: 15px;
  }
  .menu_price_notice li + li{
    margin-top: 10px;
  }


}
@media (min-width:1200px){

  /* 基本情報（カテゴリ） */
  .menu_about{
  }
  .menu_about_box1{
    width: 42.79%;
  }
  .menu_about_box2{
    width: 51.35%;
  }
  .menu_about_img{

  }
  .menu_about_img{
    width: 100%;
  }
  .menu_about_head{
    margin-bottom: 30px;
  }
  .menu_about_head_en{
    font-size: 60px;
  }
  .menu_about_head_ja{
    font-size: 28px;
    font-size: 25px;
    margin-top: 10px;
  }
  .menu_about_head_shop{
    font-size: 10px;
  }

  /* 悩み */
  .menu_about_nayami{
    padding: 30px 30px;
  }
  * + .menu_about_nayami{
    margin-top: 30px;
  }

  .menu_about_nayami_title{
    font-size: 20px;
    margin-bottom: 15px;
  }

  /* 金額（メニュー） */
  .menu_price{

  }
  .menu_price_row{
  }
  .menu_price_row + .menu_price_row{
    margin-top: 50px;
  }
  .menu_price_box1{
    width: 40%;
  }
  .menu_price_box2{
    width: 60%;
    padding: 30px 25px;
  }
  .menu_price_en{
    font-size: 85px;
    margin-right: -35px;
  }
  .menu_price_img{
    left: 25px;
  }
  .menu_price_img{
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 25px;
    right: 0;
  }
  .menu_price_img.img_fit:before{
    padding-top: 0;
    height: 100%;
  }
  .menu_price_title{
    font-size: 28px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .menu_price_desc{

  }
  .menu_price_reco{
    margin-top: 15px;
  }
  .menu_price_reco_title{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .menu_price_reco_list{
  }
  .menu_price_reco_list span{
    min-width: 100px;
    padding: 3px 10px 4px;
    font-size: 13px;
    margin: 0 15px 10px 0;
  }

  .menu_price_tbl{
  }
  * + .menu_price_tbl{
    margin-top: 20px;
  }
  .menu_price_tbl_box1{
    width: 255px;
  }
  .menu_price_tbl_box2{
    width: calc(100% - 255px);
    padding: 10px 15px 10px 30px;
  }
  .menu_price_tbl_title{
    font-size: 20px;
    line-height: 1.7;
  }
  
  .menu_price_tbl_plan{
  }
  .menu_price_tbl_plan + .menu_price_tbl_plan{
    margin-top: 10px;
  }

  .menu_price_tbl_plan dt{
    width: 85px;
    font-size: 14px;
  }
  .menu_price_tbl_plan dd{
    width: calc(100% - 85px);
    font-size: 12px;
  }
  
  
}




/*******************************
*　
********************************/

/* セクション設定 */
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}

/* メイン部分 */

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}







/*******************************
*　
********************************/

/* セクション設定 */
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}

/* メイン部分 */

@media (max-width:767px){

}
@media (min-width:768px){

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}




/*******************************
*　
********************************/

/* セクション設定 */
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

}
@media (min-width:1024px){


}
@media (min-width:1200px){


}

/* メイン部分 */


/* 店舗一覧 */
.salon_list{

}
* + .salon_list{

}
.salon_list_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.salon_list_row + .salon_list_row{
  margin-top: 50px;
}
.salon_list_row .anchor{
  width: 100%;
}

.salon_list_box1{
  width: 70%;
  margin: 0 auto 25px;
}
.salon_list_box2{
  width: 100%;
}
.salon_list_box3{
  width: 100%;
  margin-top: 30px;
}
.salon_list_img{

}
.salon_list_img.img_fit:before{
  padding-top: 141.053%;
}

.salon_list_title{
  font-family: var(--font-mincho);
  margin-bottom: 5px;
  text-align: center;
}
.salon_list_title_ja{
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}
.salon_list_title_en{
  font-size: 18px;
  color: #bed4df;
}

.salon_list_tbl{

}
.salon_list_tbl tr{
  border-bottom: 1px solid #e5e5e5;
}
.salon_list_tbl th,
.salon_list_tbl td{
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  text-align: left;
  vertical-align: top;
  padding: 12px 0 12px;
}
.salon_list_tbl th{
  width: 110px;
}
.salon_list_tbl td{

}
.salon_list_btns{
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
* + .salon_list_btns{
  margin-top: 45px;
}
.salon_list_btns a{
  margin-left: 7.5px;
  margin-right: 7.5px;
}

.salon_list_map{
  margin-left: var(--margin-for-device-side);
  margin-right: var(--margin-for-device-side);
}
.salon_list_map iframe{
  width: 100%;
  height: 250px;
}

@media (max-width:767px){

}
@media (min-width:768px){

  /* 店舗一覧 */
  .salon_list{

  }
  * + .salon_list{

  }
  .salon_list_row{
    justify-content: space-between;
  }
  .salon_list_row + .salon_list_row{
    margin-top: 200px;
  }
  .salon_list_box1{
    width: 42.79%;
    margin-top: 5px;
  }
  .salon_list_box2{
    width: 51.35%;
  }
  .salon_list_box3{
    margin-top: 80px;
  }

  .salon_list_title{
    margin-bottom: 25px;
    text-align: left;
  }
  .salon_list_title_ja{
    font-size: 48px;
  }
  .salon_list_title_en{
    font-size: 25px;
  }

  .salon_list_tbl{

  }
  .salon_list_tbl th,
  .salon_list_tbl td{
    font-size: 16px;
    padding: 18px 0 21px;
  }
  .salon_list_tbl th{
    width: 125px;
  }
  .salon_list_tbl td{

  }
  .salon_list_btns{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  * + .salon_list_btns{
    margin-top: 45px;
  }
  .salon_list_btns a{
    margin-left: 7.5px;
    margin-right: 7.5px;
  }

  .salon_list_map{
  }
  .salon_list_map iframe{
    height: 580px;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){


}




/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}

/* スライド */
.gallery_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.gallery_box1{
  width: 100%;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  padding-top: 75.34%;
}
.gallery_main .img.img_fit img{
  object-fit: contain;
  object-position: center;
}
/* サムネ */
.gallery_thumb{

}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 76.47%;
}
.gallery_thumb .img.img_fit img{

}


/* 詳細 */
.gallery_detail{

}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  line-height: 1.5;
}
.gallery_detail .meta .price{
  font-size: 18px;
  line-height: 1.5;
  margin-left: auto;
}
.gallery_detail .post_content{
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}


/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  /* 詳細 */
  .gallery_wrap{
  }
  .gallery_box1{
    width: 65.76%;
  }
  .gallery_box2{
    width: 31.53%;
    margin-top: 0;

    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
  }

  /* サムネ */
  .gallery_thumb{
    width: 100%;
    height: 100%;
  }
  .gallery_thumb .swiper-slide {
    overflow: hidden;
  }
  .gallery_thumb .img{
    height: 100%;
  }
  .gallery_thumb .img.img_fit:before{

  }

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 18px;
  }
  .gallery_detail .meta .price{
    font-size: 18px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }
}
@media (min-width:1024px){

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 20px;
  }
  .gallery_detail .meta .price{
    font-size: 20px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

}
@media (min-width:1200px){


}





/*******************************
*　
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


}
@media (min-width:1024px){


}
@media (min-width:1200px){


}
