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

/*** reset ***************************************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
	word-break:break-all;
    border:0;
    outline:0;
    vertical-align:baseline;
    background:transparent;
	font-style:normal;
}
button, input, select, textarea {
	background-color:transparent;
	border-style:none;
}

* {
	-webkit-box-sizing: border-box;
	-mos-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {  display:block; }
ul,
ul li{ list-style:none; }
img{ vertical-align:bottom; border-radius:8px; }

a:link, a:visited { text-decoration:none; }
a:active, a:hover { text-decoration:none; }

body { width:100%; min-width:1200px; line-height:1; background:#F8EEE6; font-size:15px; color:#3b3632; font-family:"Noto Sans JP", sans-serif; font-style:normal; letter-spacing:0.1rem; }
a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; color:#3b3632; outline:none; }
section { margin:2rem auto; padding:2rem 0; }
@media screen and (min-width: 768px) {
.sp-only { display: none !important; }
}
@media screen and (max-width: 769px) {
.pc-only { display: none !important; }
}
/*** splash ***************************************************/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#f0dc55;
  text-align:center;
  color:#fff;
}
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo img {
  width:260px;
}

/*** hamburger_menu ***************************************************/

@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#overlay-button {
  position:fixed;
  right: 2rem;
  top: 2rem;
  padding: 26px 11px;
  z-index: 6;
  cursor: pointer;
  user-select: none;
}
#overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #000;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: #000;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #000;
}
input[type=checkbox] {
  display: none;  
}
input[type=checkbox]:checked ~ #overlay {
  visibility: visible; 
}
input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);
}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}
#overlay {
  height: 100vh;
  width: 60vw;
  background: #F8F6F1;
  z-index: 5;
  visibility: hidden;
  position: fixed;
  left:40%;
}
#overlay.active {
}
#overlay ul {
  display: flex;
  flex-direction: column;
  padding:30% 12% 0;
  list-style-type: none;
}
#overlay ul li {
  padding: 1em;
}
#overlay ul li a {
  font-family:"Noto Sans JP", sans-serif;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight:700;
}
#overlay ul li a:hover {
  color: #b77373!important;
}

/*** animation ***************************************************/

.anim-slidein {
	 opacity: 0;
  }

.slideIn {
	animation-name:slideInAnime;
	animation-duration:3s;
	animation-iteration-count:1;
	animation-fill-mode:forwards;
	opacity: 0;
}
 
@keyframes slideInAnime {
  0% {
	opacity: 0;
    transform: translateY(300px);
  }
  100% {
    opacity: 1;	  
    transform: translateY(0);
　}
}

.anim-slideRt {
	 opacity: 0;
  }

.slideRt {
	animation-name:slideRtAnime;
	animation-duration:3s;
	animation-iteration-count:1;
	animation-fill-mode:forwards;
	opacity: 0;
}
 
@keyframes slideRtAnime {
  0% {
	opacity: 0;
    transform: translateX(300px);
  }
  100% {
    opacity: 1;	  
    transform: translateX(0);
　}
}

.anim-slideLf {
	 opacity: 0;
  }

.slideLf {
	animation-name:slideLfAnime;
	animation-duration:3s;
	animation-iteration-count:1;
	animation-fill-mode:forwards;
	opacity: 0;
}
 
@keyframes slideLfAnime {
  0% {
	opacity: 0;
    transform: translateX(-300px);
  }
  100% {
    opacity: 1;	  
    transform: translateX(0);
　}
}

.delay-time02 {
	animation-delay: 0.2s;
}
.delay-time04 {
	animation-delay: 0.4s;
}
.delay-time06 {
	animation-delay: 0.6s;
}
.delay-time08 {
	animation-delay: 0.8s;
}
.delay-time10 {
	animation-delay: 1.0s;
}

.smooth {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  transition: 5s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  margin-top: 15px;
}
.smooth.is-animated {
  clip-path: inset(0);
}

.hoverAnime a img { transition:transform .4s ease-in-out; }

/**** basic ***************************************************/
#page-top { position:fixed; bottom:3rem; right:2vw; z-index:9999; }
#page-top .pagetop-img { width:120px; height:120px; }

.ft-xs { font-size:0.7rem; }
.ft-ss { font-size:0.8rem; }
.ft-s { font-size:0.95rem; line-height:1.8; }
.ft-m { font-size:1.2rem; line-height:1.8; }
.ft-l { font-size:1.4rem; line-height:2.2; font-weight:700; }

.cont-flex, .all-flex { display:-webkit-flex; display:-ms-flexbox; display:flex; }
.cont-even { -webkit-justify-content:space-evenly; -ms-flex-pack:justify; justify-content:space-evenly; } 
.cont-between { -webkit-justify-content:space-between; -ms-flex-pack:justify; justify-content:space-between; } 
.spot-row { flex-direction:row-reverse !important; }
.wrap { padding-top:50px; }
.base-wrap { max-width:1200px !important; margin:0 auto; }
.narrow-wrap { width:980px; margin:0 auto 5rem; }
.narrow-wrap .pic-frame { width:405px; height:100%; }
.narrow-wrap .detail-inner { width:450px; }

.mb02 { margin-bottom:0.2rem; }
.mb1 { margin-bottom:1rem; }
.mb2 { margin-bottom:2rem; }
.mb3 { margin-bottom:3rem; }
.mb5 { margin-bottom:5rem; }
.mb8 { margin-bottom:8rem !important; }
.mb10 { margin-bottom:10rem; }

.sup { font-size:0.8rem; }
.wth-border { width:100%; border-bottom:solid 1px #2c2c2c; margin-bottom:2rem; padding-bottom:2rem; }

/**** bg ***************************************************/
.bg-set-w { width:100%; padding:2rem; background:#FFF; }
.bg-set-b { width:100%; padding:2rem; background:#E3EDEC; }
.cont-bg01 { background:url(../img/other/sns-bg.jpg) no-repeat; background-size:contain; background-position:center; padding:2rem 0; }

/**** tit ***************************************************/
.sec-heading { font-size:2rem; font-weight:400; text-align:center; line-height:1; margin-bottom:4rem; }
.heading-sub { display:block; font-size:1rem; font-weight:500; line-height:1.8; margin-top:1rem; letter-spacing:0.7rem; }
.sec-heading .tit { width:350px; height:auto; }
.cont-tit { font-size:1.4rem; line-height:2.6; font-weight:700; }
.cont-cet { text-align:center; }

/**** page-top ***************************************************/
.page-top { position:fixed; bottom:1rem; right:0.5rem; }
.page-top img { width:90px; }

/**** arrow ***************************************************/
.arrow { display:flex; float:right; padding:0.5rem; }
.arrow span { font-size:0.6rem; }
.arrow::after { content:''; width:40px; height:7px; border-bottom:solid 1px; border-right:solid 1px; transform:skew(45deg); }

/**** btn ***************************************************/
.btn-page a { display:block; max-width:260px; background:#8ec9ba; margin:2.8rem auto 1rem; padding:1.3rem 1rem; color:#FFF; font-weight:500; font-size:0.85rem; text-align:center; border-radius:3px; }

.link-sns { width:260px; }
.link-sns a { display:block; max-width:260px; background:#f4a8b2; margin:0 auto 2.8rem; padding:1.3rem 1rem; color:#FFF; font-weight:500; font-size:0.85rem; text-align:center; border-radius:3px; }

.btn-arrow a { background:#eee; position:relative; display:flex; justify-content:space-around; align-items:center; margin:2rem auto 0; max-width:220px; padding:12px 25px; color:#313131; transition:0.3s ease-in-out; font-weight:500; font-size:0.85rem; }
.btn-arrow a:before { content: ''; position:absolute; top:calc(50% - 2px); right:-1em; transform:translateY(calc(-50% - 2px)) rotate(30deg); width:12px; height:2px; background-color:#fcc9d2; transition:0.3s; }
.btn-arrow a:after { content:''; position:absolute; top:50%; right:-1em; transform:translateY(-50%); width:40px; height:2px; background-color:#fcc9d2; transition:0.3s; }
.btn-arrow a:hover:before, .btn-arrow a:hover:after { right:-0.5em; }
.btn-arrow a:hover { background:#fef1eb; color:#fcc9d2; }

/**** header ***************************************************/
.site-head { width:100%; }
.h-inner { width:1200px; height:190px; position:relative; margin:0 auto; }
.h-logo { width:280px; height:150px; text-align:center; margin:0 auto; }
.h-logo .h-salonnm { line-height:1.3; padding:0.3rem 0 0; font-size:0.75rem; }
.h-logo .logo-pic, .f-logo .logo-pic { width:200px; }
.h-nav { font-weight:700; }
.nav-left { width:400px; position:absolute; top:90px; left:50px; }
.nav-right { width:400px; position:absolute; top:90px; left:700px; }
.btn-yoyaku__inner { position:fixed; top:7rem; right:0; border-radius:8px 0 0 8px; background:#4bbaa7; padding:1.5rem 1rem; z-index:8; }
.b-yoyaku { color:#FFF; text-align:center; line-height:1.1; }
.b-yoyaku .icon-pic { width:22px; height:22px; margin-bottom:0.7rem; }

/**** 共通 ***************************************************/
.outer-mv, .outer-head, .wel-b, .salon-gallery { position:relative; }
.h-main, .h-sub { display:block; }
.ft-weit { font-weight:700; }
news-detail__dd, .access-dd, .acc-item, .cnd-fl .cnd-fl__dd, .p-newslist .entry-meta { font-size:0.72rem; }
.btn-more { float:right; }
.b-rad { overflow:hidden; }
.omoi-wk__dd, .concept-inner, point-dd, .narrow-wrap .detail-inner, prof-dd { line-height:2; }

/**** h-concept ***************************************************/
.h-concept { position:relative; }
.h-concept::before { content:""; display:block; width:240px; height:222px; background:url(../img/home/bg-concept01.png) no-repeat; background-size:contain; position:absolute; top:-10rem; left:0; }
.h-concept::after { content:""; display:block; width:240px; height:224px; background:url(../img/home/bg-concept02.png) no-repeat; background-size:contain; position:absolute; bottom:-8rem; right:0; }
.detail-inner { width:520px; margin:0 auto; }

/**** home-news ***************************************************/
.news-bg-set { background:url(../img/common/bg-flower.jpg) repeat; background-attachment:fixed; padding:2rem 0; }
.news-wrap { width:96%; background:#FFF; padding:2.4rem; border-radius:10px; margin:0 auto; }
.news-b { width:48%; justify-content:space-between; flex-wrap:wrap; }
.calendar-b .wp-block-image img { max-width:300px; max-height:540px; }
.h-news-list { width:100%; padding-bottom:0.8rem; margin-bottom:1.2rem; border-bottom:1px solid #ccc; }
.calendar-b .h-news-list { border-bottom:none; }
.h-news-list:after { display:block; clear:both; content:""; }
.h-news-list .pic-frame img { width:110px; height:110px; object-fit:cover; margin-right:1rem; border-radius:110px; }
.h-news-list .news-detail { margin-top:1.2rem; }
.h-news-list .cont-tit { font-size:1.06rem; line-height:1.4; }
.h-news-list .news-detail__dd { font-size:0.8rem; line-height:1.5; }

/**** home-btn ***************************************************/
.section_btn a { width:300px; height:68px; font-size:0.95rem; font-weight:700; text-align:center; border-radius:120px; box-shadow:4px 4px 8px rgb(0 0 0 / 15%); }
.btn-more a, .p-newslist .link-more .more-link { display:block; width:120px; background:#BFA06B; color:#FFF; font-size:0.8rem; text-align:center; border-radius:5px; padding:0.4rem 0; font-weight:700; margin-top:1rem; float:right; } 
.btn-link a { display:block; background:#F87076; color:#FFF; padding:1.3rem 0; margin:5rem auto 1rem; } 
.btn-contact a { display:block; width:280px; background:#575757; color:#FFF; font-size:0.8rem; font-weight:700; text-align:center; border-radius:5px; padding:1rem 0; margin:2rem auto 0; } 

/**** info-cont ***************************************************/
.info-cont { position:relative; }
.info-block:before { content: ""; position:absolute; width:310px; height:90px; background:url(../img/common/tit-access.png) no-repeat; background-size:contain; top:80px; left:600px; z-index:5; }
.info-cont .detail-inner { margin-top:100px; }

/**** home-contact ***************************************************/
.contact-outer { width:40%; background:#FFF; text-align:center; padding:3rem; border-radius:8px; }
.line a { background:#8ac74e; }
.inst a { background:#e86b8c; }

/**** page ***************************************************/
#page { opacity: 0; -webkit-transition:3s cubic-bezier(.25,.1,.25,1); transition:3s cubic-bezier(.25,.1,.25,1); }
#page.page-act { opacity:1; }

.outer-head { height:235px; background:url(../img/other/head-bg.jpg) no-repeat center; background-size:cover;  }
/**.outer-head:before { content:""; position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(147,147,118,.5); z-index:0; }**/
.page-heading { width:100%; position:absolute; top:55%; left:50%; -webkit-transform:translate(-50%,-50%); transform:translate(-50%,-50%); text-align:center; z-index:1; }
.h-main { font-size:1.2rem; line-height:1.2; }
.h-sub { font-size:0.7rem; font-weight:400; letter-spacing:0.3rem; }
.breadcrumbs { margin-top:1rem; }
.breadcrumbs .breadcrumbs-wrap { justify-content:flex-start; margin:0; }
.breadcrumbs .breadcrumbs-list a { display:block; margin-right:12px; text-decoration:underline; }
.arrow-right:before { content: ""; display:block; width:0.3rem; height:0.3rem; border-top:1px solid #000; border-right:1px solid #000; transform: rotate(45deg); margin:0.3rem 1rem 0 0; }

/**** page-salon ***************************************************/
.salon-gallery { position:relative; width:920px; height:460px; }
.salon-gallery .pic01 { position:absolute; top:40px; left:0; }
.salon-gallery .pic02 { position:absolute; top:0; left:320px; }
.salon-gallery .pic03 { position:absolute; top:40px; left:640px; }
.salon-gallery .pic04 { position:absolute; top:260px; left:640px; }
.salon-about .pic-frame { width:450px; }
.salon-detail { width:100%; flex-wrap:wrap; }
.salon-detail .about-dt { width:20%; display:flex; justify-content:center; flex-direction:column; background:#f4a8b2; color:#131313; text-align:center; margin:0 2% 10px 0; padding:1%; }
.salon-detail .about-dd { width:78%; line-height:1.7rem; margin-bottom:10px; }
.msg-wrap { position:relative; height:40vh; }
.msg-wrap .pic-frame { z-index:5; }
.msg-wrap .pic-frame .msg-pic { position:absolute; top:0; right:3rem; }
.msg-flame { position:absolute; top:2rem; left:3.5rem; width:480px; background:#e3edec; padding:3rem; border-radius:3px; z-index:3; }
.msg-bg { position:absolute; top:4rem; left:17rem; z-index:1; }
.prf-wrap .prfimg { width:300px; height:418px; margin-top:4rem; }
.prf-inner { width:490px !important; background:#ebded6; padding:2.8rem; border-radius:3px; }

/**** page-menu ***************************************************/
.price-flame { width:700px; margin:0 auto 3rem; background:#FFF; padding:3.5rem; border-radius:5px; }
.mk-rec { width:78px; background:#f4a8b2; color:#FFF; font-size:0.7rem; text-align:center; padding:0.3rem 0; }
.price-flame .price-fl__dt { width:50%; }
.price-flame .price-fl__dd { margin-left:auto; }
.price-flame .p-area { margin-top:3.5rem; }
.price-flame .border { padding-bottom:0.8rem; border-bottom:1px solid #2c2c2c; }
.rec-check { margin-top:3.5rem; }
.rec-check .ft-s { font-size:0.8rem; }
.rec-bg { width:260px; height:240px; background:url(../img/other/fw-flame.png) no-repeat; padding:4.7rem 0 0 4rem; line-height:1.8; font-size:1.2rem; }
.mk-chk { width:24px; height:24px; background:url(../img/other/mk-chk.png) no-repeat; background-size:cover; display:block; margin-right:1rem; }
/**** page-news ***************************************************/
.entry-header .byline, .edit-link, .p-news .entry-footer { display:none; }
.p-newslist .list-area { width:32%; background:#FFF; font-family:"Noto Sans JP", sans-serif; padding:1.8rem 1.1rem; border-radius:8px; margin-bottom:2rem; }
.p-newslist .list-area:after { display:block; clear:both; content:""; }
.p-newslist .entry-header { margin-bottom:0.6rem; }
.p-newslist .category-news, .p-newslist .category-blog { font-size:0.95rem; margin-bottom:1.2rem; }
.p-newslist .entry-summary .news-txt, .p-archive .entry-content { font-size: 0.85rem; line-height:1.6; margin-bottom:0.8rem; }
.p-newslist .entry-title { font-size:1.2rem; line-height:1.6; }
.p-newslist .post-thumbnail { text-align:center; margin-bottom:1rem; }
.p-newslist .post-thumbnail a img { width:240px; height:160px; object-fit:cover; margin:0.5rem 0 1rem; }
.p-archive .page-title { font-size:1.2rem; line-height:1.8; margin-bottom:2.4rem;  }
.p-news article { background:#FFF; font-family:"Noto Sans JP", sans-serif; padding:5rem 3rem; border-radius:20px; margin-bottom:6rem; }
.news-area .entry-header .entry-title { font-size:1.2rem; line-height:2.2; }
.p-news .entry-header { margin-bottom:3rem; padding-bottom:0.6rem; border-bottom:1px solid #9c9c9c; }
.p-news .entry-title { font-size:1.4rem; line-height:1.7; }
.p-news .entry-content { margin:0 0 5rem; }
.p-news .entry-content p { font-size:1rem; line-height:1.8; margin:2rem 0; }
.p-news .entry-content .wp-block-image { margin:5rem 0; }
.p-news .entry-footer .cat-links { width:220px; display:flex; line-height:1.8; border:1px solid #ccc; padding:0.5rem 1.5rem; border-radius:10px; }
.p-news .entry-footer .cat-links .icon { width:30px; height:30px; margin-right:12px; }
/**** footer ***************************************************/
.f-nav { padding:2rem; }
.fnav-wrap { width:700px; margin:0 auto; }
.nav-list:not(:first-child):before { content:"|"; margin-right:1.6rem; margin-left:1.6rem; }
.f-salon-info { line-height:1.8; margin-bottom:3rem; }
footer .copyright { text-align:center; font-size:0.6rem; padding:0.8rem 0; }

@media screen and (max-width: 1024px) {
body { min-width:100%; }
/*** BASE ***/
.sp-img, img { width:100%; height:auto; }
.ft-xs { font-size:0.9rem; }
.ft-ss { font-size:1.2rem; }
.ft-s { font-size:1.3rem !important; line-height:1.8 !important; }
.ft-m { font-size:1.4rem !important; line-height:1.8 !important; }
.ft-l { font-size:2rem !important; line-height:1.8 !important; }
.base-wrap { max-width:100% !important; }
.narrow-wrap { width:90%; margin:0 auto 10rem; }
.sp-w90 { width:90% !important; margin:0 auto 3rem; }
.sp-w50 { width:50% !important; margin:0 auto 3rem; }
.sp-mb3 { margin-bottom:3rem !important; }
.sp-mb8 { margin-bottom:8rem !important; }
.cont-flex { flex-wrap:wrap; }
/*** HEADER ***/
.h-inner { justify-content:start; }
.h-nav { display:none; }
.outer-pagehead { height:7rem; }
.inner-pagehead .page-heading { font-size:34px; line-height:1.8; padding-top:2.4rem; }
.breadcrumbs { font-size:0.68rem; margin:1rem 0 0 1.5rem; }
.arrow-right:before { width:0.8rem; height:0.8rem; margin:1rem 1rem 0 0; }
/*** HOME ***/
.h-outer { padding-top:13rem; }
.detail-inner { width:90%; }
/*** FOOTER ***/
.info-cont { padding-top:10vh; }
.info-block:before { width:80%; top:5vh; left:5%; }
}

@media screen and (max-width: 766px) {
html { font-size: 50%; }
body { min-width:100%; }
/*** BASE ***/
.wrap { padding-top:0; }
.ft-ss { font-size:1.6rem; }
.ft-s { font-size:2rem !important; line-height:2 !important; }
.ft-m { font-size:2.2rem !important; line-height:1.8 !important; }
.ft-l { font-size:3rem !important; line-height:2.2 !important; }
.sp-w90 { width:90% !important; margin:0 auto; }
.heading-sub { font-size:2.5rem; }
#overlay ul li a { font-size:2rem; line-height:2; font-weight:700; }
.narrow-wrap { width:100%; margin:0 auto 5rem; }
.sec-heading .tit { width:320px; }
.btn-page a { font-size:1.8rem; padding:2rem 0; }
.cont-flex { display:block; }
/*** PAGE ***/
.outer-head { height:180px; }
.breadcrumbs .breadcrumbs-list, .breadcrumbs .breadcrumbs-list a { width:100%; font-size:1.6rem; line-height:1.6; justify-content:start; }
/*** HEADER ***/
.h-inner { width:100%; height:140px; justify-content:flex-start; }
.h-logo { width:100%; height:90px; }
.h-logo .logo-pic { width:100px; }
.h-logo .h-salonnm { font-size:1.3rem; line-height:1.6; padding:1.5rem 0.4rem 0; }
.h-main { font-size:2.4rem; }
/*** HOME ***/
.h-concept .detail-inner { height:70vh; }
.h-concept::before { width:140px; top:-35rem; left:2rem; background-size:contain; }
.h-concept::after { width:160px; bottom:-8rem; right:2rem; background-size:contain; }
.news-wrap .news-b { width:100%; } 
.h-news-list { padding:2rem; margin-bottom:3rem; }
.h-news-list .pic-frame img { width:150px; height:150px; margin-bottom:1rem; }
.h-news-list .cont-tit { font-size:2.4rem; line-height:1.6; } 
.h-news-list .news-detail__dd { font-size:1.8rem; line-height:1.8; }
.arrow-right:before { width:0.9rem; height:0.9rem; margin:1.1rem 1.3rem 0 0; }
.calendar-b .wp-block-image img { max-width:100%; }
/*** SALON ***/
.salon-gallery { height:110vh; }
.salon-gallery .pic01 { width:70%; top:8rem; }
.salon-gallery .pic02 { width:50%; left:50%; } 
.salon-gallery .pic03 { width:80%; top:60vh; left:unset; right:0; }
.salon-gallery .pic04 { width:50%; top:88vh; left:0; }
.salon-detail .about-dd { width:100%; line-height:2.4; }
.cont-bg01 { width:100%; height:55vh; background-size:cover; }
.link-sns { margin:0 auto; }
.link-sns a { padding:2rem 1rem; font-size:100%; }
.msg-wrap { height:110vh; }
.msg-wrap .pic-frame { height:auto; }
.msg-wrap .pic-frame .msg-pic { position:unset; }
.msg-flame { top:40vh; left:5%; }
.msg-bg { top:80vh; left:0; }
.prf-pic2 { display:flex; justify-content:flex-end; }
.prf-wrap .prfimg { margin-top:0; }
/*** MENU ***/
.rec-bg { padding:8.5rem 0 0 7.5rem; font-size:2.8rem; margin:5rem auto 0; }
.price-flame { padding:5rem 4rem; }
.price-flame .price-fl__dt, .price-flame .price-fl__dd { width:100%; }
/*** FOOTER ***/
.page-top { bottom:2rem; right:1rem; }
.page-top img { width:60px; }
.f-area { padding:2rem; }
.nav-list:not(:first-child):before { content:"-"; }
/*** NEWS ***/
.ft-alex { top:-39rem; left:1rem; font-size:10rem !important; }
.p-newslist .list-area { width:90%; margin:0 auto 3rem; }
.p-newslist article, .p-news article { width:90%; margin:1.6rem auto 3rem; }
.p-news .entry-meta, .p-newslist .entry-meta { font-size:small; }
.p-news .entry-title, .p-newslist .entry-title, .p-news .entry-title  { font-size:2.4rem; line-height:1.6; } 
.p-news .entry-content p { font-size: 2rem !important; }
.post-thumbnail a img { width:100%; margin:0 auto 2rem; float:none; }
.entry-summary p { font-size:1.8rem !important; line-height:1.8 !important; }
.btn-more a, .p-newslist .link-more .more-link { font-size:1.5rem; }
}