@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
html, body {
  font-size: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
a:link {
  text-decoration: none;
  color: #000;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:visited, a:active, a:hover {
  text-decoration: none;
  color: #000;
}
p, ul li, ol li, table, dt, dd {
  font-size: 90%;
  line-height: 2.0em;
  text-align: left;
  letter-spacing: 0.2em;
}
hr {
  margin: 100px 0;
}
img {
  max-width: 100%;
  height: auto;
}
#loading {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #CBC4AA;
  text-align: center;
  color: #ccc;
}
#kimono #loading {
  background: #866f7b;
}
#logo {
  position: absolute;
  width: 110px;
  height: 130px;
  background: url("../image/loading_logo.png");
  background-size: cover;
  display: block;
  top: 50%;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  margin-top: -80px;
}
#loadnig_num {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 200px;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
}
.wrapper {
  width: 100%;
  min-height: calc(100%);
  position: relative;
  background: #fff;
}
.wrap {
  width: 90%;
  margin: 0 auto;
  padding: 5px;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 1000px) {
  .wrap {
    width: 98%;
  }
}
.page_selection {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
}
/* 2カラムの器 */
.page_kimono, .page_yoga {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
  /* 既存の background は使わない（::before に移動） */
  background: none;
}
/* 背景レイヤー（初期：ぼかし＋薄い＋少しズーム） */
.page_kimono::before, .page_yoga::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  filter: blur(18px);
  transform: scale(1.06);
  transition:
    opacity 0.9s cubic-bezier(.22, .61, .36, 1), filter 1.2s cubic-bezier(.22, .61, .36, 1), transform 1.2s cubic-bezier(.22, .61, .36, 1);
}
/* 背景画像 */
.page_kimono::before {
  background: url("../image/page_kimono.jpg") no-repeat center center / cover;
}
.page_yoga::before {
  background: url("../image/page_yoga.jpg") no-repeat center center / cover;
}
/* 背景が順に入る（ぼかし解除） */
.page_kimono.is-bg-in::before, .page_yoga.is-bg-in::before {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}
/* クリック全面リンク */
.page_yoga a, .page_kimono a {
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 2; /* 背景より前 */
}
/* 暗幕（初期） */
.page_yoga a::after, .page_kimono a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.35s ease;
}
/* hover 時に濃くする（既存の「a:hover background」をこちらに集約） */
.page_yoga a:hover::after, .page_kimono a:hover::after {
  background: rgba(0, 0, 0, 0.8);
}
/* ロゴ画像（初期：非表示 → フェードイン） */
.page_kimono img, .page_yoga img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%) scale(1.02);
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(.22, .61, .36, 1), transform 0.9s cubic-bezier(.22, .61, .36, 1);
}
/* ロゴが入る */
.page_selection.is-logo-in .page_kimono img, .page_selection.is-logo-in .page_yoga img {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
/* KIMONO/YOGA テキスト（初期：非表示 → フェードイン）
   ※ site_select の .linkleft/.linkright と衝突しないように page_selection 配下だけに限定 */
.page_selection .linkleft, .page_selection .linkright {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.7s cubic-bezier(.22, .61, .36, 1), transform 0.9s cubic-bezier(.22, .61, .36, 1);
}
/* テキストが入る */
.page_selection.is-links-in .linkleft, .page_selection.is-links-in .linkright {
  opacity: 1;
  transform: translateY(0);
}
/* レスポンシブ */
@media (max-width: 1000px) {
  .page_kimono, .page_yoga {
    width: 100%;
    height: 50%;
  }
  .page_kimono img, .page_yoga img {
    height: 60%;
  }
}
.linkleft {
  position: absolute;
  left: 120px;
  bottom: 10px;
  height: 50px;
  z-index: 2
}
.linkleft span {
  font-size: 32px;
  top: -50%;
  position: absolute;
  color: #fff;
}
.linkleft::after {
  content: "";
  position: absolute;
  right: 0;
  width: 120px;
  height: 1px;
  background: #fff;
  animation: pathmove_l 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove_l {
  0% {
    height: 0;
    right: 0;
    opacity: 0;
  }
  30% {
    width: 80px;
    opacity: 1;
  }
  100% {
    width: 0;
    right: 120px;
    opacity: 0;
  }
}
.linkright {
  position: absolute;
  right: 120px;
  bottom: 10px;
  height: 50px;
  z-index: 99;
}
.linkright span {
  font-size: 32px;
  top: -50%;
  right: 0px;
  position: absolute;
  color: #fff;
}
.linkright::after {
  content: "";
  position: absolute;
  left: 0;
  width: 120px;
  height: 1px;
  background: #fff;
  animation: pathmove_r 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove_r {
  0% {
    height: 0;
    left: 0;
    opacity: 0;
  }
  30% {
    width: 80px;
    opacity: 1;
  }
  100% {
    width: 0;
    left: 120px;
    opacity: 0;
  }
}
.site_select {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  height: 120px;
  position: relative;
  overflow: hidden;
}
.site_select img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1000px) {
  .site_select {
    padding-top: 100px;
  }
  .site_select img {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, 50%);
  }
}
.site_select .link:nth-of-type(1) {
  width: 50%;
  background: #D3C6CD;
  height: 100%;
  display: block;
}
.site_select .link:nth-of-type(2) {
  width: 50%;
  background: #CBC7B2;
  height: 100%;
  display: block;
}
.site_select a {
  display: block;
  width: 100%;
  height: 100%;
}
.site_select .link span {
  color: #000 !important;
}
.site_select .link .linkleft:after, .site_select .link .linkright:after {
  background: #000;
}
img.ttl {
  margin: 50px auto;
  display: block;
}
.block {
  padding: 100px 0px;
  position: relative;
}
.bg_right {
  background: url("../image/bg.png") no-repeat right -10% center #fff;
}
.bg_left {
  background: url("../image/bg.png") no-repeat left -10% center #fff;
}
@media (min-width: 1000px) {
  .add_bg_left {
    position: relative;
    z-index: 0;
  }
  .add_bg_left:before {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../image/bg.png") no-repeat left -10% top;
    top: -200px;
    position: absolute;
    z-index: -1;
    pointer-events: none;
  }
}
.bg_grey {
  background: rgba(203, 199, 178, 0.2)
}
.bg_purple {
  background: rgba(211, 198, 205, 0.4);
}
header {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 80px;
  z-index: 2;
}
.top h1 {
  display: none;
}
h1 {
  width: 250px;
  height: 44px;
  position: absolute;
  left: 20px;
  top: 0px;
}
h1 a {
  width: 250px;
  height: 44px;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#yoga h1 a {
  background: url("../image/logo_yoga.png") center center/cover no-repeat;
}
#kimono h1 a {
  background: url("../image/logo_kimono.png") center center/cover no-repeat;
}
footer h3 {
  width: 280px;
  height: 50px;
  margin: 0px 0px 30px;
  z-index: 9999;
}
footer h3 a {
  width: 280px;
  height: 50px;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#yoga footer h3 a {
  background: url("../image/logo_yoga_w.png") center center/cover no-repeat;
}
#kimono footer h3 a {
  background: url("../image/logo_kimono_w.png") center center/cover no-repeat;
}
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}
.fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}
.beginner {
  width: 300px;
  height: 163px;
  position: fixed;
  bottom: 50px;
  right: 0px;
  opacity: 0;
  transform: translate(0px, 14px);
  pointer-events: none;
  transition: opacity .5s ease, transform .6s cubic-bezier(.2, .8, .2, 1);
}
.beginner.is-show {
  opacity: 1;
  transform: translateY(0px, 0px);
  pointer-events: auto;
}
.beginner a {
  width: 300px;
  height: 163px;
  display: block;
  background: url("../image/beginner_banner.png") center right/cover no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .beginner {
    width: 250px;
    height: 77px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 14px);
  }
  .beginner a {
    width: 250px;
    height: 77px;
    background: url("../image/beginner_banner_sp.png") center right/cover no-repeat;
  }
}
.slickwrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: calc(100vh);
  margin-top: -80px;
  background: #fff;
}
#yoga .slickwrap:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  content: "";
}
#kimono .slickwrap:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  content: "";
}
#yoga .slickwrap img.logo {
  top: 50%;
  position: absolute;
  left: 25%;
  transform: translate(-50%, -50%);
  margin: auto;
  z-index: 1;
}
#yoga .slickwrap img.txt {
  top: 50%;
  position: absolute;
  right: -5%;
  transform: translate(0%, -50%);
  width: 50%;
  z-index: 1;
}
#kimono .slickwrap img.logo {
  top: 50%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  z-index: 1;
}
#kimono .slickwrap img.txt {
  bottom: 0%;
  position: absolute;
  right: -5%;
  transform: translate(0%, -50%);
  width: 50%;
  z-index: 1;
}
@media (max-width: 1000px) {
  #yoga .slickwrap img.logo {
    top: 50%;
    position: absolute;
    left: 5%;
    transform: translate(0%, -50%);
    margin: auto;
    z-index: 1;
    width: 60%;
  }
  #kimono .slickwrap img.txt {
    bottom: 0%;
    position: absolute;
    right: -5%;
    transform: translate(0%, -50%);
    width: 80%;
    z-index: 1;
  }
}
.slickwrap div.fade {
  outline: none;
  height: calc(100vh);
}
#yoga .slick div.fade:nth-child(1) {
  background: url("../image/main_yoga.jpg") no-repeat center center;
  background-size: cover;
}
#kimono .slick div.fade:nth-child(1) {
  background: url("../image/main_kimono.jpg") no-repeat center center;
  background-size: cover;
}
.slickwrap .fade {
  opacity: 0;
  filter: blur(18px);
  transform: scale(1.03);
  transition:
    opacity .9s cubic-bezier(.22, .61, .36, 1), filter 1.2s cubic-bezier(.22, .61, .36, 1), transform 1.2s cubic-bezier(.22, .61, .36, 1);
}
/* LOADING後に出す */
.slickwrap.is-fade-in .fade {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}
/* ロゴ2枚：初期は非表示 */
.slickwrap img.logo, .slickwrap img.txt {
  opacity: 0;
  transition:
    opacity .8s cubic-bezier(.22, .61, .36, 1), transform .9s cubic-bezier(.22, .61, .36, 1);
}
/* LOADING後の最後に表示 */
.slickwrap.is-logo-in img.logo, .slickwrap.is-logo-in img.txt {
  opacity: 1;
}
img.ttl_txt {
  margin: 10px auto 80px;
  display: block;
  width: auto !important;
}
img.ttl_left {
  margin: 10px 0px 80px;
  display: block;
  width: auto !important;
}
.btn {
  width: 400px;
  max-width: 100%;
  z-index: 999 !important;
  position: relative;
}
.btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78px;
  padding: 0 24px;
  background: transparent;
  color: #fff; /* 初期：白文字 */
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .06em;
  overflow: hidden;
  isolation: isolate;
  transition: color .45s cubic-bezier(.4, 0, .2, 1);
}
.btn a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: background .45s cubic-bezier(.4, 0, .2, 1);
}
#yoga .btn a::before {
  background: #7e754b;
}
#kimono .btn a::before {
  background: #866F7B;
}
.btn a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 30%;
  z-index: -1;
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  transition:
    width .55s cubic-bezier(.4, 0, .2, 1), clip-path .55s cubic-bezier(.4, 0, .2, 1);
}
#yoga .btn a::after {
  background: #ccc7b2;
}
#kimono .btn a::after {
  background: #D3C6CD;
}
.btn a:hover::after {
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#yoga .btn a:hover {
  color: #7e754b;
}
#kimono .btn a:hover {
  color: #866F7B;
}
/* モバイル */
@media (max-width: 1000px) {
  .btn {
    width: 80%;
    margin: 10px auto;
  }
  .btn a {
    height: 64px;
    font-size: 15px;
  }
}
.shadow img {
  vertical-align: bottom;
}
.shadow {
  position: relative;
  margin: 50px 0px 0px;
}
.shadow:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  content: "";
}
.shadow span {
  position: absolute;
  z-index: 2;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.spacelayout01 {
  margin: 50px 0px;
}
.spacelayout01 img {
  width: 100%;
  margin-bottom: 20px;
}
.spacelayout01 .btn {
  width: 100%;
  margin-bottom: 10px;
}
.spacelayout01 .box23 {
  position: relative;
}
.spacelayout01 .ttl_txt {
  top: -300px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0px);
}
@media (max-width: 1000px) {
  .spacelayout01 .ttl_txt {
    top: -260px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 0px);
  }
  .bg_grey:has(.spacelayout01) {
    margin-top: 80px;
  }
}
p.like_btn {
  width: 100%;
  z-index: 2;
  position: relative;
  display: flex;
  box-sizing: border-box;
  padding: 6px 24px;
  background: transparent;
  color: #fff;
  margin: 0px;
  text-decoration: none;
  overflow: hidden;
  text-align: left !important;
}
p.like_btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: background .45s cubic-bezier(.4, 0, .2, 1);
}
#yoga p.like_btn::before {
  background: #7e754b;
}
#kimono p.like_btn::before {
  background: #866F7B;
}
#kimono p.like_btn.neo::before {
  background: #efe9ec;
}
p.like_btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 15%;
  z-index: -1;
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  transition:
    width .55s cubic-bezier(.4, 0, .2, 1), clip-path .55s cubic-bezier(.4, 0, .2, 1);
}
#yoga p.like_btn::after {
  background: #D3C6CD;
}
#kimono p.like_btn::after {
  background: #D3C6CD;
}
#kimono p.like_btn.neo::after {
  background: #d3c6cd;
}
#kimono p.like_btn.neo {
  color: #000;
  font-size: 18px;
}
p.like_btn .mini {
  font-size: 70%;
  padding-left: 10px;
}
.is-center {
  align-self: center; /* ←この1個だけ縦中央に */
}
p.price {
  font-size: 32px;
  margin: 10px 0px 0px;
  padding: 0px 2px;
  box-sizing: border-box;
  color: #7e754b;
}
p.price span {
  font-size: 50%;
  padding-left: 5px;
}
.bg_staff {
  position: relative;
  padding: 20px 0px;
}
.bg_staff:before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../image/bg_staff.jpg") center/cover no-repeat;
  opacity: .4;
  z-index: 0;
}
.spacelayout02 .btn {
  margin-bottom: 60px;
}
.spacelayout02 .ttl_txt {
  top: -300px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0px);
}
@media (max-width: 1000px) {
  .bg_staff {
    padding: 80px 0px 20px;
    margin-top: 120px;
  }
  .bg_staff:before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../image/bg_staff_sp.jpg") top right/cover no-repeat;
    opacity: .4;
    z-index: 0;
  }
  .spacelayout02 .ttl_txt {
    top: -300px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 0px);
  }
}
.spacelayout03 img {
  width: 80% !important;
  margin: 10%;
  max-width: 100%;
}
.logo_img {
  width: 100%;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.logo_img img {
  width: 300px;
}
@media (max-width: 1000px) {
  .logo_img img {
    width: 280px !important;
  }
}
#yoga .color_link {
  background: #7E764B;
  color: #fff !important;
  padding: 5px 10px;
}
#kimono .color_link {
  background: #866F7B;
  color: #fff !important;
  padding: 5px 10px;
}
/*reservation */
.layout01 {
  background: url("../image/reservation_bg.jpg") center center/cover no-repeat;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 60px 0px;
}
.layout01:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  z-index: 1;
}
.layout01 a, .layout01 p, .layout01 h4 {
  position: relative;
  z-index: 2;
  text-align: center;
}
.layout01 h4 {
  font-size: 32px;
  margin: 0px;
}
.layout01 a {
  padding: 5px 40px;
  border: 1px solid #fff;
  color: #fff;
}
.spacelayout04 {
  position: relative;
  margin-top: 100px;
  margin-bottom: 50px;
}
.spacelayout04 .ttl_txt {
  top: -300px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 0px);
}
@media (max-width: 768px) {
  .spacelayout04 {
    padding-top: 140px;
    margin-top: 180px;
  }
  .spacelayout04 .ttl_txt {
    top: -280px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, 0px);
  }
}
.page_ttl {
  border-top: 1px solid #fff;
  padding: 50px 0px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.page_head {
  height: 300px;
  position: relative;
  padding: 80px 0px 0px;
  box-sizing: border-box;
  color: #fff;
}
.page_head:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
}
.page_head h2 {
  font-weight: normal;
}
#yoga .page_head:after {
  content: url("../image/YOGA.svg");
  left: 0%;
  bottom: 0px;
  position: absolute;
  width: 600px;
  max-width: 80%;
}
#kimono .page_head:after {
  content: url("../image/KIMONO.svg");
  left: 0%;
  bottom: 0px;
  position: absolute;
  width: 600px;
  max-width: 80%;
}
.page_head_concept {
  background: url("../image/page_head_concept.jpg") center bottom/cover;
}
.page_head_effect {
  background: url("../image/page_head_effect.jpg") center bottom/cover;
}
.page_head_program {
  background: url("../image/page_head_program.jpg") center bottom/cover;
}
.page_head_kconcept {
  background: url("../image/page_head_kconcept.jpg") center bottom/cover;
}
.page_head_products {
  background: url("../image/page_head_products.jpg") center bottom/cover;
}
.page_head_service {
  background: url("../image/page_head_service.jpg") center bottom/cover;
}
.page_head_shikkai {
  background: url("../image/page_head_shikkai.jpg") center bottom/cover;
}
.page_head_first {
  background: url("../image/page_head_first.jpg") center bottom/cover;
}
.page_head_staff {
  background: url("../image/page_head_staff.jpg") center bottom/cover;
}
.fit_RL {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.fit_RL img {
  width: 80%;
  margin: 10%;
}
@media (min-width: 768px) {
  .fit_RL .fit_R {
    width: 100%;
    padding-right: 50%;
    box-sizing: border-box;
  }
  .fit_RL .fit_L {
    width: 100%;
    padding-left: 50%;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .fit_RL .fit_R {
    width: 50%;
    padding-right: 0%;
    box-sizing: border-box;
  }
  .fit_RL .fit_L {
    width: 50%;
    padding-left: 0%;
    box-sizing: border-box;
  }
}
/*shiotaryuu */
.layout02 {
  background: url("../image/shiotaryuu_bg.jpg") center center/cover no-repeat;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 90px 0px;
}
.layout02:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  z-index: 1;
}
.layout02 img {
  position: relative;
  z-index: 2;
}
.catch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 24px;
  letter-spacing: .18em;
  margin: 40px 0;
}
.catch::before, .catch::after {
  content: "";
  width: 42px;
  height: 1px;
  background: #111;
  opacity: .35;
}
.layout03 .box23 {
  margin: 1%;
}
.layout03 {
  justify-content: flex-start !important;
}
.layout03 .box h3 {
  border-bottom: 1px solid #ccc;
  margin: 0px;
  padding: 10px 0px;
  font-weight: normal;
  font-size: 24px;
}
@media (min-width: 768px) {
  .layout04:after {
    content: "";
    width: 80%;
    height: 80%;
    background: rgba(211, 198, 205, 0.4);
    z-index: -1;
    position: absolute;
    top: 10%;
    left: 20%;
  }
}
.layout05 {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 80px 0px;
}
.product_sec1 {
  background: url("../image/product_sec1_bg.jpg") center center/cover no-repeat;
}
.product_sec2 {
  background: url("../image/product_sec2_bg.jpg") center center/cover no-repeat;
}
.product_sec3 {
  background: url("../image/product_sec3_bg.jpg") center center/cover no-repeat;
}
.product_sec4 {
  background: url("../image/product_sec4_bg.jpg") center center/cover no-repeat;
}
.service_sec1 {
  background: url("../image/service_sec1_bg.jpg") center center/cover no-repeat;
}
.service_sec2 {
  background: url("../image/service_sec2_bg.jpg") center center/cover no-repeat;
}
.layout05:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  content: "";
  z-index: 1;
}
.layout05 img {
  position: relative;
  z-index: 2;
}
.kimono_insta .box {
  display: flex;
  align-items: center;
  margin: 30px 0px;
}
@media (max-width: 768px) {
  .kimono_insta .box {
    margin: 16px 10% !important;
  }
}
.kimono_insta .box img {
  border-radius: 50%;
  margin-right: 20px;
  max-width: 150px;
}
h3.c_ttl {
  font-weight: normal;
  font-size: 32px;
}
@media (max-width: 768px) {
  h3.c_ttl {
    font-size: 24px;
  }
}
.product_img {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.product_img img {
  width: 46% !important;
  position: relative;
}
.spacelayout05 .box {
  margin-bottom: 60px;
}
.story {
  display: flex;
  position: absolute;
  right: 0px;
  align-items: center;
  top: -30px;
}
.story img {
  width: 100px !important;
  height: auto;
}
.story .story-tab {
  display: flex;
  margin: 0px;
  list-style: none;
  align-items: center;
}
.story .story-tab li {
  font-size: 24px;
  padding: 0px 10px;
}
.story .story-tab li.current {
  color: #866F7B;
  font-size: 32px;
}
@media (min-width: 1200px) {
  .story_wrap {
    max-width: 1200px;
    margin: 0px auto 0px;
  }
  .story_wrap_R {
    max-width: 1000px !important;
    margin: 0px auto 0px;
    padding-left: 200px;
  }
  .story_wrap_L {
    max-width: 1000px !important;
    margin: 0px auto 0px;
    padding-right: 200px;
  }
  .mt100 {
    margin-top: 100px;
  }
}
.nagomi_wrap {
  text-align: left;
  padding: 0px 5px 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.nagomi_wrap .image img {
  width: 100%;
  height: auto;
}
ul.nagomi {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  width: 100%;
  margin: 0px;
  padding: 0px;
}
ul.nagomi li {
  width: 30%;
  box-sizing: border-box;
  margin: 0px;
  padding: 10px;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  ul.nagomi li {
    width: 80%;
    margin: 0px auto;
    box-sizing: border-box;
  }
}
ul.nagomi li .image {
  position: relative;
  width: 100%;
}
ul.nagomi li .image img {
  width: 100%;
}
.txt_hide {
  width: 90%;
  font-size: 14px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
ul.nagomi li h3 {
  font-weight: normal;
  margin: 0px;
  padding: 0px;
}
.nagomi_left h2 {
  font-weight: normal;
  font-size: 20px;
  position: relative;
  padding-bottom: 6px;
  display: inline-block; /* ★文字幅にする */
}
.nagomi_left h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%; /* ★これが重要 */
  height: 1px;
  background: #000;
}
.nagomi_left p {
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .nagomi_right {
    padding-top: 100px;
  }
}
.nagomi_right h3 {
  padding-left: 10px;
  position: relative;
  font-weight: normal;
}
.nagomi_right h3::before {
  height: 80%;
  width: 1px;
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 20%;
}
.nagomi_right p {
  line-height: 2.4em;
  padding: 10px 0px;
  margin: 10px 0px;
}
.nagomi_right div {
  padding: 50px 0px;
}
.profile .box p {
  margin: 0px;
  padding: 0px;
  position: relative;
}
.profile .box p:nth-child(1) {
  margin-bottom: 50px;
}
.profile .box p:last-child:after {
  content: "";
  position: absolute;
  width: 200px;
  background: #000;
  bottom: -20px;
  height: 1px;
  left: 0px;
}
.profile .box img {
  margin: 10px auto;
}
.blocklink {
  margin: 50px auto;
  text-align: center;
}
.blocklink a {
  border: 1px solid #000;
  padding: 10px 30px;
  border-radius: 10px;
  background: #fff;
  display: inline-block;
  margin: 0 auto;
}
.blocklink a:hover {
  background: #ccc;
  color: #fff;
}
.staff{
	max-width: 1400px;
}
.staff .box{
	padding: 15px;
	box-sizing: border-box;
}
.staff h3{
	display: block;
	font-size: 20px;
	font-weight: normal;
	line-height: 2.0em;
	margin-top: 0;
}
.staff h3 span{
	display: block;
	border-top: 1px solid #ccc;
	font-size: 14px;
}
.staff .box img{
	margin: 0px auto;
	display: block;
}
.txleft {
  text-align: left;
}
.txright {
  text-align: right;
}
.txcenter {
  text-align: center;
}
.floatbox {
  width: 70%;
  margin: 0px auto;
}
.flexbox {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}
.flex-start {
  align-items: flex-start !important;
}
.flex-end {
  align-items: flex-end !important;
}
.space-between {
  justify-content: space-between !important;
}
.row-reverse {
  flex-direction: row-reverse;
}
.flexbox .box33 {
  width: 33%;
}
.flexbox .box20 {
  width: 20%;
}
.flexbox .box23 {
  width: 23%;
}
.flexbox .box25 {
  width: 25%;
}
.flexbox .box30 {
  width: 30%;
}
.flexbox .box33 {
  width: 33.333%;
}
.flexbox .box40 {
  width: 40%;
}
.flexbox .box45 {
  width: 45%;
}
.flexbox .box48 {
  width: 48%;
}
.flexbox .box50 {
  width: 50%;
}
.flexbox .box60 {
  width: 60%;
}
.flexbox .box70 {
  width: 70%;
}
.flexbox .box75 {
  width: 75%;
}
.flexbox .box80 {
  width: 80%;
}
.flexbox .box100 {
  width: 100%;
}
.flexbox .box {
  box-sizing: border-box;
  position: relative;
}
.boxpadding {
  padding: 5px;
}
footer {
  text-align: center;
  padding: 80px 0px;
}
#yoga footer {
  background: #7E764B;
  color: #fff;
}
#kimono footer {
  background: #866F7B;
  color: #fff;
}
footer ul {
  padding: 0px;
  width: 100%;
  display: inline-block;
  margin: 0px;
}
footer ul li {
  width: 100%;
  padding: 0px;
  margin: 0px;
  font-size: 80%;
  display: inline-block;
  position: relative;
  padding: 0 10px;
  box-sizing: border-box;
}
footer ul li a {
  color: #fff !important;
  display: block;
}
.copy {
  text-align: left;
  display: block;
  font-size: 80%;
}
dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
dl dt {
  padding: 10px;
  box-sizing: border-box;
  margin: 0;
  font-weight: normal;
}
dl dd {
  padding: 10px;
  box-sizing: border-box;
  margin: 0;
}
dl.info dt {
  width: 20%;
}
dl.info dd {
  width: 80%;
  text-align: left;
}
@media (max-width: 768px) {
  dl.info dt, dl.info dd {
    width: 100%;
  }
}
#navTgl {
  display: none;
}
ul.global {
  list-style: none;
  margin: 0px;
  position: absolute;
  right: 0px;
  top: 0px;
}
ul.global li {
  text-align: center;
  margin: 0px;
  font-size: 90%;
  display: inline-block;
}
ul.global li a {
  text-decoration: none;
  padding: 32px 20px 20px;
  color: #000;
  display: block;
}
.top ul.global li a {
  color: #fff;
}
ul.global li.reservation a {
  font-size: 11px;
  padding: 32px 12px 18px;
  color: #fff;
}
#yoga ul.global li.reservation a {
  background: url("../image/reserve.png") no-repeat center top 10px/30px auto #7E764B;
}
#kimono ul.global li.reservation a {
  background: url("../image/mail.png") no-repeat center top 10px/30px auto #866f7b;
}
ul.global li a:hover {
  opacity: 0.6;
}
@media (max-width: 1000px) {
  .onlypc {
    display: none !important;
  }
  header {
    z-index: auto;
  }
  .slick div.fade {
    background-size: cover !important;
  }
  footer h3 {
    position: relative;
    margin: 0 auto;
  }
  #navTgl {
    display: none;
  }
  label.close {
    background-color: rgba(0, 0, 0, 0);
  }
  label.open, label.close {
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
  }
  .open {
    z-index: 2;
    width: 70px;
    height: 70px;
    margin: 10px;
    -webkit-transition: background-color .6s, -webkit-transform .6s;
    transition: background-color .6s, transform .6s;
  }
  label.open {
    mix-blend-mode: difference;
  }
  .open span {
    position: absolute;
    left: 10px;
    height: 1px;
    width: 30px;
    display: inline-block;
    box-sizing: border-box;
    transition: background-color .6s, transform .6s;
    z-index: 999;
    background-color: #fff;
  }
  .open span:nth-of-type(1) {
    top: 20px;
  }
  .open span:nth-of-type(2) {
    top: 28px;
  }
  #navTgl:checked + .open {
    z-index: 999;
    transform: translateX(-240px);
  }
  #navTgl:checked + .open span:nth-of-type(1) {
    -webkit-transform: translate(0px, 5px)rotate(45deg);
    transform: translateX(0px, 5px) rotate(45deg);
    background-color: #fff;
  }
  #navTgl:checked + .open span:nth-of-type(2) {
    -webkit-transform: translate(0px, -0px)rotate(-45deg);
    transform: translateX(0px, -0px) rotate(-45deg);
    background-color: #fff;
    left: 10px;
    top: 26px
  }
  #navTgl:checked + .open {
    z-index: 999;
  }
  .close {
    pointer-events: none;
    z-index: 3;
    width: 100%;
    height: 100%;
    transition: background-color .6s;
  }
  #navTgl.close {
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: background-color .6s;
  }
  #navTgl:checked ~ .close {
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .menu {
    z-index: 9999;
    position: fixed;
    top: 0;
    right: 0;
    width: 240px;
    height: 100%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .6s;
    transition: transform .6s;
  }
  #yoga .menu {
    background-image: url("../image/menu_bg.png"), url("../image/menu_bg.png");
    background-size: 80px 80px, 80px 80px;
    background-repeat: repeat, repeat;
    background-position: 0 0, 40px 40px;
    background-color: rgba(126, 118, 75, 0.8);
  }
  #kimono .menu {
    background-image: url("../image/menu_bg.png"), url("../image/menu_bg.png");
    background-size: 80px 80px, 80px 80px;
    background-repeat: repeat, repeat;
    background-position: 0 0, 40px 40px;
    background-color: rgba(134, 111, 123, 0.8);
  }
  #navTgl:checked ~ .menu {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  ul.global p, ul.global li, ul.global li a {
    color: #fff;
  }
  ul.global {
    padding: 0;
    margin: 0;
    list-style-type: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  ul.global li {
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    font-size: 18px;
    width: 100%;
    padding: 0;
    margin: 0;
  }
  ul.global span {
    font-size: 12px;
    display: block
  }
  ul.global li a {
    display: block;
    text-align: left;
    text-decoration: none;
    transition: background-color .6s;
    padding: 10px;
    margin: 0;
  }
  ul.global a:hover {
    background-color: rgba(255, 255, 255, 0.6);
  }
  ul.global li.reservation a {
    font-size: 16px;
    padding: 10px 10px 10px 40px;
    color: #fff;
  }
  #yoga ul.global li.reservation a {
    background: url("../image/reserve.png") no-repeat center left 10px/30px auto #7E764B;
  }
  #kimono ul.global li.reservation a {
    background: url("../image/reserve.png") no-repeat center left 10px/30px auto #866f7b;
  }
}
@media (max-width: 768px) {
  .spbox100 {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .spbox80 {
    width: 80% !important;
    margin: 0px 10% !important;
  }
  .spbox50 {
    width: 48% !important;
    margin: 10px 1%;
  }
  .box img {
    width: 100%;
  }
  .leftbtn a {
    margin-left: auto;
  }
  .contactform dl {
    width: 100%;
    display: block;
    flex-wrap: wrap;
  }
  .contactform dl dt, .contactform dl dd {
    width: 100%;
  }
  .box_head {
    padding: 30px 2%;
  }
}
@media (min-width: 1000px) {
  .onlysp {
    display: none !important;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  copy {
    font-size: 80%;
    margin: 50px 20px 0px;
  }
}
/* editor */
.entry {
  text-align: left;
  padding: 0px 5px 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.entry .entrytitle {
  border: none;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: normal;
  font-size: 15px;
  margin: 0px 0px 20px;
}
.entry .entrytitle span.cat {
  background: #000;
  padding: 0px 10px;
  border-radius: 10px;
  margin: 0px 10px;
  display: inline-block;
  text-align: center;
}
.entrybody {
  padding: 20px;
}
.entry strong {
  font-weight: bold;
}
.entry em {
  font-style: italic;
}
.entry h2 {
  font-size: 20px;
  color: #fff;
  background-color: #adadad;
  ;
  padding: 5px;
  margin: 30px 0 15px;
  line-height: 1.4;
}
.entry h3 {
  font-size: 18px;
  color: #474747;
  border-bottom: 1px solid #adadad;
  ;
  padding: 5px;
  margin: 30px 0 15px;
  line-height: 1.4;
}
.entry h4 {
  font-size: 17px;
  padding: 5px;
  margin: 15px 0 10px;
  line-height: 1.3;
}
.entry h5 {
  font-size: 17px;
  padding: 5px;
  margin: 10px 0 5px;
  line-height: 1.2;
}
.entry h6 {
  font-size: 17px;
  padding: 5px;
  margin: 5px 0 5px;
  line-height: 1.1;
}
.entry small {
  font-size: 80%;
}
.entry code, .entry kbd, .entry pre, .entry samp {
  font-family: monospace, monospace;
}
.entry b, .entry strong {
  font-weight: bolder;
}
.entry em {
  font-style: italic;
}
.entry pre {
  margin: 1em 0;
  padding: 1em;
  border-radius: 5px;
  background: #e4f8f8;
  color: #474747;
  white-space: pre-wrap;
}
.entry blockquote {
  position: relative;
  margin: 1em 0;
  padding: 10px 15px 10px 50px;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
}
.entry blockquote:before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: -3px;
  content: "“";
  font-family: sans-serif;
  color: #cfcfcf;
  font-size: 90px;
  line-height: 1;
}
.entry blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}
.entry blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}
.entry code {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: #efefef;
  border-radius: 3px;
}
.entry textarea {
  overflow: auto;
  resize: vertical;
}
.entry ul, .entry ol {
  background: #fcfcfc;
  padding: 0.5em 0.5em 0.5em 2em;
  border: solid 1px #efefef;
  margin: 1em 0;
}
.entry ul li, .entry ol li {
  line-height: 1.5; /*文の行高*/
  padding: 0.5em 0; /*前後の文との余白*/
}
.entry ul li {
  list-style-type: disc;
}
.entry ol li {
  list-style-type: decimal;
}
/* img */
.entry .aligncenter {
  display: block;
  margin: 0 auto;
}
.entry .alignright {
  float: right;
}
.entry .alignleft {
  float: left;
}
.entry img[class*="wp-image-"], .entry img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}
/* clearfix */
.entry .clearfix {
  overflow: hidden;
  zoom: 1;
}
.entry .clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.navPage span, .navPage a {
  position: relative;
  font-size: 18px;
  padding: 0px 10px 4px;
  font-family: "Noto Serif JP", serif;
}
/* 常に after を持たせる */
.navPage span:after, .navPage a:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background: #000;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}
/* span（current）は常に表示 */
.navPage span:after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* aはhoverでふわっと出す */
.navPage a:hover:after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.navPage a.next, .navPage a.prev {
  display: none;
}
/* -------------------------------
   form base
-------------------------------- */
.contact_wrap{
	max-width: 800px;
	margin: 0 auto;
}
dl.contact {
  width: 100%;
}
dl.contact dt {
  font-weight: bold;
}
dl.contact dt, dl.contact dd {
  width: 100%;
  padding: 10px 0px;
  margin: 0px;
  position: relative;
}
.wpcf7 {
  margin: 0 auto;
}
.wpcf7 form p {
  margin: 0 0 18px;
}
.wpcf7 form label {
  display: block;
  font-size: 13px;
  letter-spacing: .02em;
  color: #000;
  margin: 0 0 8px;
}
/* -------------------------------
   inputs
-------------------------------- */
input[type="text"], input[type="email"], input[type="url"], input[type="tel"], input[type="date"], select, textarea {
  width: 100%;
  box-sizing: border-box;
  background: #e9e9e9;
  color: #000;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 14px 14px;
  font-size: 14px;
  transition:
    background-color .22s ease, border-color .22s ease, transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .28s cubic-bezier(.2, .8, .2, 1);
}
textarea {
  min-height: 170px;
  resize: vertical;
}
input:hover, select:hover, textarea:hover {
  background: #efefef;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  background: #fff;
  border-color: #000;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}
/* -------------------------------
   select arrow
-------------------------------- */
select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
/* -------------------------------
   responsive
-------------------------------- */
@media screen and (max-width:768px) {
  .wpcf7 {
    padding: 0 14px;
  }
}
/* 送信ボタン */
.wpcf7-submit {
  appearance: none;
  -webkit-appearance: none;

  width: 100%;
  max-width: 600px;
  height: 60px;

  background: #fff;
  border: 1px solid #000;
  border-radius: 0;

  font-size: 14px;
  letter-spacing: 0.3em;
  color: #000;

  display: block;
  margin: 60px auto 0;

  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* hover：黒反転＋白文字 */
.wpcf7-submit:hover {
  background: #000;
  color: #fff;
}
