@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:#F7eee4; font-size:15px; color:#23201e; font-family:"Noto Serif JP", sans-serif; font-weight:400; 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: 9;
  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: 8;
  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 {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight:500;
  line-height:1.6;
}
#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; line-height:1; }
.ft-ss { font-size:0.8rem; line-height:1.4; }
.ft-s { font-size:0.8rem; line-height:2.3; }
.ft-m { font-size:1rem; line-height:1.8; font-weight:normal; }
.ft-l { font-size:1.1rem; line-height:2.2; font-weight:normal; }
.ft-ll { font-size:1.4rem; line-height:2.2; font-weight:normal; }

.cont-flex, .all-flex { display:-webkit-flex; display:-ms-flexbox; display:flex; }
.cont-wrap { flex-wrap:wrap; }
.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:980px !important; margin:0 auto; }
.tiny-wrap { max-width:800px; 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 !important;  }
.mb5 { margin-bottom:5rem !important;  }
.mb8 { margin-bottom:8rem !important; }
.mb10 { margin-bottom:10rem !important;  }
.wh-col { color:#FFF; }
.sup { font-size:0.8rem; }
.wth-border { width:100%; border-bottom:solid 1px #2c2c2c; margin-bottom:2rem; padding-bottom:2rem; }

/**** bg ***************************************************/
.womoa-bg { background:url(../img/common/womoa-bg.jpg) repeat; background-attachment:fixed; padding:2rem 0; }
.bg-set-w { width:100%; padding:2rem; background:#FFF; }
.bg-set-b { width:100%; padding:2rem; background:#d7bab3; }
.cont-bg01 { background:url(../img/other/bg-other.jpg) repeat; background-size:cover; background-position:center; padding:2rem 0; }
.white-wrap { width:96%; background:#FFF; padding:3.8rem 2.4rem; border-radius:10px; margin:0 auto; }

/**** tit ***************************************************/
.sec-heading { font-family:"EB Garamond", serif; font-size:1.7rem; font-weight:300; text-align:center; line-height:1; margin-bottom:1.5rem; }
.heading-sub { display:block; font-size:1rem; font-weight:500; line-height:1.8; margin-top:1rem; letter-spacing:0.7rem; }
.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 { position:relative; display:flex; max-width:275px; background:#cb6d57; margin:2.8rem auto 1rem; padding:0.9rem 2rem; color:#FFF; font-weight:500; font-size:0.85rem; border-radius:3px; }
.btn-page a:before { content: ''; position:absolute; top:calc(60% - 2px); right:2em; transform:translateY(calc(-50% - 2px)) rotate(30deg); width:8px; height:1px; background-color:#FFF; transition:0.3s; }
.btn-page a:after { content:''; position:absolute; top:55%; right:2em; transform:translateY(-50%); width:60px; height:1px; background-color:#FFF; transition:0.3s; }
.btn-page a:hover:before, .btn-page a:hover:after { right:1em; }
.btn-page a:hover { background:#fcc664; color:#FFF; }

.link-sns { width:340px; margin:0 auto; }
.link-sns a { display:block; background:#FFF; margin:0 auto 2.8rem; padding:1.3rem 1rem; font-weight:500; font-size:1.1rem; text-align:center; border-radius:3px; border:1px solid #787878; }

.btn-line { width:340px; margin:3rem auto 0; }
.btn-line a { display:block; font-family:"Noto Sans JP", sans-serif; color:#FFF; background:#cb6d57; margin:0 auto 2.8rem; padding:0.8rem 1rem; font-weight:500; font-size:0.85rem; text-align:center; border-radius:3px; }

.btn-yoyaku__inner { position:fixed; top:7rem; right:0; border-radius:8px 0 0 8px; background:#cb6d57; padding:1.5rem 1.7rem; z-index:5; }
.b-yoyaku { writing-mode: vertical-rl; font-size:0.7rem; font-family:"Noto Sans JP", sans-serif; color:#FFF; text-align:center; line-height:1.1; }
.b-yoyaku .icon-pic { width:22px; height:22px; margin-bottom:0.7rem; }

/**** header ***************************************************/
.site-head { width:100%; }
.h-inner { width:1200px; height:250px; position:relative; margin:0 auto; }
.h-logo { width:280px; height:150px; text-align:center; margin:0 auto; }
.h-logo .h-salonnm { font-size:0.6rem; font-weight:normal; line-height:1.3; padding:0.3rem 0 0; }
.h-logo .logo-pic, .f-logo .logo-pic { width:250px; margin-top:1rem; }
.nav-left { width:400px; position:absolute; top:90px; left:50px; }
.nav-right { width:400px; position:absolute; top:90px; left:700px; }

/**** 共通 ***************************************************/
.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; }
.deco-pic { width:29px; height:auto; }

/**** MV ***************************************************/
.outer-mv { width:1040px; margin:0 auto 3rem; }

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  animation: zoomUp 10s linear 0s 1 normal both;  
}

/**** h-concept ***************************************************/
.h-concept { position:relative; }
.h-concept::before { content:""; display:block; width:60px; height:240px; background:url(../img/home/bg-greeting01.png) no-repeat; background-size:contain; position:absolute; top:-13rem; left:0; }
.h-concept::after { content:""; display:block; width:90px; height:180px; background:url(../img/home/bg-greeting02.png) no-repeat; background-size:contain; position:absolute; bottom:-8rem; right:0; }
.detail-inner { width:480px; margin:0 auto; }

/**** home-voice ***************************************************/
.h-voicelist { width:220px; }
.h-voicelist .pic-frame img { width:220px; height:200px; object-fit:cover; margin-right:1rem; border-radius:10px; }
.voice-detail { height:150px; background:#edd7d1; padding:1rem; border-radius:10px; }
.voice-detail .ft-m { font-size:0.9rem; font-weight:normal; line-height:1.2; }

/**** home-news ***************************************************/
.news-b { width:46%; justify-content:space-between; flex-wrap:wrap; }
.calendar-b .wp-block-image img { max-width:300px; max-height:540px; }
.h-news-list, recom-b { 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 .news-detail .ft-m { line-height:2.2; }
.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; }

/**** recommend ***************************************************/
.reference { display:flex; justify-content:flex-end; border-bottom:1px solid #666; padding-bottom:2rem; margin-bottom:2rem; }
.reference .recom-pic { width:139px; height:139px; }
.reference .cont-inner { width:100px; margin:2.5rem 1rem 0 0; }
.reference .coment { background:#edd7d1; padding:1rem; border-radius:5px; line-height:1.2; }
.recom-salon .resalon-pic { width:140px; height:140px; }

/**** home-service ***************************************************/
.menu-pic { width:343px; height:auto; }
.worry-list { flex-wrap:wrap; font-size:0.7rem; font-weight:700; }
.worry { background:#f0c6b5; padding:0.4rem 0.8rem; border-radius:10px; margin:0 0.2rem 0.4rem 0; }
.menu-inner { background:#f5e4d7; padding:4rem; border-radius:1rem; }

/**** 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%); }
.link-more .more-link { display:none; }
.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; } 

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

/**** home-link ***************************************************/
.link-area { position:relative; }
.link-area section { padding:2rem 0 0; }
.link-bg { width:250px; height:auto; position:absolute; right:10%; bottom:0; }

/**** 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 { position:relative; height:235px; }
.outer-head .page-head { position:absolute; top:15%; right:32%;  }
.outer-head .head-pic { width:126px; height:auto; }

/**.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; }
.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 { position:relative;  }
.salon-about .pic-frame { width:450px; }
.salon-about .salon-detail { position:absolute; top:530px; left:550px; }
.salon-detail { width:480px; flex-wrap:wrap; }
.salon-detail .about-dt { width:23%; display:flex; justify-content:center; flex-direction:column; background:#f0c6b5; color:#131313; text-align:center; margin:0 2% 10px 0; padding:1%; }
.salon-detail .about-dd { width:75%; line-height:1.7rem; margin-bottom:10px; }
.msg-wrap { position:relative; height:77vh; }
.msg-wrap .pic-frame { z-index:5; }
.msg-wrap .pic-frame .msg-pic { width:320px; position:absolute; top:0; right:10rem; }
.msg-flame { position:absolute; top:2rem; left:3.5rem; width:480px; background:#edd7d1; padding:3rem; border-radius:1rem; z-index:3; }
.msg-bg { width:600px; height:690px; background:url(../img/common/womoa-bg.jpg) no-repeat; background-size:contain; position:absolute; top:12rem; left:10rem; z-index:1; }
.prf-wrap .prfimg { width:247px; height:342px; margin-top:4rem; }
.prf-inner { width:420px !important; background:#f5e4d7; padding:2.8rem; border-radius:1rem; }

/**** page-service ***************************************************/
.price-table { width:50%; margin:4rem auto; border-collapse:collapse; border-spacing:0; border-top:solid 1px #6e6767; border-right:solid 1px #6e6767; }
.price-th, .price-td { border-bottom:solid 1px #6e6767; border-left:solid 1px #6e6767; padding:1rem; font-size:0.8rem; text-align:center; vertical-align:middle; line-height:1.3rem; }
.price-table .price-th { background:#848380; color:#FFF; }
.care-pic { width:160px; height:auto; }
.care-b { width:80%; margin:0 auto; }
.care-inner { width:70%; margin:1.5rem auto 0;  }
.care-detail { background:#FFF; padding:1.5rem; border-radius:1rem; }
.care-detail .ft-s { line-height:2.6 !important; }
.care-detail .care-sp { background:#f0c6b5; font-weight:500; padding:0.2rem 1rem; border-radius:1rem; margin-left:0.2rem; }
.other-pic { width:252px; height:auto; }

/**** page-news ***************************************************/
.entry-header .published, .byline, .edit-link, .p-news .entry-footer { display:none; }
.p-voicelist .entry-header .updated { display:none; }
.p-newslist .list-area, .p-voicelist .list-area { width:32%; background:#FFF; padding:1.8rem 1.1rem; border-radius:8px; margin-bottom:2rem; }
.p-newslist .list-area:after, .p-voicelist .list-area:after { display:block; clear:both; content:""; }
.p-newslist .entry-header, .p-voicelist .entry-header { margin-bottom:0.6rem; }
.p-newslist .category-news, .p-newslist .category-blog, .p-voicelist .category-news, .p-voicelist .category-blog { font-size:0.95rem; margin-bottom:1.2rem; }
.p-newslist .entry-summary .news-txt, .p-archive .entry-content, .p-voicelist .entry-summary .news-txt, .p-archive .entry-content { font-size: 0.8rem; line-height:1.5; margin-bottom:0.8rem; }
.p-newslist .entry-title, .p-voicelist .entry-title { font-size:0.9rem; line-height:1.6; font-weight:normal; }
.p-newslist .post-thumbnail, .p-voicelist .post-thumbnail { text-align:center; margin-bottom:1rem; }
.p-newslist .post-thumbnail a img, .p-voicelist .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; 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.1rem; line-height:1.7; font-weight:normal; }
.p-news .entry-content { margin:0 0 5rem; }
.p-news .entry-content p { font-size:0.8rem; 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 ***************************************************/
footer { background:#FFF; }
.f-nav { padding:2rem; }
.fnav-wrap { width:700px; margin:0 auto; }
.f-salon-info { line-height:1.8; margin-bottom:3rem; }
footer .copyright { background:#a8898a; color:#FFF; 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:1.4rem; line-height:2; }
.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; }
.ft-ll { font-size:2.3rem !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-mb2 { margin-bottom:2rem !important; }
.sp-mb3 { margin-bottom:3rem !important; }
.sp-mb5 { margin-bottom:5rem !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:5rem; }
.detail-inner { width:100%; }
}

@media screen and (max-width: 766px) {
html { font-size: 50%; }
body { min-width:100%; }
/*** BASE ***/
.wrap { padding-top:3rem; }
.ft-ss { font-size:1.4rem; }
.ft-s { font-size:1.7rem !important; line-height:2.2 !important; }
.ft-m { font-size:1.8rem !important; line-height:1.8 !important; }
.ft-l { font-size:2rem !important; line-height:2.2 !important; }
.ft-ll { font-size:2.4rem !important; line-height:2.3 !important; }
.sp-w90 { width:90% !important; margin:0 auto; }
.heading-sub { font-size:2.5rem; }
#overlay ul { padding:35% 12% 0; }
#overlay ul li a { font-size:1.8rem; line-height:2; }
.narrow-wrap { width:100%; margin:0 auto 5rem; }
.sec-heading { font-size:3rem; }
.btn-page a { width:70%; font-size:1.5rem; padding:2rem; margin:8rem auto 1rem; }
.btn-line { width:80%; }
.btn-line a { font-size:1.5rem;  }
.cont-wrap { display:block; }
.cont-flex { display:block; }
.arrow span { font-size:1.6rem; }
/*** PAGE ***/
.outer-head { height:180px; }
.outer-head .page-head { top:24%; right:8%; }
.outer-head .head-pic { width:80px; }
.breadcrumbs .breadcrumbs-list, .breadcrumbs .breadcrumbs-list a { width:100%; font-size:1.6rem; line-height:2; 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:145px; }
.h-logo .h-salonnm { font-size:1.1rem; line-height:1.6; padding:1.5rem 0.4rem 0; }
.h-main { font-size:2.4rem; }
.btn-yoyaku__inner { top:12rem; padding:1.5rem 2rem; }
.b-yoyaku { font-size:1.4rem; }
/*** HOME ***/
.outer-mv { width:100%; margin:6rem auto 0; }
.h-concept .detail-inner { height:65vh; }
.h-concept::before { width:35px; top:-30rem; left:2rem; background-size:contain; }
.h-concept::after { width:65px; bottom:-9rem; right:2rem; background-size:contain; }
.voice-inner { display:flex; justify-content:flex-end; }
.h-voicelist .pic-frame img { width:120px; height:120px; }
.voice-detail .ft-m { font-size:1.6rem !important; }
.news-b { width:100%; } 
.h-news-list { padding-bottom:3rem; }
.h-news-list .pic-fram { text-align:center; }
.h-news-list .pic-frame img { width:120px; height:120px; margin-bottom:1rem; }
.h-news-list .cont-tit { font-size:1.8rem; line-height:1.6; font-weight:normal; } 
.h-news-list .news-detail { margin-top:0; }
.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%; }
.link-bg { width:110px; right:0; }
.reference { justify-content:space-evenly; padding-bottom:5rem; margin-bottom:5rem; }
.recom-salon .recom-detail { width:50%; }
.prf-wrap { position:relative; }
.prf-inner { margin-top:-8rem; padding:10rem 3rem; }
.prf-pic1 { position:inherit; top:0; z-index:5; }
.prf-pic2 { margin-top:-8rem; }
.worry-list { font-size:1.5rem; font-weight:normal; }
.worry { padding:0.6rem 1rem; }
/*** SALON ***/
.salon-gallery { width:90%; 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.2; }
.cont-bg01 { width:100%; height:40vh; background-size:cover; }
.link-sns { width:70%; margin:0 auto; }
.link-sns a { padding:2rem 1rem; font-size:100%; }
.msg-wrap { height:120vh; }
.msg-wrap .pic-frame { width:75%; height:auto; margin:0 auto; }
.msg-wrap .pic-frame .msg-pic { width:100%; position:unset; }
.msg-flame { top:35vh; left:5%; }
.msg-bg { width:100%; height:500px; top:80vh; left:0; }
.prf-pic2 { display:flex; justify-content:flex-end; }
.prf-wrap .prfimg { width:180px; height:auto; margin-top:0; }
.salon-about .salon-detail { width:100%; position:unset; }
/*** MENU ***/
.menu-b .pic-frame, .tiny-wrap .pic-frame { width:70%; margin:0 auto; }
.menu-pic, .care-pic, other-pic { width:100%; }
.price-table { width:90%; }
.price-th, .price-td { font-size:1.6rem; padding:1.6rem; line-height:1.4; }
.care-b { width:90%; }
.care-b .pic-frame { width:35%; margin-top:8rem; }
.care-inner { width:100%; }
.care-inner .ft-s { font-size:1.6rem !important; }
.care-detail .care-sp { padding:0.4rem 1.5rem; margin-left:0.5rem; }

/*** FOOTER ***/
.info-cont { width:90%; margin:0 auto; }
.page-top { bottom:2rem; right:1rem; }
.page-top img { width:60px; }
.f-area { padding:2rem; }
.f-nav { font-size:1.6rem !important; line-height:2.4; }
.nav-list:not(:first-child):before { content:"-"; }
footer .copyright { font-size:1rem; padding:1.1rem 0; }
/*** NEWS ***/
.ft-alex { top:-39rem; left:1rem; font-size:10rem !important; }
.p-newslist .entry-header .updated { font-size:1.4rem;  }
.p-newslist .list-area, .p-voicelist .list-area { width:90%; margin:0 auto 3rem; }
.p-newslist article, .p-news article, .p-voicelist article { width:90%; margin:1.6rem auto 3rem; }
.p-news .entry-meta, .p-newslist .entry-meta, .p-voicelist .entry-meta { font-size:small; }
.p-news .entry-title, .p-newslist .entry-title, .p-news .entry-title, .p-voicelist .entry-title { font-size:1.8rem; line-height:1.6; } 
.p-news .entry-content p { font-size: 1.6rem !important; line-height:2.5; }
.post-thumbnail a img { width:100%; margin:0 auto 2rem; float:none; }
.entry-summary p { font-size:1.5rem !important; line-height:1.8 !important; }
}