@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Homemade+Apple&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/*
font-family: "Noto Sans JP", sans-serif;
font-family: "Noto Serif JP", serif;
font-family: "Homemade Apple", cursive;
*/

/* ---------------------------------------------------------------------------
//  base
--------------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
*::before,
*::after { box-sizing: border-box; }
html, body { width: 100%; height: 100%; }
img, iframe { border: 0; vertical-align: bottom; }
ul, ol { list-style-type: none; }
a { text-decoration: none; }
mark { font-weight: bold; color: inherit; background-color: transparent; }
em { font-style: normal; }
address { font-style: normal; }
table { border-collapse: collapse; border-spacing: 0; }
input, select { vertical-align: baseline; }

.cf::after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }

:root {
  --fz12: 1.2rem;
  --fz14: 1.4rem;
  --fz15: 1.5rem;
  --fz16: 1.6rem;
  --fz18: 1.8rem;
  --fz20: 2rem;
  --fz22: 2.2rem;
  --fz26: 2.6rem;
  --fz28: 2.8rem;
  --fz32: 3.2rem;
  --fz38: 3.8rem;
  --pink: #EB4078;
}

/* ---------------------------------------------------------------------------
//  all
--------------------------------------------------------------------------- */
html { font-size: calc(100vw / 375 * 10); }

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: var(--fz16);
  color: #333;
  line-height: 1.6;
  background: #FFF;
}
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.4; }

a { transition: .3s; color: inherit; }
@media (min-width: 768px) {
  a:hover { opacity: .7; }
}
.preload a { transition: none !important; }

.wrap { margin: 0 auto; padding-top: 6rem; overflow: hidden;  }
.inner { width: 100%; padding-left: 1.8rem; padding-right: 1.8rem;position: relative; }

ul.indent li { text-indent: -1em; padding-left: 1em; }
ul.dot li::before { content: "・"; }
ol.num { counter-reset: li; }
ol.num > li { text-indent: -1.2em; padding-left: 1.2em; }
ol.num > li:before { content: counter(li) "."; counter-increment: li; padding-right: 5px; }
ol.brackets { counter-reset: li; }
ol.brackets > li { text-indent: -1.55em; padding-left: 1.55em; }
ol.brackets > li:nth-child(n+10) { text-indent: -2.1em; padding-left: 2.1em; }
ol.brackets > li:before { content: "(" counter(li) ")"; counter-increment: li; padding-right: 5px; }
hr { display: block; height: 1px; border: none; border-top: 1px solid rgba(255,255,255,0.2); margin: 1em 0; }
img { width: 100%; height: auto; }
img.cover { width: 100%; height: 100%; object-fit: cover; }
img.contain { width: 100%; height: 100%; object-fit: contain; }
.text-overflow { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; }
.sml { font-size: 80%; }
.t-center { text-align: center; }
.t-right { text-align: right; }
.pc-center { text-align: center; }
.bold { font-weight: 700; }

.flex { display: flex; justify-content: space-between; }
.flex.jstart { justify-content: flex-start; }
.flex.jend { justify-content: flex-end; }
.flex.jcenter { justify-content: center; }
.flex.fwrap { flex-wrap: wrap; }
.flex.fwrap.bottom > * { margin-bottom: 20px; }
.flex.istart { align-items: flex-start; }
.flex.iend { align-items: flex-end; }
.flex.icenter { align-items: center; }
.flex.half > * { width: 48%; }
.flex.half50 > * { width: 50%; }
.flex.third > * { width: 32%; }
.flex.quarter > * { width: 24%; }
.flex.reverse { flex-flow: row-reverse; }
.flex.third.fwrap::after { content: ""; width: 32%; display: block; }
.flex.quarter.fwrap::before { content: ""; width: 24%; display: block; order: 1; }
.flex.quarter.fwrap::after { content: ""; width: 24%; display: block; }

a.scale { overflow: hidden; }
a.scale img { transition: .3s; }
@media (min-width: 768px) {
  a.scale:hover img { transform: scale(1.05); }
}

body.fixed { position: fixed; width: 100%; height: 100%; }

section { position: relative; }

h2.default {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz26);
  font-weight: 600;
  text-align: center;
  color: var(--pink);
  margin-bottom: .3rem;
}
.en {
  font-family: "Homemade Apple", cursive;
  font-size: var(--fz15);
  font-weight: 400;
  text-align: center;
  margin-bottom: 3rem;
}
section.default {
  padding: 5rem 0 4rem;
}

/* ---------------------------------------------------------------------------
//  header
--------------------------------------------------------------------------- */
header {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  height: 6rem;
  background: #fff;
  box-shadow: .2rem .2rem .4rem rgba(51,51,51,0.1);
}
header .head {
  height: 100%;
}
header .logo {
  padding-left: 2rem;
  gap: 1rem;
}
header .logo .neko {
  width: 2.7rem;
  margin-right: .1rem;
}
header .logo .text {
  font-size: var(--1.5rem);
}


header .trigger {
  display: block;
  width: 5rem;
  height: 5rem;
  background: url(../img/menu-on.png) center center / 2.8rem no-repeat;
}
header .trigger.active {
  background: url(../img/menu-off.png) center center / 2.8rem no-repeat;
}

.sp-nav {
  display: none;
  position: absolute;
  top: 6rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 6rem);
  background: rgba(255,255,255,0.8);
}
.sp-nav-scroll {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.sp-nav nav {
  padding: 3rem;
}
.sp-nav nav li {
  font-size: var(--fz22);
  text-align: center;
  margin-bottom: 1rem;
}
.sp-nav nav .nav-btns {
  margin: 3rem auto 0;
}
.sp-nav nav .nav-btns a {
  width: 100%;
}
.anchor-link {
  margin-top: -6rem;
  padding-top: 6rem;
}

/* ---------------------------------------------------------------------------
//  mv
--------------------------------------------------------------------------- */
.mv {
  background: url(../img/mv.png) center bottom 3rem / cover no-repeat #fff;
  height: calc(100vh - 6rem);
  padding: 2rem 0 3rem;
}
.mv::after {
  content: "";
  display: block;
  background: url(../img/mv-scroll.png) center center / contain no-repeat;
  width: 1.7rem;
  height: 9.4rem;
  position: absolute;
  left: calc(50% - .85rem);
  bottom: 0;
}
.mv .copy {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz22);
  font-weight: 600;
  text-align: center;
  color: var(--pink);
  margin-bottom: 3rem;
}
.mv h1 {
  font-size: var(--fz38);
  text-shadow: .2rem .2rem .5rem rgba(255,255,255,.8);
}
.mv h1 span {
  font-size: var(--fz32);
}

/* ---------------------------------------------------------------------------
//  cta
--------------------------------------------------------------------------- */
.cta {
  background: url(../img/cta-bg.png) center center / cover no-repeat;
  padding: 3rem 0;
}
.cta h2 {
  width: 100%;
  font-size: var(--fz26);
  color: var(--pink);
  line-height: 1.1;
  text-align: center;
  padding-top: .6rem;
  position: relative;
  margin-bottom: 2rem;
}
.cta h2 span {
  font-size: var(--fz14);
}
.cta h2::before {
  content: "";
  display: block;
  background: url(../img/cta-left.png) center center / contain no-repeat;
  width: 3rem;
  height: 7.1rem;
  position: absolute;
  left: -.5rem;
  top: 0;
}
.cta h2::after {
  content: "";
  display: block;
  background: url(../img/cta-right.png) center center / contain no-repeat;
  width: 3rem;
  height: 7.1rem;
  position: absolute;
  right: -.5rem;
  top: 0;
}
.btn-tel {
  display: block;
  background: var(--pink);
  border: .1rem solid #fff;
  border-radius: .5rem;
  padding: .6rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz20);
  font-weight: 700;
  text-align: center;
  box-shadow: .1rem .2rem .3rem rgba(235,64,120,0.25);
  margin-bottom: 2rem;
}
.btn-tel span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fz14);
  font-weight: 500;
}
.btn-line {
  display: block;
  background: #06C755;
  border: .1rem solid #fff;
  border-radius: .5rem;
  padding: .6rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz20);
  font-weight: 700;
  text-align: center;
  box-shadow: .1rem .2rem .3rem rgba(199,85,25,0.25);
  margin-bottom: 2rem;
}
.btn-line span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fz14);
  font-weight: 500;
}

/* ---------------------------------------------------------------------------
//  trouble
--------------------------------------------------------------------------- */
.trouble1 {
  background: url(../img/trouble1-bg.png) center top / cover no-repeat;
  padding: 9rem 0 3rem;
  position: relative;
}
.trouble1::after {
  content: "";
  display: block;
  background: linear-gradient(to bottom, #F2D7DB 0%, #EB4078 100%);
  width: 29rem;
  height: 6.7rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -5rem;
  left: calc(50% - 14.5rem);
  z-index: 1;
}
.trouble1 h2 {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz28);
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
}
.trouble1 h2::before {
  content: "";
  display: block;
  background: url(../img/img-guruguru.png) center center / contain no-repeat;
  width: 4.6rem;
  height: 4.5rem;
  position: absolute;
  left: -.5rem;
  top: -4rem;
}
.trouble1 h2 span {
  font-size: var(--fz20);
}
.trouble1 li {
  color: #8B7E79;
  line-height: 2;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.trouble1 li span {
  color: #333;
}
.trouble1 li::before {
  content: "";
  display: block;
  background: url(../img/icon-check.png) center center / contain no-repeat;
  width: 1.8rem;
  height: 1.8rem;
}
.trouble1 h3 {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz18);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  margin-top: 2rem;
}
.trouble1 h3 span {
  font-size: var(--fz22);
}
.trouble1 h3 .line {
  background: url(../img/img-line.png) center bottom / contain no-repeat;
}

.trouble2 {
  background: url(../img/trouble2-bg.png) center top / cover no-repeat;
  padding: 8rem 0 4rem;
  position: relative;
}
.trouble2 .neko {
  width: 11.5rem;
  position: absolute;
  left: 1rem;
  bottom: -4rem;
}
.trouble2 .answer {
  background: var(--pink);
  padding: 1.5rem 2rem;
  margin: 0 -1.8rem 0 auto;
  width: 27rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz18);
  font-weight: 600;
}
.trouble2 .answer span{
  font-size: var(--fz20);
}

/* ---------------------------------------------------------------------------
//  why
--------------------------------------------------------------------------- */
.why {
  background: #F5EFE5;
  padding: 2rem 0;
}
.why .box {
  background: url(../img/why-bg.png) center center / 33.5rem repeat;
  padding: 4rem 1.5rem 2rem;
  box-shadow: .1rem .2rem .4rem rgba(51,51,51,0.15);
}
.why h2 {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz22);
  font-weight: 600;
  text-align: center;
  color: var(--pink);
  margin-bottom: 2rem;
  border-bottom: .1rem dashed #333;
}
.why .txt1 {
  margin-bottom: 3rem;
}
.why h3 {
  background: #8D634D;
  font-size: var(--fz15);
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 1rem;
  border-radius: 10rem;
  margin-bottom: 3rem;
  position: relative;
}
.why h3::after {
  content: "";
  display: block;
  background: #8D634D;
  width: 1.4rem;
  height: 1.6rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: -1.5rem;
  left: calc(50% - .7rem);
  z-index: 1;
}
.why .txt2 {
  text-align: center;
  margin-bottom: 3rem;
}
.why .txt2 strong {
  font-size: var(--fz18);
  font-weight: 700;
  color: var(--pink);
  letter-spacing: -.02em;
  background: linear-gradient(transparent 70%, #FFFF8C 70%);
}
.why .flow .item {
  background: #8D634D;
  width: 13rem;
  padding: 1rem 0;
  border-radius: .5rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.why .flow .arrow {
  width: 2.4rem;
}
.why .txt3 {
  margin: 3rem 0;
  text-align: center;
  line-height: 2;
}
.why .txt3 strong {
  font-size: var(--fz18);
  padding-bottom: .8rem;
  background: url(../img/img-line-p.png) center bottom / 100% 2.1rem no-repeat;
}

/* ---------------------------------------------------------------------------
//  bodymake
--------------------------------------------------------------------------- */
.bodymake {
  background: url(../img/bodymake-bg.png) center center / cover no-repeat;
  padding: 6rem 0 4rem;
}
.bodymake h2 {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz22);
  font-weight: 600;
  text-align: center;
  color: var(--pink);
  margin-bottom: 2rem;
}
.bodymake .items {
  gap: 1rem;
}
.bodymake .items > div {
  background: #8D634D;
  width: 13rem;
  padding: 1rem 0;
  border-radius: .5rem;
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bodymake .text {
  font-size: var(--fz20);
  text-align: center;
  margin: 1rem 0 3rem;
}
.bodymake .box {
  background: #F5EFE5;
  border-radius: 1rem;
  padding: 2rem 1rem;
  box-shadow: .1rem .2rem .4rem rgba(51, 51, 51, 0.15);
}
.bodymake .box h3 {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz18);
  font-weight: 600;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.bodymake .box h3::before {
  content: "";
  display: block;
  background: url(../img/icon-check2.png) center center / contain no-repeat;
  width: 1.8rem;
  height: 1.8rem;
}
.bodymake .box p {
  font-size: var(--fz15);
}
.bodymake .box p + h3 {
   margin-top: 1.5rem;
}

/* ---------------------------------------------------------------------------
//  sports
--------------------------------------------------------------------------- */
.sports {
  background: url(../img/sports-bg.png) center center / cover no-repeat;
  padding: 6rem 0 4rem;
}
.sports h2 {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz22);
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}
.sports .items {
  gap: 1rem 0;
}
.sports .items > div {
  font-size: var(--fz15);
  font-weight: 600;
  color: var(--pink);
  text-align: center;
  border: .1rem solid var(--pink);
  border-radius: .5rem;
  background: #fff;
  padding: 1.2rem 1rem;
}
.sports p {
  margin-top: 1rem;
  text-align: right;
}

/* ---------------------------------------------------------------------------
//  policy
--------------------------------------------------------------------------- */
.policy {
  background: #fff;
  padding: 5rem 0 4rem;
}
.policy h2.default {
  font-size: var(--fz22);
}
.policy h3 {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz18);
  font-weight: 600;
  text-align: center;
  background: url(../img/policy-serif.png) center bottom / auto 2.2rem no-repeat;
  padding-bottom: 2.5rem;
  margin-bottom: 1rem;
}
.policy .ph {
  margin-bottom: 2rem;
}

/* ---------------------------------------------------------------------------
//  voice
--------------------------------------------------------------------------- */
.voice {
  background: url(../img/voice-bg.png) center center / cover no-repeat;
}
.slide-wrapper {
  width: calc(100% + 3.6rem);
  margin: 0 -1.8rem;
}
.voice-slide p {
  text-align: center;
}

/* ---------------------------------------------------------------------------
//  facilities
--------------------------------------------------------------------------- */
.facilities {
  background: url(../img/facilities-bg.png) center center / cover no-repeat;
}
.facilities-slide h3 {
  font-size: var(--fz14);
  font-weight: 400;
  margin: .5rem 0;
}
.facilities-slide p {
  font-size: var(--fz15);
}

/* ---------------------------------------------------------------------------
//  staff
--------------------------------------------------------------------------- */
.staff {
  background: url(../img/staff-bg.png) center center / cover no-repeat;
}
.staff h3 {
  font-size: var(--fz16);
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}

.staff .item {
  box-shadow: .1rem .2rem .4rem rgba(51, 51, 51, 0.15);
  background: #fff;
}
.staff .item .text {
  padding: 1rem;
}
.staff .item h4 {
  font-size: var(--fz16);
  font-weight: 500;
  margin-bottom: .5rem;
}
.staff .item p {
  font-size: var(--fz15);
}

/* ---------------------------------------------------------------------------
//  price
--------------------------------------------------------------------------- */
.price {
  background: url(../img/price-bg.png) center center / cover no-repeat;
}
.price h2.default {
  color: #8C623B;
}
.price h3 {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz16);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}
.price h4 {
  display: table;
  font-size: var(--fz16);
  font-weight: 600;
  text-align: center;
  margin: -1rem auto 0;
}
.price h4 span {
  border-bottom: .1rem solid #333;
}

/* ---------------------------------------------------------------------------
//  faq
--------------------------------------------------------------------------- */
.faq {
  background: url(../img/why-bg.png) center top / 33.5rem repeat;
}
.faq-items {
  background: #fff;
  padding: 1rem;
}
.faq-items dt {
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz16);
  font-weight: 600;
  color: var(--pink);
  display: flex;
  gap: .5rem;
  padding: 1rem 4rem 1rem 1rem;
  cursor: pointer;
  position: relative;
  border-bottom: .1rem dashed #ccc;
}
.faq-items dt::before {
  content: "Q";
}
.faq-items dt::after {
  content: "";
  display: block;
  background: url(../img/faq-plus.png) center center / contain no-repeat;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
}
.faq-items dt.active::after {
  background: url(../img/faq-minus.png) center center / contain no-repeat;
}
.faq-items dd {
  display: none;
}
.faq-items dd .answer {
  font-size: var(--fz15);
  font-weight: 400;
  display: flex;
  gap: .5rem;
  padding: 1rem;
}
.faq-items dd .answer::before {
  content: "A";
  font-family: "Noto Serif JP", serif;
  font-size: var(--fz16);
  font-weight: 600;
}

/* ---------------------------------------------------------------------------
//  access
--------------------------------------------------------------------------- */
.access {
  background: #fff;
}
.access .info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}
.access .info dt {
  width: 8rem;
  background: #F5EFE5;
  border: .1rem solid #333;
  font-size: var(--fz15);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6rem;
}
.access .info dd {
  width: calc(100% - 9rem);
  height: 6rem;
  display: flex;
  align-items: center;
}
.access .schedule {
  width: 100%;
}
.access .schedule th,
.access .schedule td {
  border: 1px solid #333;
  padding: .5rem;
  text-align: center;
  font-size: var(--fz15);
  line-height: 1.2;
}
.access .schedule th {
  background: #F5EFE5;
  font-weight: 500;
}

.googlemap {
  width: 100%;
  height: 20rem;
  margin-top: 3rem;
  box-shadow: .1rem .2rem .4rem rgba(51, 51, 51, 0.15);
}
.googlemap iframe {
  width: 100%;
  height: 100%;
}

/* ---------------------------------------------------------------------------
//  footer 
--------------------------------------------------------------------------- */
footer {
  padding: 3rem 0;
  background: #F5EFE5;
}
footer h2 {
  font-size: var(--fz15);
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-bottom: 3rem;
}
footer h2::before {
  content: "";
  display: block;
  background: url(../img/logo.png) center center / contain no-repeat;
  width: 2.7rem;
  height: 3.7rem;
}
footer .copy {
  font-size: var(--fz12);
  font-weight: 400;
  text-align: center;
}

/* /////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////// */


.sp-nav .logo { display: none; }
@media (min-width: 768px) {
  html {
    font-size: 12px;
  }
  .over-wrap {
    width: 100%;
    height: 100vh;
    position: relative;
  }
  .over-wrap::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/pc-bg.jpg) center center / cover no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .wrap {
    width: 486px;
    background: #fff;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }
  header {
    width: 486px;
    top: 0;
    left: calc(50% - 243px);
  }
  .pc-nav {
    display: block;
    position: fixed;
    top: 4rem;
    left: 4rem;
    z-index: 9;
  }
  .pc-nav .logo {
    display: flex;
    padding: 0;
    gap: .5rem;
    margin-bottom: 2rem;
  }
  .pc-nav .logo .neko {
    width: 2.7rem;
  }
  .pc-nav li {
    font-size: var(--fz16);
    line-height: 2.2;
    display: flex;
    align-items: center;
    gap: .5rem;
  }
  .pc-nav li::before {
    content: "";
    display: block;
    background: url(../img/icon-check.png) center center / contain no-repeat;
    width: 1.8rem;
    height: 1.8rem;
  }
  .pc-nav nav .nav-btns {
    margin: 3rem auto 0;
  }
}

@media (max-width: 1210px) {
  .pc-nav {
    display: none;
  }
}

