@charset "utf-8";

/*
Theme Name: Belle
Theme URI: https://belle-suzumayu168.com/
Version: 1.0.0
*/

body{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;  
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0.02rem;
  font-size: 16px;
  overflow-x: hidden;
  background-color: #fafafa;
  color: #665a4d;
}f

html{
  scroll-behavior: smooth;
}

header {
    top: 0px; 
    left: 0px;
    right: 0px;
  }
  
footer {
    background-color: #a98a51;
    color: #222; 
}

img {
	border:0;
}

address {
	font-style:normal;
}

p,li,dt,dl {
	line-height:1.6;
}

p {
	margin:0 0 1em 0;
}

.white-txt{
  color: #FFF;
}

h1{
  margin: 0;
}

h2{
  font-size: 60px;
  letter-spacing: 10px;
  margin-top: 0;
  color: #a98a51;
  width: 100%;
}

h3{
  font-size: 45px;
  font-weight: 400;
  letter-spacing: 10px;
}

li {
	list-style-type:none;
}

/*------------------------*/
.no-list01 li {
  font-size: 16px;
  padding-bottom: 5px;
  margin-left: 1.4em;
	text-indent: -1.3em;
}
.no-list01 li:last-child {
  padding-bottom: 0;
}

/* アイコン（丸の箇所） */
.no-list01 li span {
  background-color: #AAAAAA;
  border-radius: 50%;
  box-sizing: border-box;
  display: inline-block;
*display:inline;
*zoom:1;
  height: 10px;
  margin: 0 10px 3px 0;
  position: relative;
  vertical-align: middle;
  width: 10px;
}

a:link {
	color:#665a4d;
  text-decoration:none;
}
a:visited {
	color:#665a4d;
	text-decoration:none;
}

/* hoverで下線 */
/* Link Color */
/* a:link {
	color:#222;
  text-decoration:none;
  background: 
      linear-gradient(currentColor 0 0) 
      bottom /var(--d, 0) 1px 
      no-repeat;
  transition:0.5s;
}
a:visited {
	color:#222;
	text-decoration:none;
}
a:hover {
  --d: 100%;
} */
/* --------------- */

.black-link a:link {
	color:#222;
  text-decoration:none;
}
.black-link a:visited {
	color:#665a4d;
	text-decoration:none;
}
.black-link a:hover {
	color:#665a4d;
  text-decoration:none;
}

.white-link a:link {
	color:#ffffff;
  text-decoration:none;
	background: 
      linear-gradient(currentColor 0 0) 
      bottom /var(--d, 0) 1px 
      no-repeat;
  transition:0.5s;
}
.white-link a:visited {
	color:#ffffff;
	text-decoration:none;
}
.white-link a:hover {
	--d: 100%
}
.white-link a:active {
	color:#ffffff;
}

.white-menu a:link {
	color:#ffffff;
  text-decoration:none;
	background: 
      linear-gradient(currentColor 0 0) 
      bottom /var(--d, 0) 1px 
      no-repeat;
  transition:0.5s;
}
.white-menu a:visited {
	color:#ffffff;
	text-decoration:none;
}

.center-txt{
  text-align: center;
}

.back-beige{
  background-color: #f5f2ec;
  width: 100%;
}


/* メインメニュー表示 */
ul#main-nav {
  position: absolute;
	clear: both;
	margin: 0;
	padding: 0;
	height: 55px;
	overflow: hidden;
  right: 10px;
  top: 30px;
  opacity: 0.8;
  z-index: 95;
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0;
}
ul#main-nav li {
	list-style-type: none;
	float: right;
  position: relative;
  flex-grow: 1;
}
ul#main-nav li a {
	font-size: 1em;
  font-weight: 600;
	display: inline-block;
	width: 150px;
	line-height: 50px;
	color: #222;
	text-align: center;
	margin: 0;
  opacity: 1;
  transition:1s;
  margin-top: -3px;
  padding-bottom: 16px;
  text-decoration: none;
}
ul#main-nav li+li::before{
  content: "";
  display: block;
  height: 1em;
  border-left: 1px solid #222;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
ul#main-nav li a:hover {
	color: #a98a51;
}
ul#main-nav li a span{
  display: block;
  line-height: 0.05rem;
  font-size: 11px;
  margin-top: -10px;
}

/* ------------------------- */
/* PC ハンバーガーメニュー非表示 */
/* ------------------------- */

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: none;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  text-align: center;
  margin-top: 6rem;
}

.nav_item{
  padding-bottom: 1rem;
  font-weight: 600;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}

/* ハンバーガーメニュー */
/* 電話番号リンクボタン */
a.btn-spnav-tel {
  text-align: initial;
  color: #fff;
  display: inline-block;
  width: 300px;
  height: 50px;
  position: relative;
  background: #222;
  border: solid 2px #222;
  transition: .3s;
  font-family: fot-tsukumin-pr6n, sans-serif;
  font-style: normal;
  font-weight: 400;
  /* font-family: 'Shippori Mincho'; */
  letter-spacing: 0.1rem;
  top: 50px;
 }
a.btn-spnav-tel span{
    display: inline-block;
    position: absolute;
    width: 100%;
    text-align: center;
    top:50%;
    transform: translateY(-50%);
}
a.btn-spnav-tel:hover{
    color: #222;
    background: #fff;
}
/* ------------------------ */

/* ハンバーガーメニュー */
/* Instagramリンクボタン */
a.btn-spnav-instagram {
  text-align: initial;
  color: #fff;
  display: inline-block;
  width: 300px;
  height: 50px;
  position: relative;
  background: #222;
  border: solid 2px #222;
  transition: .3s;
  font-family: fot-tsukumin-pr6n, sans-serif;
  font-style: normal;
  font-weight: 400;
  /* font-family: 'Shippori Mincho'; */
  letter-spacing: 0.1rem;
  top: 70px;
  }
  a.btn-spnav-instagram span{
    display: inline-block;
    position: absolute;
    width: 100%;
    text-align: center;
    top:50%;
    transform: translateY(-50%);
  }
  a.btn-spnav-instagram:hover{
    color: #222;
    background: #fff;
  }
  /* ------------------------ */



/***追従するトップへ戻るボタン */
#page-top{
  position: fixed;
  z-index: 97;
  right: 20px;
  bottom: 60px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 100%;
  line-height: 1.5rem;
  color: #a98a51;
  padding: 0 0 0 35px;
  border-top: solid 1px;
}
#page-top::before{
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}
/***トップへ戻るボタンここまで***/

.pc-none{
  display: none;
}

.sp-blank{
  display: none;
}

.pc-blank{
  display: block;
}

/*----- 共有end -----*/

#top-wrap{
  max-width: 100%;
  min-width: 100%;
  height: 50vw;
  position: relative;
}

#toplogo-img{
  width: 180px;
  max-width: 180px; 
  margin-top: 0px;
  margin-left: 30px;
  position: absolute;
  z-index: 1;
}

#top-wrap #mv-imgtop{
  position: absolute;
  z-index: 0;
  width: 100%;
  top: 0;
}

#top-wrap #top-msg{
  position: absolute;
  z-index: 3;
  font-size: 3vw;
  color: #a98a51;
  font-family: YuMincho, 'Yu Mincho',	serif;
  font-weight: 400;
  top: 10vw;
  left: 150px;
  margin-top: 20px;
}

.mv-pc { display: block !important; }
.mv-sp { display: none !important; }

#top-wrap #mv_imgwing{
  position: absolute;
  z-index: 2;
  width: 60%;
  left: -180px;
  top: 18vw;
}

.main-txt01-wrap{
  width: 100%;
  height: 13vw;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.8;
  position: relative;
}

.main-txt01{
  margin-top: 180px;
  color: #a98a51;
  line-height: 1.8;
}

.main-txt01::before{
  position: absolute;
  content: '';
	display: block;
  top: -100px;
  left: 50%;
  width: 1px;
  height: 70px;
  background-color: #a98a51;
}

.main-txt02-back::before{
  content: "";
  display: block;
}

.main-txt02-wrap{
  width: 100%;
  text-align: center;
  letter-spacing: 2px;
  position: relative;
}

.main-txt02{
  margin-top: 180px;
  color: #a98a51;
  line-height: 1.8;
  padding-bottom: 100px;
}

.main-txt02::before{
  position: absolute;
  content: '';
	display: block;
  top: -100px;
  left: 50%;
  width: 1px;
  height: 70px;
  background-color: #a98a51;
}

#main-img-wrap{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

#main-img-container{
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 5px;
}

#main-img-column-left{
  display: flex;
  flex-direction: column;
  flex-basis: 20.9%;
  margin-right: 10px;
}

#main-img-column-right{
  display: flex;
  flex-direction: column;
  flex-basis: 29%;
  margin-left: 10px;
}

#main-img01{
  width: 100%;
  margin-bottom: 10px;
}

#main-img02{
  width: 100%;
}

#main-img03-wrap{
  flex-basis: 48%; 
}

#main-img03{
  width: 100%;
}

#main-img04{
  width: 100%;
  margin-bottom: 10px;
}

#main-img05{
  width: 100%;
}

#menu-wrap{
  width: 100%;
  padding-bottom: 150px;
  position: relative;
}

#menu-row01{
  display:flex;/* flexbox */
  justify-content:center; /* 水平方向 */
  margin-top: 150px;
  height: 635px;
  margin-left: 10px;
  margin-right: 10px
}

#menu-row01-content{
  flex-basis: 450px;
}

#menu-zenshin{
  position: relative;
  text-align: center;
  flex-basis: 635px;
}

#menu-zenshin::after{
  clear: both;
}

#menu-zenshin #menu-zenshin-img{
  width: 100%;
  position: absolute;
  z-index: 0;
  right: 0px;
  left: 0px;
}

#menu-zenshin #menu-zenshin-head{
  margin-top: 180px;
  margin-bottom: 50px;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
  top: 30%;
}

.menu-zenshin-head-under{
  position: relative;
  display: inline-block;
  padding: 0 20px;
  color: #FFFFFF;
  /* color: #665a4d; */
  text-decoration: none;
  outline: none;
}

.menu-zenshin-head-under::before{
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom:-8px;
  right: 20%;
  /*下線の形状*/    
  width: 40%;
  height: 1px;
  background-color:#FFFFFF;
  /* background: #665a4d; */
  /*アニメーションの指定*/
  transition: all .3s;
}

.menu-zenshin-head-under::after{
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom:-3px;
  right: 20%;
  /*矢印の形状*/    
  width: 15px;
  height:1px;
  background-color:#FFFFFF;
  /* background: #665a4d;; */
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

/*---
#menu-zenshin-head-under:hover::before{
  left:-20%;
}

#menu-zenshin-head-under::after{
  right:-5%;
}
--*/

#menu-zenshin-txt{
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  /* 20240930追記 */
  font-weight: 500;
}

#menu-row02{
  display:flex; /* flexbox */
  justify-content:center; /* 水平方向 */
  margin-top: 30px;
  height: 425px;
}

#menu-row02-content{
  flex-basis: 500px;
}

#menu-facial{
  position: relative;
  text-align: center;
  flex-basis: 635px;
}

#menu-facial #menu-facial-img{
  width: 90%;
  position: absolute;
  z-index: 0;
  right: 0px;
  left: 0px;
  margin: auto;
}

#menu-facial #menu-facial-head{
  margin-top: 180px;
  margin-bottom: 50px;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
  top: 30%;
}

.menu-facial-head-under{
  position: relative;
  display: inline-block;
  padding: 0 20px;
  color: #FFFFFF;
  /* color: #665a4d; */
  text-decoration: none;
  outline: none;
}

.menu-facial-head-under::before{
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom:-8px;
  right: 20%;
  /*下線の形状*/    
  width: 40%;
  height: 1px;
  background-color:#FFFFFF;
  /* background: #665a4d; */
  /*アニメーションの指定*/
  transition: all .3s;
}

.menu-facial-head-under::after{
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom:-3px;
  right: 20%;
  /*矢印の形状*/    
  width: 15px;
  height:1px;
  background-color:#FFFFFF;
  /* background: #665a4d; */
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

#menu-facial-txt{
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
  top: 60%;
  /* 20240930追記 */
  font-weight: 500; 
}

#menu-body{
  position: relative;
  text-align: center;
  flex-basis: 635px;
}

#menu-body #menu-body-img{
  width: 90%;
  position: absolute;
  z-index: 0;
  right: 0px;
  left: 0px;
  margin: auto;
}

#menu-body #menu-body-head{
  margin-top: 180px;
  margin-bottom: 50px;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
  top: 30%;
}

.menu-body-head-under{
  position: relative;
  display: inline-block;
  padding: 0 20px;
  color: #FFFFFF;
  /* color: #665a4d; */
  text-decoration: none;
  outline: none;
}

.menu-body-head-under::before{
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom:-8px;
  right: 20%;
  /*下線の形状*/    
  width: 40%;
  height: 1px;
  background-color:#FFFFFF;
  /* background: #665a4d; */
  /*アニメーションの指定*/
  transition: all .3s;
}

.menu-body-head-under::after{
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom:-3px;
  right: 20%;
  /*矢印の形状*/    
  width: 15px;
  height:1px;
  background-color:#FFFFFF; 
  /* background: #665a4d; */
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

#menu-body-txt{
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
  top: 60%;
  /* 20240930追記 */
  font-weight: 500;
}

#menu-row03{
  margin-top: 30px;
  height: 425px;
}

#menu-kantei{
  position: relative;
  text-align: center;
}

#menu-kantei #menu-kantei-img{
  width: 485px;
  position: absolute;
  z-index: 0;
  right: 0px;
  left: 0px;
  margin: auto;
}

#menu-kantei #menu-kantei-head{
  margin-top: 180px;
  margin-bottom: 50px;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
  top: 100px;
}

.menu-kantei-head-under{
  position: relative;
  display: inline-block;
  padding: 0 20px;
  color: #FFFFFF;
  /* color: #665a4d; */
  text-decoration: none;
  outline: none;
}

.menu-kantei-head-under::before{
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom:-8px;
  right: 35%;
  /*下線の形状*/    
  width: 20%;
  max-width: 200px;
  height: 1px;
  background-color:#FFFFFF;
  /* background: #665a4d; */
  /*アニメーションの指定*/
  transition: all .3s;
}

.menu-kantei-head-under::after{
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom:-3px;
  right: 35%;
  /*矢印の形状*/    
  width: 15px;
  height:1px;
  background-color:#FFFFFF;
  /* background: #665a4d; */








































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































  
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

#menu-kantei-txt{
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
  top: 200px;
  /* 20240930追記 */
  font-weight: 500;
}

.menu-product{
  /*矢印の基点とするためrelativeを指定*/
  position: relative;
  width: 30%;
  min-width: 280px;
  max-width: 400px;
  /*ボタンの形状*/
  border: 1px solid #a98a51;
  padding: 30px 50px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/
  transition: all .2s linear;
  top: 70px;
}

.menu-product:hover{
  background:#665a4d;
  color:#fff;
}

/*矢印と下線の形状*/
.menu-product::before{
  content:"";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  top:50%;
  right:-7%;
  /*下線の形状*/
  width:70px;
  height:1px;
  background:#a98a51;
  /*アニメーションの指定*/
  transition: all .2s linear;
}

.menu-product::after{
  content:"";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 43%;
  right: -6%;
  /*矢印の形状*/
  width:1px;
  height:10px;
  background:#a98a51;
  transform:skewX(45deg);
  /*アニメーションの指定*/
  transition: all .2s linear;
}

/*hoverした際の移動*/
.menu-product:hover::before{
  right:-30px;
}

.menu-product:hover::after{
  right:-25px;
}

.menu-product-txt01{
  font-size: 17px;
  letter-spacing: 10px;
}

.menu-product-txt02{
  font-size: 24px;
  letter-spacing: 5;
}

#menu-wing{
  position: absolute;
  width: 40%;
  top: 75%;
  right: -130px;
}

#info-center-txt{
  text-align: center;
  padding-top: 100px;
  position: relative;
  height: 1200px;
}

.info-head{
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto; 
}

#info-txt-wrap{
  position: absolute;
  z-index: 0;
  left: 0; 
  right: 0; 
  margin: auto; 
  width: 550px;
  height: 650px;
  background-color: #FFFFFF;
  background-size: 300px;
  left: -400px;
  top: 140px;
}

#info-list dl{
  display: flex;
  flex-flow: row wrap;
  width: 80%;
  margin: 0 auto;
  margin-top: 70px;
}

#info-list dt{
  flex-basis: 20%;
  float: left;
  text-align: right;
  padding-top: 30px;
}

 #info-list dd{
  flex-basis: 70%;
  text-align: left;
  padding-top: 30px;
}

#info-line-btn{
  font-size: 14px;
	border: 1px solid #665a4d;
	text-align: center;
	max-width: 200px;
	margin: 40px auto 30px auto;
  transition: 1s;
}

#info-line-btn:hover{
  background-color: #665a4d;
  color: #FFFFFF;
}

#info-line-btn a{
  color: #665a4d;
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
  transition: 1s;
}

#info-line-btn:hover a{
  color: #FFFFFF;
}

#info-instagram-btn{
  font-size: 14px;
	border: 1px solid #665a4d;
	text-align: center;
	max-width: 200px;
  transition: 1s;
  margin: 30px auto;
}

#info-instagram-btn:hover{
  background-color: #665a4d;
  color: #FFFFFF;
}

#info-instagram-btn a{
  color: #665a4d;
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
  transition: 1s;
}

#info-instagram-btn:hover a{
  color: #FFFFFF;
}

#info-map{
  position: absolute;
  z-index: 2;
  top: 350px;
  left: 0;
  right: 0;
  margin: auto;
  padding-left: 470px;
  pointer-events: none;
}

#info-img-wrap{
  margin: 50px auto;
  padding-top: 770px;
}

.info-img{
  width: 300px;
  padding-left: 10px;
  padding-right: 10px;
}

.insta-back-beige{
  background-color: #f5f2ec;
  width: 90%;
}

#insta-center-txt{
  text-align: center;
  margin-top: 180px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
  position: relative;
  height: 48vw;
}

#insta-head{
  position: absolute;
  left: 0;
  right: 0;
  margin: auto; 
  margin-top: -50px;
  text-shadow: -10px -10px #e5dfd4;
}

#insta-feed-wrap{
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  padding-top: 60px;
  padding-bottom: 10px;
}

#insta-feed-wrap h3{
  word-break: break-word;
}

#insta-pc-only{
  display: none;
}

#insta-sp-only{
  display: block;
}

#reserve-center-txt{
  text-align: center;
  height: 600px;
}

.reserve-head::after{
  position: absolute;
  content: '';
	display: block;
  left: 50%;
  width: 1px;
  height: 70px;
  background-color: #a98a51;
}

#reserve-txt{
  margin-top: 150px;
}

#reserve-btn-wrap{
  display: flex;
  justify-content:center;
}

.reserve-btn{
  flex-basis: 300px;
  font-size: 16px;
	border: 1px solid #665a4d;
	text-align: center;
	max-width: 300px;
	margin: 10px;
  transition: 1s;
}

.reserve-btn:hover{
  background-color: #665a4d;
  color: #FFFFFF;
}

.reserve-btn a{
  color: #665a4d;
	display: block;
	width: 100%;
	height: 100%;
	padding: 20px;
	box-sizing: border-box;
  transition: 1s;
}

.reserve-btn:hover a{
  color: #FFFFFF;
}

#footer-row01{
  display: flex;
  justify-content:center;
  align-items:center;
  padding-top: 50px;
}

#footer-logo{
  flex-basis: 250px;
  width: 200px;
}

#footer-address{
  flex-basis: 400px;
  padding-top: 30px;
  padding-left: 30px;
}

#footer-row02{
  width: 600px;
  margin: 0 auto;
}

#footer-row02 ul{
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

#footer-row02 ul li{
  flex-grow: 1;
  text-align: center;
}

#footer-row02 ul li + li{
  border-left: 1px solid #222;
}

#footer-privacy{
  text-align: center;
  font-size: 13px;
  margin-bottom: 20px;
  margin-top: 40px;
}

#footer-txt01{
  font-size: 14px;
  margin-top: 10px;
}

#footer-txt02{
  font-size: 13px;
  padding-bottom: 10px;
  margin-bottom: 0px;
}

/* --- 固定ページ --- */
body:not(.home) h1 { 
  text-align: center;
  font-size: 35px;
  padding-top: 130px;
  padding-bottom: 100px;
}

body:not(.home) h2 {
  font-size: 20px;
  letter-spacing: 5px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.page-wrap{
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 100px;
}

#page-topwing-wrap{
  position: relative;
}



ul#pagemenu-nav {
  position: absolute;
	clear: both;
	margin: 0;
	padding: 0;
	height: 55px;
	overflow: hidden;
  z-index: 95;
  list-style: none;
  display: flex;
  justify-content: center;
  padding-left: 0px;
}
ul#pagemenu-nav li {
	list-style-type: none;
	float: right;
  position: relative;
  flex-grow: 1;
}
ul#pagemenu-nav li a {
	font-size: 1em;
  font-weight: 600;
	display: inline-block;
	width: 150px;
	line-height: 50px;
	color: #222;
	text-align: center;
	margin: 0;
  opacity: 1;
  transition:1s;
  margin-top: -3px;
  padding-bottom: 16px;
  text-decoration: none;
}
ul#pagemenu-nav-nav li+li::before{
  content: "";
  display: block;
  height: 1em;
  border-left: 1px solid #222;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
ul#pagemenu-nav-nav li a:hover {
	color: #a98a51;
}
ul#pagemenu-nav-nav li a span{
  display: block;
  line-height: 0.05rem;
  font-size: 11px;
  margin-top: -10px;
}



#page-topwing-img{
  position: absolute;
  max-width: 400px;
  width: 400px;
  margin-left: 10%;
  opacity: 0.5;
}

#pagemenu-soushin-img{
  width: 800px;
  height: 300px;
  object-fit: cover;
  object-position: 65% 100%;
}

#pagemenu-zenshin-img{
  width: 800px;
  height: 300px;
  object-fit: cover;
  object-position: 65% 50%;
}

#pagemenu-fecial-img{
  width: 800px;
  height: 300px;
  object-fit: cover;
  object-position: 65% 60%;
}

#pagemenu-skincare-img{
  width: 800px;
  height: 300px;
  object-fit: cover;
  object-position: 65% 35%;
}

#pagemenu-wrap{
  text-align: center;
}

#pagemenu-wrap h2{
  font-size: 45px;
  font-weight: 400;
  letter-spacing: 10px;
}

.pagemenu-h2wrap{
  position: relative;
  top: 60px;
  padding-bottom: 200px;
}

#pagemenu-wrap h2::after{
  position: absolute;
  content: '';
  display: block;
  top: 100px;
  left: 50%;
  width: 1px;
  height: 70px;
  background-color: #a98a51;
}

.pagemenu-content{
  width: 80%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  margin-bottom: 20px;
  padding-bottom: 50px;
  min-width: 670px;
}

#pagemenu-wrap h3{
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

#pagemenu-wrap dt{
  font-weight: 600;
}

.font-15px{
  font-size: 15px;
}

#pagemenu-zenshin-wrap{
  margin-top: 30px;
  padding-bottom: 80px;
  margin-bottom: 80px;
  position: relative;
}

.back-white{
  background-color: #FFF;
}

#pagemenu-wrap dd{
  margin-left: 0px;
  padding-bottom: 10px;
}

hr{
  border: none;
  border-bottom: 0.1px solid #333;
  margin: 0;
  width: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.pagemenu-product-wrap .product-menu{
  font-size: 18px;
  font-weight: 600;
  padding: 50px 0px 10px 0px;
  margin-bottom: 0px;
}

#pagemenu-product-img01{
  width: 60%;
}

#pagemenu-product-img02{
  width: 60%;
}

#pagemenu-product-img03{
  width: 60%;
}

#page404-wrap{
  text-align: center;
  padding-top: 150px;
  margin-bottom: 150px;
}

/* ---------- */

/* フェードイン */
	/* fadeUp */

.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity:0;
}
    
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }
    
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 
/* スクロールをしたら出現する　*/
.fadeUpTrigger{
  opacity: 0;
}

/* -------------------- */


@media screen and (min-width: 1500px) {
.menu-kantei-head-under::before{
  right: 39%;
}
.menu-kantei-head-under::after{
  right: 39%;
}
}

@media screen and (max-width: 1312px) {

#info-center-txt{
  height: 1300px;
}

}

@media screen and (max-width: 1160px) {

#menu-row02{
  height: 390px;
}

}

@media screen and (max-width: 1060px) {

#menu-row01{
  height: 600px;
}

#menu-row02{
  height: 350px;
}
  
}

@media screen and (max-width: 1030px) {

#main-img-container{
  display: block;
  margin-top: 50px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;  
}

#main-img-column-left{
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: auto;
}

#main-img01-wrap{
  flex-basis: 50%;
  margin-right: 10px;
}

#main-img01{
  width: 100%;
  height: 300px;
  object-fit:cover;
  object-position: 50% 50%;
}

#main-img02-wrap{
  flex-basis: 50%
}

#main-img02{
  width: 100%;
  height: 300px;
  object-fit:cover;
  object-position: 50% 50%;
}

#main-img03{
  width: 100%;
  height: 700px;
  object-fit:cover;
  object-position: 50% 50%;
}

#main-img-column-right{
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: auto;
}

#main-img04-wrap{
  flex-basis: 50%;
  margin-right: 10px;
}

#main-img04{
  width: 100%;
  height: 300px;
  object-fit:cover;
  object-position: 50% 50%;
  margin-top: 10px;
}

#main-img05-wrap{
  flex-basis: 50%
}

#main-img05{
  width: 100%;
  height: 300px;
  object-fit:cover;
  object-position: 50% 50%;
  margin-top: 10px;
}

#menu-row01{
  height: 580px;
}

#menu-row02{
  height: 340px;
}

#menu-row03{
  height: 370px;
}

#menu-facial h3{
  font-size: 35px;
}

#menu-body h3{
  font-size: 35px;
}

#menu-kantei #menu-kantei-head{
  top: 80px;
}

#menu-kantei h3{
  font-size: 35px;
}

#menu-kantei-txt{
  top: 170px;
}

/* 固定ページ 
#page-topwing-img{
  width: 230px;
  margin-right: 0;
  margin-top: 60px;
  right: 5%;
}
---------- */

}


@media screen and (max-width: 987px){

}

@media screen and (max-width: 980px) {

#top-wrap #mv_imgwing{
  left: -100px;
}

#menu-facial #menu-facial-head{
  top: 20%;
}

#menu-body #menu-body-head{
  top: 20%;
}

#menu-facial-txt{
  top: 50%;
}

#menu-body-txt{
  top: 50%;
}

#menu-kantei #menu-kantei-img{
  max-width: 485px;
  width: 40%;
}

#menu-kantei #menu-kantei-head{
  top: 45px;
}

#menu-kantei-txt{
  top: 120px;
}

#menu-row03{
  height: 350px;
}

#menu-wing{
  right: 0px;
  top:auto;
  bottom: 0px;
}

}

@media screen and (max-width: 965px) {

#info-center-txt{
  height: 1700px;
}

#info-txt-wrap{
  left: 0px;
  top: 140px;
  width: 80%;
  height: 650px;
}

#info-line-btn{
  margin-top: 40px;
}

#info-map{
  top: 730px;
  padding-left: 0;
}

#info-img-wrap{
  padding-top: 1130px;
  padding-bottom: 100px;
}

#menu-row01{
  height: 540px;
}

#menu-row02{
  height: 320px;
}

#menu-row03{
  height: 320px;
}

}

@media screen and (max-width: 910px) {

#menu-row01{
  height: 510px;
}

#menu-row02{
  height: 300px;
}

#menu-row03{
  height: 320px;
}

}


@media screen and (max-width: 800px) {

#top-wrap #top-msg{
  top: 13vw;
  margin-left: -30px
}

#top-wrap #mv_imgwing{
  top: 22vw;
}

#insta-center-txt{
  height: 180vw;
}

#menu-wing{
  bottom: 5%;
}

}



@media screen and (max-width: 767px) {

body{
  width: 100%;
}

h2{
  font-size: 35px;
}

h3{
  font-size: 30px;
}

.sp-none{
  display: none;
}




/* ------------------------- */
/* SP ハンバーガーメニュー表示 */
/* ------------------------- */

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 99;/* 重なり順を一番上にする */
  cursor: pointer;
  right: 0px;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #665a4d;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 98;
  background: #fff;
  transition: .5s;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  text-align: center;
  margin-top: 6rem;
}

.nav_item{
  padding-bottom: 1rem;
  font-weight: 600;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}

/* ハンバーガーメニュー */
/* 公式LINEリンクボタン */
a.btn-spnav-tel {
  text-align: initial;
  color: #fff;
  display: inline-block;
  width: 300px;
  height: 50px;
  position: relative;
  background: #665a4d;
  border: solid 2px #665a4d;
  transition: .3s;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1rem;
  top: 70px;
  margin-bottom: 20px;
 }
a.btn-spnav-tel span{
    display: inline-block;
    position: absolute;
    width: 100%;
    text-align: center;
    top:50%;
    transform: translateY(-50%);
}
a.btn-spnav-tel:hover{
    color: #665a4d;
    background: #fff;
}
/* ------------------------ */

/* ハンバーガーメニュー */
/* Instagramリンクボタン */
a.btn-spnav-instagram {
  text-align: initial;
  color: #fff;
  display: inline-block;
  width: 300px;
  height: 50px;
  position: relative;
  background: #665a4d;
  border: solid 2px #665a4d;
  transition: .3s;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-bottom: 20px  
}
a.btn-spnav-instagram span{
  display: inline-block;
  position: absolute;
  width: 100%;
  text-align: center;
  top:50%;
  transform: translateY(-50%);
}
a.btn-spnav-instagram:hover{
  color: #665a4d;
  background: #fff;
}
/* ------------------------ */

/* ハンバーガーメニュー */
/* 電話番号リンクボタン */
a.btn-spnav-tel {
  text-align: initial;
  color: #fff;
  display: inline-block;
  width: 300px;
  height: 50px;
  position: relative;
  background: #665a4d;
  border: solid 2px #665a4d;
  transition: .3s;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1rem;
  margin-bottom: 20px
 }
a.btn-spnav-tel span{
    display: inline-block;
    position: absolute;
    width: 100%;
    text-align: center;
    top:50%;
    transform: translateY(-50%);
}
a.btn-spnav-tel:hover{
    color: #665a4d;
    background: #fff;
}
/* ------------------------ */

/* ナビゲーションメニュー非表示 */
#main-nav {
  display: none!important;
}
/* ---------- */

/* TOPスクロールボタン */
#page-top{
  right: 5px;
  bottom: 80px;
}
/* ---------- */

#top-wrap #mv-imgtop{
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 60% 50%;
}

#top-wrap #toplogo-img{
  width: 30%;
  margin-left: 10px;
}

.mv-pc { display: none !important; }
.mv-sp { display: block !important; }

#top-wrap #mv_imgwing{
  top: 450px;
  width: 80%;
  left: -60px;
}

#top-wrap #top-msg{
  top: 20vw;
  margin-left: -120px;
  font-size: 4vw;
}

.main-txt01-wrap{
  height: 40vw;
}

.main-txt01{
  margin-top: 500px;
}

.main-img-wrap{
  height: 1250px;
}

#main-img-container{
  margin-top: 150px;
  padding-left: 0px;
  padding-right: 0px;
  width: 95%;
  margin: 0 auto;
}

#main-img03{
  object-position: 60% 50%;
  height: 500px;
}

#main-img04{
  object-position: 30% 50%;
}

#main-img05{
  object-position: 65% 50%;
}

.main-txt02{
  padding: 10px 10px 50px 10px;
}

#menu-wrap{
  text-align: center;
}

#menu-row01{
  flex-direction: column;
  height: 160vw;
  margin-top: 50px;
}

#menu-row01-content{
  padding-bottom: 20px;
}

#menu-zenshin{
  flex-basis: 100vw;
}

#menu-zenshin #menu-zenshin-img{
  margin: auto;
  width: 95%;
}

#menu-zenshin #menu-zenshin-head{
  top: 180px;
}

#menu-zenshin-txt{
  top: 300px;
}

#menu-row02{
  flex-direction: column;
  height: 150vw;
  margin-top: 0px;
}

#menu-facial h3{
  font-size: 30px;
}

#menu-facial-txt{
  top: 45%;
}

#menu-body h3{
  font-size: 30px;
}

#menu-body-txt{
  top: 45%;
}

#menu-row03{
  margin-top: 0;
  height: 58vw;
}

#menu-kantei h3{
  font-size: 30px;
}

#menu-kantei #menu-kantei-img{
  width: 80%;
}

.menu-product{
  width: 70%;
  padding: 20px 0px;
}

.menu-product::after{
	top: 40%;
	right: -6%;
}
	
.menu-product-txt01{
  width: 60%;
  font-size: 16px;
  letter-spacing: 7px;
}

.menu-product-txt02{
  font-size: 20px;
  letter-spacing: 5;
}

/*
#menu-wing{
  top: 3300px;
}
*/

#info-head{
  padding-top: 10px;
  font-size: 35px;
}

#info-txt-wrap{
  height: 780px;
  top: 130px;
}

#info-center-txt{
  height: 2600px;
}

#info-list{
  font-size: 15px;
  margin-top: -30px;
}

#info-list dl{
  width: 90%;
  flex-flow: column;
}

#info-list dt{
  text-align: center;
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}

#info-list dt::before{
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;/*線の上下位置*/
  display: inline-block;
  width: 35px;/*線の長さ*/
  height: 0.5px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: #665a4d;/*線の色*/
}

#info-list dd{
  text-align: center;
  margin: 0;
  padding-top: 10px;
}

#info-instagram-btn{
  margin-top: 30px;
}

#info-img-wrap{
  padding-top: 1070px;
}

#info-map-wrap{
  width: 70%;
  height: 300px;
  margin-top: 50px;
}

#info-map{
  top: 830px;
}

.info-img{
  width: 60%;
}

.info-img-left{
  padding-left: 0px;
  padding-right: auto;
  margin-left: -30px;
}

.info-img-right{
  padding-left: auto;
  padding-right: 0px;
  margin-right: -30px;
}

.info-img-left02{
  padding-left: 0px;
  padding-right: auto;
  margin-left: -30px;
  padding-bottom: 0px;
}

.info-img-right02{
  padding-left: auto;
  padding-right: 0px;
  margin-right: -30px;
  padding-bottom: 100px;
}

#insta-center-txt{
  margin-top: 120px;
  margin-bottom: 120px;
  height: 180vw;
}

#insta-head{
  margin-top: -35px;
  font-size: 35px;
  text-shadow: -6px -5px #e5dfd4;
}

#insta-pc-only{
  display: block;
}

#insta-sp-only{
  display: none;
}

#reserve-center-txt{
  height: 500px;
}

.reserve-head::after{
  height: 50px;
}

#reserve-txt{
  margin-top: 100px;
}

#footer-row01{
  flex-direction: column; 
  padding-top: 30px;
}

#footer-logo{
  flex-basis: auto;
  width: 200px;
}

#footer-address{
  flex-basis: auto;
  width: 90%;
  text-align: center;
  padding-left: 0px;
}

#footer-row02{
  width: auto;
}

#footer-row02 ul{ 
  flex-wrap: wrap;
}

#footer-row02 ul li{
  width: 50%;
}

/* 固定ページ */
#page-topwing-img{
  width: 300px;
  margin-right: 0px;
  margin-top: 20px;
  margin-left: -30px;
}

#toplogo-img{
  width: 30%;
  margin-left: 10px;
}

body:not(.home) h1 {
  padding-bottom: 70px;
}

.no-list01 li {
  margin-left: 0px;
}

#pagemenu-wrap h2{
  font-size: 30px;
}

#pagemenu-wrap h2::after{
  top: 80px;
}

#pagemenu-wrap h3{
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

#pagemenu-soushin-img{
  width: 100%;
  height: 200px;
}

#pagemenu-zenshin-img{
  width: 100%;
  height: 200px;
}

#pagemenu-fecial-img{
  width: 100%;
  height: 200px;
}

#pagemenu-skincare-img{
  width: 100%;
  height: 200px;
}

.pagemenu-content{
  width: 100%;
  min-width: 0px;
}

.sp-blank{
  display: block;
}

.pc-blank{
  display: none;
}

/* ---------- */

}

@media screen and (max-width: 710px) {
/*
  #menu-wing{
  top: 2200px;
}
*/

#menu-row03{
  height: 63vw;
}

#info-center-txt{
  height: 2450px;
}

}

@media screen and (max-width: 675px) {
#info-center-txt{
  height: 2400px;
}

#menu-row01{
  height: 1100px;
}

#menu-row02{
  height: 1000px;
}
}

@media screen and (max-width: 620px) {
  #info-center-txt{
    height: 2300px;
}

#menu-row01{
  height: 1050px;
}

#menu-row02{
  height: 900px;
}
}

@media screen and (max-width: 555px) {
    #info-center-txt{
      height: 2200px;
}

#menu-row01{
  height: 930px;
}

#menu-zenshin #menu-zenshin-head{
  top: 90px;
}

#menu-zenshin-txt{
  top: 170px;
}

#menu-row02{
  height: 800px;
}

#menu-row03{
  height: 380px;
}
}

@media screen and (max-width: 515px) {
  #info-center-txt{
    height: 2100px;
}

#menu-row01{
  height: 220vw;
}

#menu-row02{
  height: 150vw;
}

#menu-row03{
  height: 350px;
}

/*
#menu-wing{
  top: 1880px;
}
*/
}

@media screen and (max-width: 460px) {
    #info-center-txt{
      height: 1900px;
}
}

