@charset "UTF-8";
/*	cmn-color
------------------------------------ */
/*	transition,hover
------------------------------------ */
/*	media-screen
------------------------------------ */
/*	font
------------------------------------ */
@font-face {
  font-family: "Rochester-Regular";
  src: url("../fonts/Rochester-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Regular";
  src: url("../fonts/NotoSansCJKjp-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Medium";
  src: url("../fonts/NotoSansCJKjp-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Bold";
  src: url("../fonts/NotoSansCJKjp-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "NotoSansCJKjp-Black";
  src: url("../fonts/NotoSansCJKjp-Black.woff2") format("woff2");
  font-display: swap;
}
/*	layout
------------------------------------ */
/* animation
例）animation: fadedown .5s ease-in-out;
遅延）animation-delay: 0.5s;
最後の状態維持）animation-fill-mode: forwards;
------------------------------------ */
@keyframes fadedown {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(-5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeup {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  50% {
    transform: translateY(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes faderight {
  0% {
    transform: translateX(10px);
    opacity: 0;
  }
  50% {
    transform: translateX(5px);
    opacity: 0.5;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes grad-fill {
  from {
    background-size: 0% 100%;
  }
  to {
    background-size: 100% 100%;
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.95);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes floatY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(var(--amp));
  }
}
/*	font-size  cmn
------------------------------------ */
/*	com parts  PC
------------------------------------ */
.sns-none {
  display: none !important;
}

.over {
  overflow: hidden;
}

.com-ib {
  display: inline-block;
}

.spxs-only {
  display: none;
}
@media screen and (max-width: 390px) {
  .spxs-only {
    display: inherit;
  }
}

.f26 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .f26 {
    font-size: 1.5rem;
  }
}

.pre {
  white-space: pre-line;
}

.nowrap {
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .nowrap {
    white-space: nowrap;
  }
}
.no-sb {
  margin: 50px auto 0;
}

.anchor-mp {
  margin: -90px auto 0;
  padding-top: 90px;
}

.com-txt-box p:nth-of-type(n+2) {
  margin: 25px 0 0;
}

.clamp1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.clamp2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.clamp3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (min-width: 768px) {
  .com-pd {
    padding: 120px 0;
  }
}

/*  共通パーツ
------------------------------------ */
.com-box {
  background: #fef2da;
  border-radius: 10px;
  border: 2px solid #fdd23c;
}

.com-ba {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.com-ba-item {
  width: 100%;
  border-radius: 10px 10px 30px 10px;
  padding: 45px 30px 40px;
  border: 3px solid #fdeb3c;
  background: #fff;
  position: relative;
}
.com-ba-item::before {
  content: "";
  width: 35px;
  height: 28px;
  background: url(../img/top/pera.png) no-repeat center/contain;
  position: absolute;
  right: -2px;
  bottom: -3px;
}
.com-ba-item::after {
  content: "";
  width: 24px;
  height: 30px;
  margin: auto;
  background: url(../img/top/beforeafter-pin.png) no-repeat center top/contain;
  position: absolute;
  left: 0;
  right: 0;
  top: -6px;
}
@media screen and (min-width: 768px) {
  .com-ba-item {
    max-width: 530px;
  }
  .com-ba-item:nth-of-type(n+3) {
    margin-top: 20px;
  }
}
.com-ba-link {
  display: block;
  padding: 45px 30px 40px;
}
.com-ba-img {
  display: flex;
  justify-content: space-between;
  background: url(../img/top/beforeafter-arw.png) no-repeat center/7.3%;
}
.com-ba-img-item {
  width: 44.7%;
  height: 0;
  padding-top: 64.2%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.com-ba-txt {
  width: 82px;
  height: 24px;
  margin: auto;
  text-align: center;
  border-radius: 5px;
  font-family: "Rochester-Regular", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 24px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
}
@media screen and (max-width: 768px) {
  .com-ba-txt {
    font-size: 1.5rem;
  }
}
.com-ba-txt.before {
  background: #654a14;
  color: #fff;
}
.com-ba-txt.after {
  background-color: #fff;
  color: #654a14;
}
.com-ba-ttl {
  margin: 20px auto 0;
  text-align: center;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .com-ba-ttl {
    font-size: 1.5rem;
  }
}
.com-ba-message {
  margin: 30px auto 0;
  white-space: pre-line;
}

.com-plan {
  padding: 33px 56px 3px 0;
  border: 10px solid #fdeb3c;
  border-radius: 20px;
  background: url(../img/top/com-plan-stripe.png) no-repeat center #fff;
  position: relative;
  text-align: center;
}
.com-plan-ttl {
  margin: auto;
  position: absolute;
  top: -72px;
  left: 0;
  right: 0;
}
.com-plan-off {
  position: absolute;
  left: 22px;
  top: 80px;
}
.com-plan-img {
  position: absolute;
  top: -27px;
  right: -50px;
}

.com-sea {
  position: relative;
}
.com-sea::before {
  content: "";
  width: 164px;
  height: 161px;
  background: url(../img/top/com-sea-ico.png) no-repeat left top/contain;
  position: absolute;
  left: -185px;
  top: -32px;
}
.com-sea-r::after {
  content: "";
  width: 124px;
  height: 123px;
  background: url(../img/top/com-sea-ico-r.png) no-repeat right bottom/contain;
  position: absolute;
  bottom: 211px;
  right: -62px;
}
@media screen and (min-width: 768px) and (max-width: 1247px) {
  .com-sea-r::after {
    right: 0;
  }
}

.marker {
  background: linear-gradient(transparent 70%, #fdeb3c 70%);
}

.com-bg01 {
  background-color: #fef2da;
  position: relative;
}
.com-bg01::before {
  content: "";
  display: block;
  width: 100%;
  height: 183px;
  margin: auto;
  background: url(../img/top/com-wave.png) no-repeat center top/cover;
  position: absolute;
  top: -183px;
  left: 0;
  right: 0;
  z-index: -1;
}
.com-bg02 {
  background: url(../img/top/menu-bg.jpg) no-repeat center top/cover;
}

.com-check-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.com-check li {
  padding-left: 40px;
  background: url(../img/top/com-check-green.png) no-repeat left 2px;
  font-family: "NotoSansCJKjp-Medium", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .com-check li {
    font-size: 1.5rem;
  }
}
.com-check li:nth-of-type(n+2) {
  margin-top: 5px;
}
.com-check02 li {
  background-image: url(../img/top/com-check-pink.png);
}

.com-mail-btn {
  display: flex;
  width: 100%;
  max-width: 386px;
  height: 60px;
  padding-left: 45px;
  border: 2px solid #f790ad;
  border-radius: 999px;
  text-align: center;
  background: url(../img/top/info-mail.png) no-repeat 36px center #f790ad;
  color: #fff;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .com-mail-btn {
    font-size: 1.5rem;
  }
}
.com-mail-net {
  background-color: #f3b837;
  border-color: #f3b837;
  background-image: url(../img/top/contact-net.png);
  background-position: 63px center;
  background-repeat: no-repeat;
}

.news-post {
  width: 100%;
  max-width: 700px;
}
.news-post-item {
  width: 100%;
  border-bottom: 1px solid #ccc1aa;
}
.news-post-item:first-of-type a {
  padding-top: 0;
}
.news-post-link {
  display: block;
  padding: 31px 0 25px;
}
.news-post-time {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.9;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .news-post-time {
    font-size: 1.5rem;
  }
}
.news-post-tag {
  display: flex;
  flex-wrap: wrap;
}
.news-post-tag-txt {
  margin: 0 10px 10px;
  padding: 5px 11px;
  background: #654a14;
  text-align: center;
  border-radius: 999px;
  font-family: "NotoSansCJKjp-Medium", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .news-post-tag-txt {
    font-size: 1.5rem;
  }
}
.news-post-ttl {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news-post-ttl {
    font-size: 1.5rem;
  }
}

.com-tag {
  display: flex;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto 0;
  flex-wrap: wrap;
}
.com-tag-item {
  width: 100%;
  max-width: 510px;
}
@media screen and (min-width: 768px) {
  .com-tag-item:nth-of-type(2n) {
    margin-left: 60px;
  }
  .com-tag-item:nth-of-type(n+3) {
    margin-top: 60px;
  }
}
.com-tag-link {
  display: flex;
  width: 100%;
  max-width: none;
  height: auto;
  background-image: url(../img/arrow-bottom.png);
  background-position: calc(100% - 25px) 50%;
  padding: 13px 53px;
  align-items: center;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .com-tag-link:hover {
    background-position: calc(100% - 25px) 60%;
  }
}

/* =========================================

  main layout  all

========================================= */
/* top-reco  PC
------------------------------------ */
#top-reco .reco-list {
  margin: 50px auto 0;
}
#top-reco .reco-list-item {
  width: 100%;
  max-width: 510px;
  background: #fff;
}
#top-reco .reco-list-ttl {
  height: 80px;
  text-align: center;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 3rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top-reco .reco-list-ttl {
    font-size: 1.5rem;
  }
}
#top-reco .reco-list-ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
}
#top-reco .reco-list-ttl01 {
  background: #92e448;
}
#top-reco .reco-list-ttl01::before {
  width: 159px;
  height: 183px;
  background: url(../img/top/reco-illu01.png) no-repeat left bottom/contain;
  left: -12px;
}
#top-reco .reco-list-ttl02 {
  background: #f790ad;
}
#top-reco .reco-list-ttl02::before {
  width: 139px;
  height: 184px;
  background: url(../img/top/reco-illu02.png) no-repeat right bottom/contain;
  right: -14px;
}
#top-reco .reco-list-check {
  padding: 35px 50px 30px 60px;
}

/* top-concept  PC
------------------------------------ */
@media screen and (min-width: 768px) {
  #top-concept .concept-con {
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1247px) {
  #top-concept .concept-con {
    max-width: 495px;
  }
}
#top-concept .concept-ttl {
  text-align: left;
}
#top-concept .concept-img {
  margin-top: -30px;
  margin-right: -63px;
}
@media screen and (max-width: 1247px) {
  #top-concept .concept-img {
    margin-right: 0;
  }
}
#top-concept .concept-txt-box {
  margin-top: 46px;
}
#top-concept .concept-btn {
  margin: 70px auto 0;
}

/* top-menu  PC
------------------------------------ */
#top-menu .menu-plan {
  margin: 70px auto 0;
}
#top-menu .menu-flower {
  position: relative;
}
#top-menu .menu-flower::before {
  content: "";
  width: 90px;
  height: 85px;
  margin: auto;
  background: url(../img/top/menu-flower.png) no-repeat center/cover;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
}
#top-menu .menu-list {
  margin: 93px auto 0;
}
#top-menu .menu-list-item {
  border-radius: 0 0 10px 10px;
  background: #fff9ed;
}
#top-menu .menu-list-img img {
  border-radius: 10px 10px 0 0;
}
#top-menu .menu-list-ttl {
  padding: 25px 0;
  text-align: center;
  font-family: "NotoSansCJKjp-Medium", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #aa8d52;
}
@media screen and (max-width: 768px) {
  #top-menu .menu-list-ttl {
    font-size: 1.5rem;
  }
}
#top-menu .menu-list-ttl .lg {
  color: #654a14;
  font-family: "NotoSansCJKjp-Black", sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #top-menu .menu-list-ttl .lg {
    font-size: 1.5rem;
  }
}
#top-menu .menu-box {
  margin: 60px auto 0;
  padding: 40px 35px 35px;
  background: #fff9ed;
  border-radius: 10px;
}
#top-menu .menu-box-ttl {
  text-align: center;
  font-family: "NotoSansCJKjp-Black", sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #top-menu .menu-box-ttl {
    font-size: 1.5rem;
  }
}
#top-menu .menu-box-ttl .sm {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: #aa8d52;
}
@media screen and (max-width: 768px) {
  #top-menu .menu-box-ttl .sm {
    font-size: 1.5rem;
  }
}
#top-menu .menu-box-list {
  margin: 30px auto 0;
  padding: 35px 0;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
}
#top-menu .menu-box-list li {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #top-menu .menu-box-list li {
    font-size: 1.5rem;
  }
}
#top-menu .menu-box-list li:nth-of-type(n+2) {
  margin-left: 89px;
}
#top-menu .menu-btn {
  margin: 72px auto 0;
}

/* top-ba  PC
------------------------------------ */
#top-ba .ba-bg {
  background: url(../img/top/beforeafter-ico-l.png) no-repeat 24px -45px, url(../img/top/beforeafter-ico-r.png) no-repeat calc(100% - 24px) -45px, url(../img/top/beforeafter-bg.png) repeat center;
}
#top-ba .ba-list {
  margin: 50px auto 0;
}
#top-ba .ba-btn {
  margin: 60px auto 0;
}

/* com-contact  PC
------------------------------------ */
.com-contact .contact-box {
  padding: 72px 0;
  border: 5px solid #fdeb3c;
  border-radius: 20px;
  background: url(../img/top/contact-bg.png) #fff;
  position: relative;
}
.com-contact .contact-box::before, .com-contact .contact-box::after {
  content: "";
  position: absolute;
}
.com-contact .contact-box::before {
  width: 188px;
  height: 155px;
  background: url(../img/top/contact-l.png) no-repeat left top/contain;
  left: -30px;
  top: -36px;
}
.com-contact .contact-box::after {
  width: 177px;
  height: 146px;
  background: url(../img/top/contact-r.png) no-repeat left top/contain;
  right: -56px;
  bottom: -58px;
}
.com-contact .contact-box-rt {
  position: absolute;
  top: -35px;
  right: -12px;
}
.com-contact .contact-tel {
  display: flex;
  margin: 56px auto 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.com-contact .contact-tel a:first-of-type {
  background: url(../img/top/contact-tel.png) no-repeat left center;
}
.com-contact .contact-tel a:last-of-type {
  position: relative;
}
.com-contact .contact-tel a:last-of-type::before {
  content: " / ";
  position: absolute;
  top: -2px;
  left: 15px;
}
.com-contact .contact-tel-link {
  padding-left: 47px;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 4rem;
  letter-spacing: 0.05em;
  color: #654a14;
}
@media screen and (max-width: 768px) {
  .com-contact .contact-tel-link {
    font-size: 2rem;
  }
}
.com-contact .contact-tel-note {
  display: block;
  margin: 10px auto 0;
  text-align: center;
  line-height: 1;
}
.com-contact .contact-dl {
  margin: 22px auto 0;
}
.com-contact .contact-dl div:nth-of-type(n+2) {
  margin-left: 20px;
  position: relative;
}
.com-contact .contact-dl div:nth-of-type(n+2)::before {
  content: "/";
  position: absolute;
  left: -11px;
  top: 0;
}
.com-contact .contact-dl dt, .com-contact .contact-dl dd {
  font-family: "NotoSansCJKjp-Medium", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .com-contact .contact-dl dt, .com-contact .contact-dl dd {
    font-size: 1.5rem;
  }
}
.com-contact .contact-list {
  display: flex;
  margin: 63px auto 0;
  justify-content: center;
  align-items: center;
}
.com-contact .contact-list-item:nth-of-type(n+2) {
  margin-left: 30px;
}
@media screen and (min-width: 768px) {
  .com-contact .contact-list-item-btn {
    width: 330px;
  }
}
.com-contact .contact-list-btn {
  background-position: 50px center;
}
.com-contact .contact-sns a:nth-of-type(n+2) {
  margin-left: 30px;
}

/* top-blog  PC
------------------------------------ */
#top-blog .blog-inner {
  padding: 21px 0 147px;
}

/* =========================================

  sub layout  all

========================================= */
/* concept  PC
------------------------------------ */
#concept .concept-inner::before {
  top: 203px;
  left: -59px;
}
#concept .concept-flx {
  margin: 44px auto 0;
}
@media screen and (min-width: 768px) {
  #concept .concept-flx-img {
    margin-right: 60px;
    flex-shrink: 0;
  }
}
#concept .concept-btn {
  margin: 80px auto 0;
}
#concept .concept-box {
  margin: 80px auto 0;
  padding: 35px 45px 35px 35px;
  border: 4px solid #92e448;
  border-radius: 10px;
  background: url(../img/top/contact-bg.png) #fff;
}
#concept .concept-box-img {
  margin-right: 45px;
  flex-shrink: 0;
}
#concept .concept-box-con {
  padding-top: 17px;
}
#concept .concept-box-con-ttl {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #concept .concept-box-con-ttl {
    font-size: 1.5rem;
  }
}
#concept .concept-box-con-ttl .sm {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #concept .concept-box-con-ttl .sm {
    font-size: 1.5rem;
  }
}
#concept .concept-box-con-ttl-sub {
  margin-top: 15px;
}
#concept .concept-box-con-ttl-sub li {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: #f3b837;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #concept .concept-box-con-ttl-sub li {
    font-size: 1.5rem;
  }
}
#concept .concept-box-con-ttl-sub li:nth-of-type(n+2) {
  margin-top: 5px;
}
#concept .concept-box-con-list {
  margin-top: 15px;
}
#concept .concept-box-con-list li {
  padding-left: 18px;
  font-family: "NotoSansCJKjp-Regular", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  position: relative;
}
@media screen and (max-width: 768px) {
  #concept .concept-box-con-list li {
    font-size: 1.5rem;
  }
}
#concept .concept-box-con-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}
#concept .concept-box-check {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  #concept .concept-box-check li {
    padding-left: 35px;
    background-position: left 5px;
    font-size: 1.7rem;
    background-size: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  #concept .concept-box-check li {
    font-size: 1.5rem;
  }
}
#concept .concept-box-txt {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  #concept .point::before {
    top: -104px;
  }
}
#concept .point-list {
  display: flex;
  margin: 78px auto 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
#concept .point-list-item {
  width: 100%;
  padding: 45px 30px 30px;
  background: #fff9ed;
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 768px) {
  #concept .point-list-item {
    max-width: 510px;
  }
  #concept .point-list-item:nth-of-type(n+3) {
    margin-top: 65px;
  }
}
#concept .point-list-num {
  width: 40px;
  height: 40px;
  background: #fdd23c;
  border-radius: 50%;
  margin: auto;
  text-align: center;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 40px;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: -17px;
}
@media screen and (max-width: 768px) {
  #concept .point-list-num {
    font-size: 1.5rem;
  }
}
#concept .point-list-ttl {
  text-align: center;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #concept .point-list-ttl {
    font-size: 1.5rem;
  }
}
#concept .point-list-ico {
  display: flex;
  height: 243px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
#concept .point-list-txt {
  line-height: 1.88;
}

/* feature  PC
------------------------------------ */
#feature .about-flx {
  margin: 50px auto 0;
}
@media screen and (min-width: 768px) {
  #feature .about-img {
    margin-right: 18px;
    flex-shrink: 0;
  }
}
#feature .about-list {
  margin: 13px auto 0;
}
#feature .about-list .about-list-item:nth-of-type(n+2) {
  margin: 35px auto 0;
}
#feature .about-list-item {
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
}
#feature .about-list-ttl {
  height: 80px;
  text-align: center;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 80px;
  color: #f790ad;
}
@media screen and (max-width: 768px) {
  #feature .about-list-ttl {
    font-size: 1.5rem;
  }
}
#feature .about-list-ttl01 {
  background-color: #ffe6ed;
}
#feature .about-list-ttl02 {
  background-color: #e5ffce;
  color: #66bf16;
}
#feature .about-check {
  padding: 35px 0 40px 45px;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  #feature .about-check ul:nth-of-type(1) {
    width: 488px;
  }
}
#feature .about-btn {
  margin: 50px auto 0;
}
/* menu  PC
------------------------------------ */
#menu .menu-plan {
  margin: 120px auto 0;
}
#menu .menu-list {
  margin: 97px auto 0;
}
#menu .menu-list-item:nth-of-type(n+2) {
  margin: 65px auto 0;
}
#menu .menu-list-box {
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
#menu .menu-list-table {
  width: 100%;
}
#menu .menu-list-table tr:nth-of-type(n+2) {
  border-top: 1px solid #ccc1aa;
}
#menu .menu-list-table th, #menu .menu-list-table td {
  padding: 30px 55px;
  font-family: "NotoSansCJKjp-Medium", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  white-space: pre-line;
}
@media screen and (max-width: 768px) {
  #menu .menu-list-table th, #menu .menu-list-table td {
    font-size: 1.5rem;
  }
}
#menu .menu-list-table td {
  text-align: right;
}
#menu .menu-list-note {
  margin: 30px auto 0;
  text-align: right;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #menu .menu-list-note {
    font-size: 1.5rem;
  }
}
#menu .menu-message {
  margin: 65px auto 0;
  padding: 35px;
  text-align: center;
  position: relative;
}
#menu .menu-message::before, #menu .menu-message::after {
  content: "";
  position: absolute;
}
#menu .menu-message::before {
  width: 88px;
  height: 110px;
  background: url(../img/menu/menu-box-illu-l.png) no-repeat left top/contain;
  top: -19px;
  left: -69px;
}
#menu .menu-message::after {
  width: 145px;
  height: 150px;
  background: url(../img/menu/menu-box-illu-r.png) no-repeat right bottom/contain;
  right: -48px;
  bottom: -38px;
}
#menu .menu-message-txt {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.66;
}
@media screen and (max-width: 768px) {
  #menu .menu-message-txt {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #menu .item::before {
    top: -91px;
  }
}
#menu .item-list {
  margin: 23px auto 0;
}
#menu .item-list-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
#menu .item-list-item:nth-of-type(n+2) {
  margin-top: 49px;
}
#menu .item-list-wrap {
  padding: 30px 40px 37px;
}
#menu .item-list-ttl-sub {
  text-align: center;
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  color: #f3b837;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #menu .item-list-ttl-sub {
    font-size: 1.5rem;
  }
}
#menu .item-list-flx {
  margin: 45px auto 0;
}
@media screen and (min-width: 768px) {
  #menu .item-list-img {
    margin-right: 37px;
    flex-shrink: 0;
  }
}
#menu .item-list-txt {
  margin-top: 22px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  #menu .item-list-txt {
    font-size: 1.5rem;
  }
}
#menu .item-list-table {
  margin: 38px auto 0;
  background: #fff;
}
#menu .item-list-table tr:nth-of-type(n+2) {
  border-top: 1px solid #ccc1aa;
}
#menu .item-list-table tr:nth-of-type(n+2) th {
  padding-left: 44px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #menu .item-list-table tr:nth-of-type(n+2) th {
    padding-left: 20px;
  }
}
#menu .item-list-table tr:last-of-type .ac {
  border-bottom: 2px solid #f790ad;
}
#menu .item-list-table tr th:nth-of-type(n+2) {
  border-left: 1px solid #ccc1aa;
}
#menu .item-list-table th, #menu .item-list-table td {
  padding: 25px 0;
  text-align: center;
  font-family: "NotoSansCJKjp-Medium", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  #menu .item-list-table th, #menu .item-list-table td {
    font-size: 1.5rem;
  }
}
#menu .item-list-table th {
  width: 176px;
  background: #fff9ed;
}
@media screen and (max-width: 767px) {
  #menu .item-list-table th {
    width: 124px;
  }
}
#menu .item-list-table th.ac {
  width: 310px;
  background-color: #f790ad;
  border-left: 2px solid #f790ad;
  border-right: 2px solid #f790ad;
  font-size: 1.8rem;
  font-family: "NotoSansCJKjp-Black", sans-serif;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #menu .item-list-table th.ac {
    width: 273px;
  }
}
#menu .item-list-table td {
  width: 253px;
  border-left: 1px solid #ccc1aa;
}
@media screen and (max-width: 767px) {
  #menu .item-list-table td {
    width: 167px;
  }
}
#menu .item-list-table td.ac {
  border-left: 2px solid #f790ad;
  border-right: 2px solid #f790ad;
  font-size: 1.8rem;
  font-family: "NotoSansCJKjp-Black", sans-serif;
  color: #f790ad;
}
#menu .item-price {
  margin: 40px auto 0;
  padding: 32px 20px;
  text-align: right;
  border-width: 2px;
}
#menu .item-price-txt {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  #menu .item-price-txt {
    font-size: 1.5rem;
  }
}

/* case  PC
------------------------------------ */
#case .case-list {
  margin: 40px auto 0;
}
#case li.com-ba-item {
  padding: 0;
}
#case .detail .com-ba-item {
  max-width: 1080px;
  margin: auto;
}
#case .detail .com-ba-ttl {
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  #case .detail .com-ba-ttl {
    font-size: 1.5rem;
  }
}
#case .detail .com-ba-img {
  justify-content: center;
  background: none;
}
#case .detail .com-ba-img-item {
  width: auto;
  max-width: 45%;
  height: auto;
  padding-top: 0;
  overflow: inherit;
  border-radius: 0;
}
#case .detail .com-ba-img-item:nth-of-type(n+2) {
  margin-left: 60px;
  position: relative;
}
#case .detail .com-ba-img-item:nth-of-type(n+2)::before {
  content: "";
  width: 30px;
  height: 52px;
  background: url(../img/top/beforeafter-arw.png) no-repeat center/contain;
  position: absolute;
  left: -45px;
  top: 50%;
  transform: translate(0, -50%);
}
#case .detail .com-ba-img .fit {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  position: static;
}

/* salon  PC
------------------------------------ */
#salon .greeting-inner::before {
  top: 203px;
  left: -58px;
}
#salon .greeting-flx {
  margin: 45px auto 0;
}
@media screen and (min-width: 768px) {
  #salon .greeting-img {
    margin-right: 13px;
    flex-shrink: 0;
  }
}
#salon .greeting .lg {
  font-family: "NotoSansCJKjp-Bold", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  #salon .greeting .lg {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  #salon .information::before {
    top: -110px;
  }
}
#salon .information-wrap {
  margin: 46px auto 0;
  position: relative;
  z-index: 1;
}
#salon .information-box {
  padding: 30px 44px;
  background: #fff;
  border-radius: 10px;
}
#salon .information-box-ico {
  position: absolute;
  left: -78px;
  bottom: -81px;
  z-index: -1;
}
#salon .information-note {
  display: inline-block;
  padding-left: 18px;
  font-size: 1.6rem;
  line-height: 1.875;
  position: relative;
}
@media screen and (max-width: 768px) {
  #salon .information-note {
    font-size: 1.5rem;
  }
}
#salon .information-note .ico {
  position: absolute;
  left: 0;
  top: 0;
}
#salon .information-note-wrap {
  margin-top: 25px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  #salon .information-note-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
#salon .access-map {
  margin: 34px auto 0;
}
#salon .access-box {
  margin: 37px auto 0;
}

/* contact  PC
------------------------------------ */
#contact .contact-list {
  margin: 27px auto 0;
}
@media screen and (min-width: 768px) {
  #contact .mail::before {
    top: -104px;
  }
}
#contact .form-list {
  margin: 40px auto 0;
}

/* blog  PC
------------------------------------ */
#news .com-tag-item {
  max-width: 320px;
}
@media screen and (min-width: 768px) {
  #news .com-tag-item {
    margin: 0;
  }
  #news .com-tag-item:not(:nth-of-type(3n-2)) {
    margin-left: 60px;
  }
  #news .com-tag-item:nth-of-type(n+4) {
    margin-top: 25pc;
  }
}
#news .news-post {
  max-width: none;
}
#news .news-post-flx {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid #ccc1aa;
}
#news .com-news-img img {
  border-radius: 10px;
}
#news .com-ttl02 {
  padding: 10px 14px;
  border-radius: 10px;
  text-align: left;
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  #news .com-ttl02 {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=all.css.map */