@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:#f4eae3; font-size:15px; color:#2b302b; font-family: "Noto Sans JP", sans-serif; font-weight:500; font-style:normal; letter-spacing:0.1rem; }
a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; color:#3b3632; outline:none; }
@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: 89;
  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: 88;
  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;
}
.delay-time10 {
	animation-delay: 1.2s;
}

.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; }

/**** BASE ***************************************************/
#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.4; }
.ft-ss { font-size:0.85rem; line-height:1.5; }
.ft-s { font-size:0.95rem; line-height:1.9 !important; }
.ft-m { font-size:1rem !important; line-height:1.6 !important; }
.ft-l { font-size:1.3rem !important; line-height:1.5 !important; }
.ft-ll { font-size:1.5rem; line-height:2.2; font-weight:500; }
.ft-w { font-weight:700; }

.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; }

.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; }
.pt1 { padding-top:1rem; }
.pt3 { padding-top:3rem; }
.pt5 { padding-top:5rem; }
.wh-col { color:#FFF; }
.pk-col { color:#df8071; }
.sup { font-size:0.8rem; }
.wth-border { width:100%; border-bottom:solid 1px #2c2c2c; margin-bottom:2rem; padding-bottom:2rem; }

/**** BLOCK ***************************************************/
.container { margin:2rem auto; padding:2rem 0; }
.base-wrap { max-width:980px !important; margin:0 auto; }
.tiny-wrap { max-width:750px; margin:0 auto; }
.peti-wrap { max-width:600px; margin:0 auto; }
.wide-wrap { max-width:1080px !important; margin:0 auto; }
.three-b { width:32%; }
.narrow-wrap { width:980px; margin:0 auto 5rem; }
.narrow-wrap .pic-frame { width:45%; text-align:center; }
.narrow-wrap .detail-inner { width:48%; }
.map-frame { width:48%; margin:0 auto; }

/**** BACKGROUND ***************************************************/
.white-bg { background:#FFF; }
.green-bg { background:#e1efdf; }
.peach-bg { background:#f4eae3; }
.como-bg { background:url(../img/common/comorebi-bg.jpg) repeat; background-attachment:fixed; padding:2rem 0 0; }
.news-como-bg { background:url(../img/common/comorebi-bg.jpg) repeat; background-attachment:fixed; padding:7rem 0; }
.white-wrap { background:#FFF; padding:0.5rem 2.4rem 2rem; border-radius:20px; margin:2rem auto; box-shadow:0px 0px 18px -5px #666666; }
.peach-wrap { background:rgba(248,210,203,0.9); border-radius:20px; padding:2.5rem; }
.side-bg { position:relative; }
.side-bg:before { content:""; width:100%; max-width:200px; height:100%; position:absolute; top:0; left:0; display:block; background:url(../img/common/bg-left.png) repeat-y; background-size:contain; z-index:1; }
.side-bg:after { content:""; width:100%; max-width:200px; height:100%; position:absolute; top:0; right:0; display:block; background:url(../img/common/bg-right.png) repeat-y; background-size:contain; z-index:1; }
.side-bg .cont-inner { position:relative; z-index:77; }

/**** PIC ***************************************************/
.pic-frame img { width:100%; height:auto; }
.prf-wrap .pic-frame { max-width:450px; }
.salon-pic { max-width:422px; width:100%; height:auto; }
.salon-info .pic-frame { max-width:320px; margin:-15rem auto 5rem; background:#e1efdf; border-radius:50%; }
.mama-seitai .pic-frame { max-width:215px; }
.menu-seitai .pic-frame { max-width:325px; }
.pt-seitai .pic-frame, .h-voice .pic-frame  { max-width:240px; margin:0 auto; }
.menu-message .pic-frame { max-width:445px; margin:-8rem 0 0 45%; }
.menu-outer .menu-main { width:760px; margin:0 auto; }

/**** DETAIL ***************************************************/
.detail-inner { width:480px; margin:0 auto; }
.h-salon .detail-inner { padding-top:3.5rem; }

/**** TITLE ***************************************************/
.sec-heading { font-size:0.9rem; font-weight:500; color:#3f9e5c; text-align:center; margin-bottom:3rem; }
.sec-heading:before { content:""; display:block; width:230px; height:15px; background:url(../img/common/tit-deco.png) no-repeat top center; background-size:contain; margin:1rem auto 1.5rem; }
.sec-heading:after { content:""; display:block; width:280px; height:20px; background:url(../img/common/tit-deco.png) no-repeat top center; background-size:contain; margin:1rem auto;  }
.sec-heading .cap-s { font-size:3.5rem; font-family:"Carattere", cursive; font-weight:400; font-style:normal; }

.tit-head { font-size:1.2rem; line-height:1.5; font-weight:700; margin-bottom:1rem; }
.cont-cet { text-align:center; }
.ft-other { text-align:center; font-family:"Carattere", cursive; font-weight:400; font-style:normal; font-size:3rem; margin-bottom:0.5rem; line-height:1.5; }

/**** PAGE-TOP ***************************************************/
.page-top { position:fixed; bottom:1rem; right:0.8rem; z-index:88; }
.page-top img { width:70px; }

/**** 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); }
.triangle { display:block; margin-top:0.5rem; }
.triangle::after { content: ''; width:0; height:0; border-left:5px solid transparent; border-right:5px solid transparent; border-top:5px solid #FFF; }

/**** BUTTON ***************************************************/
.btn-page { text-align:center; }
.btn-page a { min-width:260px; display:inline-block; background:#e19487; font-size:0.88rem; font-weight:700; text-align:center; color:#FFF; box-sizing:border-box; margin:2.8rem auto 3rem; padding:1.3rem 3rem; border-radius:100px; }
.btn-page a:hover { background:#fcc664; color:#2b302b; }

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

/* FOOTER INFO */
.btn-line { width:80%; margin:3rem auto 0; }
.btn-line a { display:block; color:#FFF; background:#e19487; margin:0 auto 2.8rem; padding:1.2rem 1rem; font-weight:500; font-size:0.85rem; text-align:center; border-radius:8px; }

/* PAGE RIGHT */
.btn-yoyaku__inner { position:fixed; top:7rem; right:0; border-radius:8px 0 0 8px; background:#e19487; padding:1.5rem 1rem; z-index:88; }
.b-yoyaku { font-size:0.9rem; color:#FFF; text-align:center; line-height:1.1; }
.b-yoyaku .icon-pic { width:20px; height:31px; margin-bottom:0.7rem; }

/**** header ***************************************************/
.site-head { width:100%; background:url(../img/common/head-bg.png) no-repeat; background-position: top 0% left 10%; background-size:510px; }
.h-inner { width:1200px; height:280px; position:relative; margin:0 auto; }
.h-logo { width:280px; height:auto; }
.h-logo .h-salonnm { font-size:0.7rem; font-weight:normal; line-height:1.2; padding:1rem 0 0; }
.h-logo .logo-pic, .f-logo .logo-pic { width:280px; }
.h-nav { font-weight:500; }
.nav-right { width:850px; position:absolute; top:120px; right:0; }

/**** 共通 ***************************************************/
.outer-mv, .outer-head, .wel-b, .salon-gallery { position:relative; }
.inner-tit, .h-sub { display:block; }

.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 { line-height:2; }

/**** MV ***************************************************/
.cont-mv { }
.outer-mv { width:1280px; 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;  
}

/**** HOME menu ***************************************************/
.mama-seitai .three-b { text-align:center; } 
.menu-seitai .base-wrap { padding-top:15rem; }
.menu-seitai .three-b { margin-top:-20rem; }
.menu-seitai .menu-tit { min-width:160px; display:inline-block; background:#69a87d; color:#FFF; padding:0.5rem 1.5rem; border-radius:20px; }

/**** HOME point ***************************************************/
.salon-point .container { margin:2rem auto 0; padding:2rem 0 5rem; }
.pt-head { position:relative; width:650px; height:465px; background:url(../img/home/h-point-head.png) no-repeat top center; background-size:contain; margin:5rem auto; }
.p-inner { position:absolute; top:6rem; left:3rem; width:380px; text-align:center; }
.pt-ft { font-size:3.5rem; font-family:"Carattere", cursive; font-weight:400; font-style:normal; }
.pt-txt { font-size:1.45rem; line-height:1.6; font-weight:500; }
.pt-seitai .ft-l { color:#3f9e5c; }
.pt-seitai .pt-detail { width:98%; min-height:295px; background:#FFF; margin:-4rem auto 0; padding:5rem 1.7rem 1.5rem; border-radius:20px; box-shadow:0px 0px 8px -5px #666666; }

/**** HOME news ***************************************************/
.news-wrap { width:92%; margin:0 auto; }
.news-half { width:46%; justify-content:space-between; flex-wrap:wrap; }
.h-news .cap-s { font-size:2.5rem; }
.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:2.5rem; border-bottom:1px solid #ccc; }
.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; }
.calendar-b .h-news-list { border-bottom:none; }

/**** HOME voice ***************************************************/
.voice-detail { width:98%; min-height:250px; background:#FFF; margin:-4rem auto 0; padding:5rem 1.7rem 1.5rem; border-radius:20px; box-shadow:0px 0px 8px -5px #666666; }
.voice-detail .ft-m { color:#618c6e; font-size:1.06rem !important; font-weight:600; line-height:1.5 !important; }

/**** HOME recommend ***************************************************/
.h-recom .container { margin:2rem auto 0; padding:2rem 0 5rem; }
.recom-inner { width:880px; margin:0 auto; }
.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 .recom-inner { width:250px; margin:3rem 1rem 0 0; }
.reference .coment { background:#edd7d1; padding:1rem; border-radius:5px; line-height:1.2; }
.recom-salon { width:65%; margin:0 auto; }
.recom-salon .resalon-pic { width:140px; height:140px; }
.recom-detail { margin-left:40px; }

/**** 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; }

/**** 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 { width:400px; height:300px; background:url(../img/common/page-head.png) no-repeat top center; background-position:center bottom; background-size:cover; margin:0 auto; }
.page-heading { font-size:1.8rem; color:#FFF; line-height:2.4; text-align:center; padding-top:6.5rem; }
.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.45rem 1rem 0 0; }

/**** SALON page ***************************************************/
.salon-gallery { position:relative; width:1080px; height:640px; margin:0 auto 3rem; }
.salon-gallery .pic01 { width:785px; height:565px; position:absolute; top:0; left:80px; }
.salon-gallery .pic02 { width:321px; height:230px; position:absolute; bottom:0; left:0; }
.salon-gallery .pic03 { width:250px; height:179px; position:absolute; top:50px; right:50px; }
.salon-gallery .pic04 { width:321px; height:230px; position:absolute; bottom:20px; right:80px; }
.omoi-wrap { position:relative; margin:6rem 0 25rem; }
.omoi-wrap:before { content:""; display:block; width:300px; height:350px; background:url(../img/other/komorebi01.png) no-repeat; background-size:contain; position:absolute; top:-20%; left:0; }
.omoi-wrap:after { content:""; display:block; width:350px; height:380px; background:url(../img/other/komorebi02.png) no-repeat; background-size:contain; position:absolute; bottom:-50%; right:0; }
.salon-story .container { position:relative; z-index:77; margin:2rem auto 0; padding:2rem 0 5rem; }

.salon-detail { width:480px; flex-wrap:wrap; }
.salon-detail .about-dt { width:35%; height:26px; display:flex; justify-content:center; flex-direction:column; background:#69a87d; font-size:0.85rem; color:#FFF; text-align:center; margin:0 5% 0 0; padding:3% 1%; border-radius:3px; }
.salon-detail .about-dd { width:60%; line-height:1.7rem; margin-bottom:12px; }

.page-act .prf-pic { width:100%; height:auto; margin-top:0; }
.prf-inner { width:450px !important; line-height:1.8 !important; }
.prf-inner .ft-l { line-height:1.8 !important; }

/**** MENU page ***************************************************/
.sbnav-head { margin:6rem auto 3rem; }
.sbnav-li a { display:block; min-width:220px; height:70px; font-family:"Noto Serif JP", sans-serif; font-weight:500; padding:0.8rem 1rem; text-align:center; color:#FFF; border-radius:10px; -webkit-border-radius:10px; background-color:#e19487; }
.sbnav-li .inner-tit { height:40px; display:grid; place-items:center; font-size:1.3rem; line-height:1.2; padding:0; }

.menu-outer { margin-top:20rem; padding-bottom:5rem; }
.menu-outer .menu-pic { margin-top:-16rem; }
.menu-page .menu-tit { width:400px; background-color:#69a87d; border-radius:10px; -webkit-border-radius:10px; margin:1rem auto 3rem; }
.menu-page .menu-tit .inner-tit { font-size:1.8rem; font-family:"Noto Serif JP", sans-serif; font-weight:500; text-align:center; color:#FFF; line-height:1.4; padding:1.2rem 1.5rem; }
.menu-inner .ft-m { line-height:1.8 !important; }

.price-table { width:100%; line-height:1.3; margin:1rem auto; border-collapse:collapse; border-spacing:0; }
.price-tr01, .price-tr02 { border-bottom:solid 1px #6e6767; margin-bottom:1rem; }
.price-table .price-th { width:60%; padding:1rem 1rem 1.2rem; }
.price-table .price-tr02 { background:#f8d2cb; }
.price-table .price-td { width:40%; padding:0.8rem 1rem; text-align:right; }

.worry-wrap { margin-top:10rem; padding:3.5rem 2rem; }
.menu-worry { padding-top:30rem; }
.worry-head { width:390px; height:175px; background:url(../img/menu/worry-head.png) no-repeat top center; margin:-38rem auto 2.5rem; }
.worry-head .ft-m { text-align:center; font-size:1.2rem !important; font-weight:500; padding-top:1.7rem; }
.menu-worry .pic-frame { width:265px; margin-top:3rem; }
.worry-list { font-weight:500; line-height:1.9; }
.worry-list .mk-ck { display:block; width:26px; height:26px; background:url(../img/menu/mk-chk.png) no-repeat; margin-right:1rem; background-size:contain; }
.worry-list .mk-br { background:linear-gradient(transparent 60%, #ffdbd6 60%);  }
.wry-msg { width:460px; text-align:center; padding:1rem; background:#f8d2cb; margin:0 auto; }

/**** FAQ page ***************************************************/
.question { height:60px; display:flex; align-items:center; font-weight:600; }
.question .mk-ak { display:block; width:60px; height:60px; background:url(../img/other/a-mark.png) no-repeat; margin-right:0.8rem; background-size:cover; }
.answer { background:#FFF; padding:2rem 2.4rem 2rem; border-radius:20px; margin:2rem auto; box-shadow:0px 0px 8px -5px #666666; line-height:2.0; }

/**** 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 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.85rem; line-height:1.5; margin-bottom:0.8rem; }
.p-newslist .entry-title, .p-voicelist .entry-title { font-size:0.92rem; line-height:1.5; margin-top:0.2rem; }
.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:500; margin:0.5rem 0; }
.p-news .entry-content { margin:0 0 5rem; }
.p-news .entry-content p { font-size:0.9rem; 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; }
/**** 404-page ***************************************************/
.pic-frame .not-pic { width:70%; margin:0 auto; }
/**** footer ***************************************************/
footer { background:#FFF; }
.f-nav { padding:2rem; font-weight:500; }
.fnav-wrap { width:700px; margin:0 auto; }
.f-salon-info { line-height:1.8; margin-bottom:3rem; }
footer .copyright { background:#f4eae3; color:#727272; text-align:center; font-size:0.6rem; padding:0.8rem 0; }

@media screen and (max-width: 1024px) {
	body { min-width:100%; }
	section { padding:3rem 0; }
	/*** 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:3rem !important; line-height:1.8 !important; }
	.base-wrap { max-width:100% !important; }
	.tiny-wrap { width:100%; }
	.peti-wrap { width:90%; margin:0 auto; }
	.narrow-wrap { width:90%; margin:0 auto 10rem; }
	.peach-wrap { width:90%; }
	.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; }
	.side-bg:before, .side-bg:after { max-width:150px; } 
	/*** 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:5rem 0 5rem 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:90%; }
	.h-concept { width:100%; writing-mode:unset; text-align:center; }
	.h-concept::after { width:150px; height:100px; bottom:-15rem; left:0; }
}

@media screen and (max-width: 766px) {
	html { font-size: 50%; }
	body { min-width:100%; }
	/*** BASE ***/
	.wrap { padding-top:3rem; }
	.ft-ss { font-size:1.6rem; }
	.ft-s { font-size:1.8rem !important; line-height:2 !important; }
	.ft-m { font-size:2rem !important; line-height:1.5 !important; }
	.ft-l { font-size:2.4rem !important; line-height:2.2 !important; }
	.ft-ll { font-size:2.6rem !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; }
	.narrow-wrap .detail-inner { width:100%; }
	.narrow-wrap .pic-frame { width:100%; }
	.bg-set-b { padding:3.5rem 5% 1rem; }
	.p-menu .bg-set-b { padding:3.5rem 0 1rem; }
	.white-wrap { width:95%; margin:0 auto 2rem; } 
	.sec-heading { font-size:1.8rem; padding-top:2rem; }
	.sec-heading .cap-s { font-size:5.5rem; }
	.sec-heading:before { margin:1rem auto 3rem; }
	.sec-heading:after { margin:3rem auto; }
	.ft-other {font-size:5rem !important; }
	.btn-page a { width:70%; font-size:1.8rem; padding:3rem 2rem; margin:3rem auto; }
	.btn-line { width:92%; margin:5rem auto 0; }
	.btn-line a { font-size:2rem; padding:3rem 1rem; }
	.cont-wrap { display:block; }
	.cont-flex { display:block; }
	.arrow span { font-size:1.6rem; }
	.pic-frame img { width:90%; margin:0 auto; display:block; }
	.side-bg:before, .side-bg:after { max-width:120px; opacity:0.2; } 
	/*** PAGE ***/
	.outer-head { width:300px; height:225px; margin:8rem auto 0; }
	.outer-head .page-heading { font-size:3rem; padding-top:9rem; }
	.breadcrumbs .breadcrumbs-list, .breadcrumbs .breadcrumbs-list a { width:100%; font-size:1.6rem; line-height:2; justify-content:start; }
	/*** HEADER ***/
	.site-head { background-size:350px; }
	.h-inner { width:100%; height:200px; justify-content:flex-start; }
	.h-logo { width:100%; height:auto; }
	.h-logo .logo-pic { width:190px; }
	.h-logo .h-salonnm { font-size:1.3rem; line-height:1.2; padding:1.2rem 0.4rem 0; }
	.inner-tit { font-size:2.4rem; line-height:1.6; padding:2.2rem 0 1rem; }
	.btn-yoyaku__inner { top:12rem; padding:1.5rem 2rem; }
	.b-yoyaku { font-size:1.4rem; }
	/*** HOME ***/
	.cont-mv { margin-top:150px; }
	.outer-mv { width:100%; margin:-15rem auto 0 !important; }
	/*** HOME MENU ***/
	.mama-seitai { flex-wrap:wrap; }
	.mama-seitai .three-b { width:50% !important; }
	.three-b { width:100%; }
	.menu-seitai .base-wrap { padding-top:3rem; }
	.menu-seitai .three-b { margin-top:0; margin-bottom:2rem; }
	.menu-seitai .pic-frame { width:100%; margin:0 auto 2rem; }
	.menu-seitai .menu-tit { width:250px; display:block; margin:0 auto 1.5rem; padding:1.2rem 1.6rem; text-align:center; }
	.pt-head { width:100%; height:300px; }
	.p-inner { width:280px; left:1rem; }
	.pt-ft { font-size:4.5rem; }
	.pt-txt { font-size:2rem; line-height:1.6; }
	.pt-seitai .ft-l { line-height:1.6 !important }
	.pt-seitai .pic-frame, .h-voice .pic-frame { max-width:280px; }
	.pt-seitai .pt-detail { min-height:auto; padding:7rem 2.2rem 5rem; }
	
	.h-voicelist { width:100%; }
	.h-voicelist .pic-frame img { width:120px; height:120px; margin-left:3rem; }
	.voice-detail { width:100%; min-height:200px; padding:8rem 2rem 1rem 2rem; margin:-25px 0 0 0; }
	.voice-detail .ft-m { font-size:2.08rem !important; }
	.news-half { width:100%; }
	.h-news .cap-s { font-size:4.2rem; }
	.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; }
	.h-recom .base-wrap { background:#e1efdf; }
	.reference { justify-content:space-evenly; padding-bottom:5rem; margin-bottom:5rem; }
	.recom-salon { width:100%; }
	.recom-salon .recom-detail { width:50%; margin-left:3%; font-size:1.5rem !important; line-height:1.6 !important; }
	.prf-inner { width:100% !important; }
	.prf-wrap .prf-pic { width:100%; }
	/*** SALON ***/
	.salon-gallery { width:95%; height:auto; position:unset; }
	.salon-gallery img { display:block; margin:0 auto 1.2rem; }
	.salon-gallery .pic01 { position:unset; width:100%; height:100%; }
	.salon-gallery .pic02 { position:unset; width:80%; height:80%; } 
	.salon-gallery .pic03 { position:unset; width:80%; height:80%; }
	.salon-gallery .pic04 { position:unset; width:80%; height:80%; }
	.salon-gallery .pic05 { position:unset; width:70%; height:70%; }
	.omoi-wrap { margin:6rem 0 45rem; display:block; clear:both; content:"";  }
	.omoi-wrap:before { position:unset; width:250px; height:286px; }
	.omoi-wrap:after { position:unset; width:250px; height:271px; float:right; }
	.salon-info .pic-frame { max-width:260px; }
	.salon-info .pic-frame img { width:100%; }
	.salon-info .salon-detail { width:90%; margin:0 auto; }
	.salon-detail .about-dt { width:100%; font-size:1.8rem; margin-bottom:1rem; }
	.salon-detail .about-dd { width:100%; font-size:2.0rem; line-height:2.3; }
	.salon-story .sty-inner { background:#e1efdf; }
	.link-sns { width:70%; margin:0 auto; }
	.link-sns a { padding:2rem 1rem; font-size:100%; }
	.pic-frame .msg-pic { width:300px; margin-left:20%; }
	.prf-wrap .prfimg { width:180px; height:auto; margin-top:0; }
	/*** MENU ***/
	.menu-outer { padding-bottom:10rem; }
	.menu-message .base-wrap { width:95%; margin:0 auto; }
	.menu-message .pic-frame { max-width:300px; margin:0; }
	.sbnav-head .sbnav-inner { display:flex; flex-wrap:wrap; }
	.sbnav-head .three-b { width:auto; }
	.sbnav-li a { width:180px; min-width:auto; height:70px; border-radius:12px; -webkit-border-radius:12px; margin-bottom:1rem; letter-spacing:initial; }
	.sbnav-li .inner-tit { height:45px; display:grid; place-items:center; font-size:1.8rem; line-height:1.2; margin:0; padding:0; }
	.triangle { display:grid; place-items:center; height:10px; }
	.triangle::after { position:unset; }
	.menu-page .menu-tit { width:320px; }
	.menu-page .menu-tit .inner-tit { font-size:3rem; }
	.menu-page .tiny-wrap { width:90%; margin:0 auto; background:#e1efdf; }
	.menu-outer .menu-main, .menu-outer .pic-frame img { width:100%; }
	.worry-wrap { margin-top:20rem; }
	.worry-head { width:300px; height:135px; margin:-45rem auto 7rem; }
	.worry-head .ft-m { font-size:2rem !important; padding-top:2.8rem; }
	.worry-list { font-size:1.8rem; line-height:1.4; }
	.worry-list .all-flex { font-size:1.8rem; margin-bottom:2rem; }
	.menu-worry .pic-frame { width:60%; margin:3rem auto 0; }
	.price-table .price-th, .price-table .price-td { width:100%; display:inline-block; }
	.price-table .price-tr02 { margin-bottom:3rem; }
	.worry-list .mk-br { background:unset; }
	.wry-msg { width:95%; padding:2rem 1.5rem; }
	/*** FAQ ***/
	.salon-faq .tiny-wrap { width:90%; margin:0 auto; }

	/*** 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:2rem !important; line-height:2.4 !important; }
	.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-voicelist article { width:90%; margin:1.6rem auto 3rem; padding:0; }
	.p-news 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:2rem; line-height:1.8; margin:1.5rem 0; } 
	.p-news .entry-content p { font-size:2.2rem !important; line-height:2; }
	.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; }
}