/******************************/
/* NEWS */
/******************************/
.p-line-informaiton {
  display: flex;
  flex-wrap: wrap;
  margin-top: 75px;
  width: 760px;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton {
    display: block;
    width: auto;
  }
}
.p-line-informaiton ul {
  flex: 1;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton ul {
    font-size: 14px;
  }
}
.p-line-informaiton li {
  margin-bottom: 15px;
}
.p-line-informaiton__ttl {
  position: relative;
  margin: 0 40px 0 0;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton__ttl {
    margin: 0;
  }
}
.p-line-informaiton__ttl:before {
  content: "";
  position: absolute;
  top: 7px;
  right: -20px;
  width: 1px;
  height: 10px;
  background: #d2d2d2;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton__ttl:before {
    content: none;
  }
}
/***** お知らせ *****/
.p-top-news {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    display: block;
    margin-bottom: 45px;
  }
}
.p-top-news__ttl {
  box-sizing: border-box;
  margin-right: 25px;
  padding: 10px;
  width: 110px;
  border: 1px solid #b2b2b2;
  font-size: 18px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-news__ttl {
    margin-right: 0;
    margin-bottom: 10px;
    padding: 5px;
    width: 70px;
    border: 1px solid #b2b2b2;
    font-size: 12px;
  }
}
.p-top-news__body {
  flex: 1;
  margin-bottom: 0;
}
/******************************/
/* scroll down animation */
/******************************/
.sc_down {
 display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 40px;
  margin-bottom:40px;
}
@media only screen and (max-width: 1030px) {
  height: 20px;
  margin-bottom:20px;
}
@media screen and (max-width: 500px) {
  .sc_down {
    display:none;
  }
}
.sc_container {
  position: relative;
  width: 20px;
  height: 20px; 
}
.chevron {
  position: absolute;
  width: 24px;
  height: 2px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}
.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}
.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}
.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #999;
}
.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}
.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(40px);
  }
  67% {
    opacity: 1;
    transform: translateY(50px);
  }
  100% {
    opacity: 0;
    transform: translateY(60px) scale3d(0.5, 0.5, 0.5);
  }
}
.sc_text {
  display: block;
  margin-top: 75px;
  margin-left: -30px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
}
@keyframes pulse {
  to {
    opacity:0;
  }
}

/******************************/
/* scroll fadein animation */
/******************************/
.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
  &.fadein-left{
      transform: translate(-30px,0);
  }
  &.fadein-right{
      transform: translate(30px,0);
  }
  &.fadein-up{
      transform: translate(0,-30px);
  }
  &.fadein-bottom{
      transform: translate(0,30px);
  }
  &.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}

/******************************/
/* TOP CONCEPT */
/******************************/
.concept-bg{
  display: flex;
  background-color:#eeeaec;/*シルバーピンク silver pink*/
  background-image:url("https://img21.shop-pro.jp/PA01514/035/etc_base64/Y29uY2VwdC1iZzI.jpg?cmsp_timestamp=20250320165842");
}
.p-concept-list {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-concept-list {
    margin-top: 30px;
  }
}
.p-concept-list__item {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 1030px) {
  .p-concept-list__item {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-list__item {
    display: block;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.p-concept-list__item:last-child {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-concept-list__item:last-child {
    margin-bottom: 0px;
  }
}
.p-concept-list__item:nth-child(even) .p-concept-list__txt {
  margin-left: 80px;
  margin-right: 110px;
  order: -1;
}
@media screen and (max-width: 1030px) {
  .p-concept-list__item:nth-child(even) .p-concept-list__txt {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-list__item:nth-child(even) .p-concept-list__txt {
    margin-left: 0;
    margin-right: 0;
  }
}
.p-concept-list__img {
  position: relative;
  box-sizing: border-box;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-concept-list__img {
    width: auto;
    text-align: center;
  }
}
.p-concept-list__img:before {
  content: "";
  position: absolute;
  top: 150px;
  bottom: 15px;
  right: 90px;
  left: 90px;
  z-index: -1;
  background: transparent;
  transform: scaleY(2.3) perspective(0.6em) rotateX(2deg);
  transform-origin: bottom;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .p-concept-list__img:before {
    bottom: 20px;
    right: 20%;
    left: 20%;
  }
}
.p-concept-list__img img{
  border-radius:20px;
}
.p-concept-list__txt {
  flex: 1;
  margin-left: 110px;
  margin-right: 80px;
}
@media screen and (max-width: 1030px) {
  .p-concept-list__txt {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-list__txt {
    padding: 20px;
    margin-left: 0;
    margin-right: 0;
  }
}
.p-concept-list__ttl {
  font-size: 26px;
  color: #000;
  font-weight: normal;
}
.p-concept-list__body {
  padding-top: 18px;
}

/******************************/
/* TOP RECOMMEND */
/******************************/
.p-recommend.u-container {
  margin-top: 50px;
  padding-bottom: 0;
}
/******************************/
/* NEW　ARRIVAL */
/******************************/
/******************************/
/* TOP RANKING */
/******************************/

/******************************/
/* TOP INFORMATION */
/******************************/
.p-information {
  padding-top: 80px;
}
@media screen and (max-width: 1030px) {
  .p-information {
    padding-bottom: 45px;
  }
}
.p-information__body {
  margin-left: 60px;
  margin-right: 60px;
  line-height: 2;
}
@media screen and (max-width: 1030px) {
  .p-information__body {
    margin-left: 0;
    margin-right: 0;
  }
}

/******************************/
/* TOP Salon MENU/サロンメニュー  */
/******************************/
.menulist-wrap2{
	display:block;
	width:auto;
}
.row-menu-nav2 {
  font-family: "Cormorant", serif;
  letter-spacing: 0.05em;
  display: flex;
  background-position: top 40px  left 300px;
  background-image: url("https://img21.shop-pro.jp/PA01514/035/etc_base64/aGFzYW1pMg.png?cmsp_timestamp=20250407153400");
  background-repeat: no-repeat;
}
.row-menu-nav2 .col-menu-nav2 {
  width: auto;
  min-width:140px;
  padding-right: 0;
  letter-spacing: 0.05em;
}
.row-menu-nav2 .ttl2 {
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-size: 2rem;
}
.row-menu-nav2 a {
  position: relative;
  display: inline-block;
  text-decoration: none !important;
  white-space: nowrap;
}
a {
  background-color: transparent;
  }
.row-menu-nav2 .list-menu-nav2 {
  padding: 0;
  margin: 0;
  padding-left: 5px;
  border-left: 1px solid #ccc;  
 }
 @media screen and (min-width: 500px) {
 	.row-menu-nav2 .list-menu-nav2 {
    padding-left: 30px; 		
 	}
 }
 .row-menu-nav2 .list-menu-nav2 li {
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
  font-size: 15px;
  position: relative;
  box-sizing: border-box;
}
.list-menu-nav2 li .item-menu2 {
  position: relative;
  box-sizing: border-box;
}
.list-menu-nav2 li .m-ttl2 {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-right: 0.5em;
  font-size: 1.5rem;
}
.list-menu-nav2 li .price2 {
  display: inline-block;
  position:  relative;
  line-height: 1.5;
  z-index: 1;
  padding-left: 0.5em;
  font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}

/******************************/
/* TOP STAFF/スタッフ紹介  */
/******************************/
.counter-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1030px;
  margin: auto;
  padding: 20px;
}
li.counter-item {
    list-style: none;
    flex: 0 1 42%;    
}
/*------600px以下------*/
@media screen and (max-width: 600px){ 
  .counter-list {
    flex-direction: column;
  }
  .counter-item:not(:last-child) {
    margin-bottom: 40px;
  }
  .counter-item:nth-child(1)::after,
  .counter-item:nth-child(2)::after {
    width: 100%;
    height: 1px;
    top:  calc(100% + 20px);
    left:  0;
  }
}
.heading {
  margin-bottom: 24px;
}
.en {
  display: block;
  font-family: "Cormorant", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  line-height: 1.0;
  padding-bottom: 4px;
}
.heading .ja {
  display:block;
  font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
  font-size: 18px;
  letter-spacing: 0.1em;
}
.copy {
  line-height: 1.4;
}
p img {
  max-width: 100%;
}

/******************************/
/* TOP OUR　Products/お取扱い商品  */
/******************************/
.anime-button-area{
	display:block;
	text-align:  center;   
}
.button-border{
  border: 1px solid #ddbbbb;
  padding: 20px 40px;
  position: relative;
  display: inline-block;
  color: #8C6260;
  text-decoration: none;
}

/* Effect1
 *************************************** */
/* 擬似要素の共通スタイル */
.button-border::after,
.button-border::before,
.button-border span::after,
.button-border span::before {
  background-color: #8C6260;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
/* line左上へ配置 */
.button-border::after {
    width: 0px;
    height: 2px;
    top: -1px;
    left: -1px;
}
/* line右下へ配置 */
.button-border::before {
    width: 0px;
    height: 2px;
    right: -1px;
    bottom: -1px;
}
/* line左下へ配置 */
.button-border span::after {
    width: 2px;
    height: 0px;
    left: -1px;
    bottom: -1px;
}
/* line右上へ配置 */
.button-border span::before {
    width: 2px;
    height: 0px;
    top: -1px;
    right: -1px;
}

/* hover */
.button-border:hover::after,
.button-border:hover::before {
  width: 100%;
  width: calc(100% + 1px);
}

.button-border:hover span::after,
.button-border:hover span::before {
  height: 100%;
  height: calc(100% + 1px);
}

/******************************/
/* TOP FREE */
/******************************/
/******************************/
/* TOP BANNER */
/******************************/

/******************************/
/* SHOP infotmation/googleMap*/
/******************************/
/* Google Map横幅を指定するための要素 */
  .g-map-wrap {
	display: block;
	max-width: 1030px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 30px;
	}
@media screen and (min-width: 1030px) {
	.boxB1 {
      display: block;
	  float: left;
	  width: 36%;
	}
	.boxB1 img {
	width: 60%;
    padding-bottom:20px;
	}
	.boxB2 {
	display: block;
	float: right;
	width: 62%;
	}
 }
@media screen and (max-width: 767px) {
	.boxB1 img {
	 width: 50%;
     padding-bottom:20px;
	}
  }
@media screen and (max-width: 500px) {
	.boxB1 img {
	 width: 50%;
     padding-bottom:20px;
	}
  }
.boxB1 .size-mail, .boxB1 .size-open, .boxB1 .size-tel{
	font-size: 16px;
}

/* Google Mapを囲う要素 */
  .g-map {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%; /* 比率を4:3に固定 */
	}

/* Google Mapのiframe */
  .g-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-bottom: 80px;
	}

