@charset "UTF-8";
/*============================
	yogaページ CSS
============================*/
body#yoga_contents {
  font-size: 18px;
  font-weight: 500;
  background: #f8f6f0;
  color: #56534f;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", "Noto Sans", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Ｐゴシック", "MS PGothic", sans-serif;
  margin: auto;
  overflow: hidden;
  position: relative;
  line-height: 2;
  max-width: 100%;
}

.yoga_contents p,
.yoga_contents li,
.yoga_contents dt,
.yoga_contents dd,
.yoga_contents h3,
.yoga_contents h4,
.yoga_contents h5 {
  font-weight: 400;
}

.yoga_contents main {
  overflow: hidden;
}

/* ------------------------------
	header
------------------------------ */
.yoga-header {
  padding: clamp(20px, 3vw, 70px) 0;
}

.yoga-header .inner__large {
  position: relative;
}

.yoga-header h1 {
  position: absolute;
  z-index: 10;
  max-width: 150px;
  /* max-width: clamp(100px, 20vw, 150px); */
  max-width: clamp(80px, 16vw, 120px);
  top: 70px;
}

.yoga-header .yoga-nav .yoga-nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  gap: 30px 30px;
  max-width: calc(100% - 180px);
  margin-left: auto;
}

.yoga-header .yoga-nav .yoga-nav-menu .yoga-nav-reserve a {
  background: #ece562;
  border-radius: 100px;
  padding: clamp(12px, 2vw, 20px) clamp(18px, 4vw, 30px);
  opacity: 1;
  transition: 0.3s;
}

.yoga-header .yoga-nav .yoga-nav-menu .yoga-nav-reserve a:hover {
  background: #56534f;
  color: #fff;
}

.yoga-header .yoga-nav .yoga-nav-menu .yoga-nav-reserve a::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 4px;
  vertical-align: text-bottom;
  background-image: url(../img/yoga/point.png);
}

.yoga-header .yoga-nav .yoga-nav-menu .yoga-nav-reserve a:hover:before {
  background-image: url(../img/yoga/point_white.png);
}

.yoga-header .yoga-nav .yoga-nav-menu .yoga-nav-reserve img {
  max-width: 2em;
}

.yoga-header .yoga-nav .yoga-nav-menu .yoga-nav-menu-item {
  font-size: 14px;
}

@media (max-width: 767px) {
  .yoga-header h1 {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
}
/* ------------------------------
	ハンバーガー
------------------------------ */
#yoga_contents .drawer-hamburger {
  z-index: 35 !important;
  width: 40px !important;
}

#yoga_contents .drawer-hamburger-icon,
#yoga_contents .drawer-hamburger-icon:after,
#yoga_contents .drawer-hamburger-icon:before {
  background: #56534f;
}

#yoga_contents.drawer-open .drawer-hamburger-icon {
  background: transparent;
}

#yoga_contents .drawer-nav {
  z-index: 30 !important;
  padding: 40px 15px 100px;
  background: #f8f6f0 !important;
  line-height: 1.5 !important;
}

#yoga_contents .drawer-menu {
  padding: 0 !important;
  text-align: center;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

#yoga_contents .drawer-menu li:nth-of-type(n + 2) {
  margin-top: 24px;
}

#yoga_contents .drawer-menu-item {
  padding: 0 !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  color: #56534f !important;
}

.yoga-drawer-reserve {
  margin-top: 30px;
}

.yoga-drawer-reserve a {
  background-color: #ece562;
  border-radius: 100px;
  padding: 16px 20px;
  font-size: 14px;
  opacity: 1;
  transition: 0.3s;
}

.yoga-drawer-reserve a:hover {
  background-color: #56534f;
  color: #fff;
}

.yoga-drawer-reserve a::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 2px;
  vertical-align: middle;
  background-image: url(../img/yoga/point.png);
}

.yoga-drawer-reserve a:hover:before {
  background-image: url(../img/yoga/point_white.png);
}

.yoga-drawer-reserve img {
  max-width: 2em;
}

.yoga-drawer-sns {
  margin-top: 6vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3vw;
  padding: 0 2vw;
}

.yoga-drawer-sns a {
  background: #565656;
  border-radius: 200px;
  padding: 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------------
	COMMON CLASS
------------------------------ */
#sub_contents--yoga {
  text-align: left;
  line-height: 2;
}

#sub_contents--yoga {
  background: #f8f6f0;
}

#sub_contents--yoga .sub--bgcolor {
  background: url(../img/yoga/bg_wall.jpg);
}

/* ------------------------------
	btn
------------------------------ */
.yoga__cmn__btn {
  border-radius: 100px;
  padding: 16px 30px;
  opacity: 1;
  transition: 0.3s;
  background-color: #ece562;
  border: 2px solid #ece562;
  display: inline-block;
}

.yoga__cmn__btn:hover {
  background: #56534f;
  color: #fff;
  border: 2px solid #fff;
  opacity: 1;
}

.yoga__cmn__btn::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 4px; /* テキストとの間に余白 */
  vertical-align: text-bottom;
}

.yoga__cmn__btn.btn-reserve:before {
  background-image: url(../img/yoga/point.png);
}

.yoga__cmn__btn.btn-schedule:before {
  background-image: url(../img/yoga/calender.png);
}

.yoga__cmn__btn.btn-reserve:hover::before {
  background-image: url(../img/yoga/point_white.png);
}

.yoga__cmn__btn.btn-schedule:hover::before {
  background-image: url(../img/yoga/calender_white.png);
}

.yoga__cmn__btn_fixicon {
  position: relative;
  border-radius: 100px;
  padding: 10px 50px 10px 30px; /* 右にアイコン分の余白 */
  width: 270px;
  max-width: 100%;
  opacity: 1;
  transition: 0.3s;
  background-color: #56534f;
  border: 2px solid #56534f;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: clamp(16px, 1.2vw + 0.5rem, 18px);
}

.yoga__cmn__btn_fixicon.btn-more::after {
  content: "";
  position: absolute;
  top: 50%; /* 縦中央 */
  right: 20px; /* 右から20px固定 */
  transform: translateY(-50%);
  width: 20px; /* アイコンサイズ */
  height: 20px;
  background-image: url("../img/yoga/wht_arw.png"); /* PNGアイコン */
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: background-image 0.3s;
  background-position: center;
}

.yoga__cmn__btn_fixicon:hover {
  background: #fff;
  color: #56534f;
  border: 2px solid #56534f;
  opacity: 1;
}

.yoga__cmn__btn_fixicon:hover.btn-more::after {
  background-image: url("../img/yoga/blk_arw.png"); /* ホバー用PNG */
}

.yoga__cmn__btn_fixicon--back {
  position: relative;
  border-radius: 100px;
  padding: 10px 30px 10px 50px;
  width: 270px;
  max-width: 100%;
  opacity: 1;
  transition: 0.3s;
  background-color: #56534f;
  border: 2px solid #56534f;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: clamp(16px, 1.2vw + 0.5rem, 18px);
}

.yoga__cmn__btn_fixicon--back.btn-back::after {
  content: "";
  position: absolute;
  top: 50%; /* 縦中央 */
  left: 20px; /* ★ 左から20px固定に変更 */
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(180deg);
  background-image: url("../img/yoga/wht_arw.png");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: background-image 0.3s;
  background-position: center;
}

.yoga__cmn__btn_fixicon--back:hover {
  background: #fff;
  color: #56534f;
  border: 2px solid #56534f;
  opacity: 1;
}

.yoga__cmn__btn_fixicon--back:hover.btn-back::after {
  background-image: url("../img/yoga/blk_arw.png");
  transform: translateY(-50%) rotate(180deg);
}

/* ------------------------------
	pagenation
------------------------------ */
/* ページネーション全体を中央揃えにする */
.yoga-news-pagenation .pagination {
  margin-top: 40px;
  text-align: center; /* 内部のリンクを中央に寄せる */
}

/* 各リンク/番号のコンテナ */
.yoga-news-pagenation .nav-links {
  display: inline-flex;
  gap: 8px; /* 各要素間のスペース */
}

/* リンクと現在のページ番号の共通スタイル */
.yoga-news-pagenation .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px; /* サイズを固定 */
  height: 40px;
  border: 1px solid #666;
  color: #56534f;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 0 10px;
  border-radius: 4px;
}

/* 現在のページ番号のスタイル */
.yoga-news-pagenation .page-numbers.current {
  background-color: #56534f; /* 例: メインカラー */
  color: #fff;
  border-color: #56534f;
  font-weight: bold;
}

/* ホバー時のスタイル */
.yoga-news-pagenation a.page-numbers:hover {
  background-color: #eee;
  color: #56534f;
}

@media (max-width: 600px) {
  .yoga-news-pagenation .nav-links {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .yoga-news-pagenation .prev.page-numbers,
  .yoga-news-pagenation .next.page-numbers {
    width: calc(50% - 8px); /* 画面の半分くらいにする例 */
  }
}
/* ------------------------------
	sub_visual--yoga
------------------------------ */
.bg_img--yoga {
  display: flex;
  justify-content: center;
  padding: 140px 0;
  padding: 130px 0 clamp(60px, 10vw, 140px);
  position: relative;
}

.bg_img--yoga_txt {
  background-color: #658e7c;
  max-width: 90%;
  border-radius: 500px;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 3em 5em;
  position: relative;
}

.bg_img--yoga_txt h2 {
  font-size: clamp(28px, 6vw, 50px);
  font-weight: 600;
  display: block;
  line-height: 1.2;
}

.bg_img--yoga_txt h2 span {
  font-size: clamp(16px, 2.5vw, 26px);
  font-weight: 300;
  display: inline-block;
  margin-top: 0.5em;
}

.bg_img--yoga_txt_line {
  width: 100%;
  background-color: #fff;
  height: 1px;
  display: block;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

.bg_img--yoga_txt h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  color: #ece562;
  display: block;
  line-height: 1;
}

.bg_img--yoga_img img {
  position: absolute;
  max-width: 250px;
  width: clamp(140px, 20vw, 250px);
}

.bg_img--yoga_img .yoga_img01 {
  left: clamp(-200px, -11vw, -80px);
  top: clamp(-200px, -10vw, -80px);
}

.bg_img--yoga_img .yoga_img02 {
  right: clamp(-200px, -10vw, -80px);
  top: clamp(-200px, -10vw, -80px);
}

.bg_img--yoga_img .yoga_img03 {
  left: clamp(-200px, -10vw, -70px);
  bottom: clamp(-200px, -10vw, -80px);
}

.bg_img--yoga_img .yoga_img04 {
  right: clamp(-170px, -8vw, -50px);
  bottom: clamp(-170px, -8vw, -50px);
}

@keyframes sway {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
.yoga_img01,
.yoga_img02,
.yoga_img03,
.yoga_img04 {
  animation: sway 3s ease-in-out infinite;
}

/* 遅延で揺れをズラす */
.yoga_img01 {
  animation-delay: 0s;
}

.yoga_img02 {
  animation-delay: 0.3s;
}

.yoga_img03 {
  animation-delay: 0.6s;
}

.yoga_img04 {
  animation-delay: 0.9s;
}

.yoga_subvisial_btn {
  background: #56534f;
  display: flex;
  padding-top: clamp(30px, 5vw, 60px);
  padding-bottom: clamp(30px, 5vw, 60px);
  padding-left: clamp(40px, 7vw, 70px);
  padding-right: max(10%, 100% - 1560px);
  border-radius: 100px 0 0 100px;
  width: fit-content;
  margin-left: auto;
  max-width: 100%;
  margin-top: 3vw;
}

.yoga_subvisial_btn .flex__item:nth-of-type(2) {
  margin-left: clamp(20px, 5vw, 60px);
}

.yoga_subvisial_btn02 {
  background-color: #fff;
  border: 2px solid #fff;
}

.yoga_subvisial_btn .flex__item a img {
  margin-right: 0.2em;
  max-width: 2em;
}

@media (max-width: 767px) {
  .bg_img--yoga_txt {
    padding: 4em 1em;
  }
  .yoga_subvisial_btn {
    display: block;
  }
  .yoga_subvisial_btn .flex__item:nth-of-type(2) {
    margin-left: 0;
    margin-top: 10px;
  }
}
/* ------------------------------
	layout
------------------------------ */
#sub_contents--yoga .mt-80 {
  margin-top: 80px;
}

@media (max-width: 767px) {
  #sub_contents--yoga .mt-80 {
    margin-top: 40px;
  }
}
#sub_contents--yoga .mt-100 {
  margin-top: 100px;
}

@media (max-width: 767px) {
  #sub_contents--yoga .mt-100 {
    margin-top: 70px;
  }
}
#sub_contents--yoga section:first-of-type {
  padding-top: 20px;
}

@media (max-width: 767px) {
  #sub_contents--yoga section:first-of-type {
    padding-top: 10px;
  }
}
#sub_contents--yoga section:last-of-type {
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  #sub_contents--yoga section:last-of-type {
    padding-bottom: 40px;
  }
}
#sub_contents--yoga .subcontents__inner {
  margin: 0 auto;
  padding-top: clamp(60px, 12vw, 120px);
  padding-bottom: clamp(90px, 15vw, 120px);
  padding-left: 0;
  padding-right: 0;
  max-width: 1040px;
  width: 90%;
}

#sub_contents--yoga .subcontents__inner__sml:not(:first-of-type) {
  margin-top: 80px;
}

@media (max-width: 767px) {
  #sub_contents--yoga .subcontents__inner__sml:not(:first-of-type) {
    margin-top: 60px;
  }
}
/* ------------------------------
	flex box
------------------------------ */
#sub_contents--yoga .sub__flex p:not(:first-of-type) {
  margin-top: 1em;
}

#sub_contents--yoga .sub__flex--01 .flex__img {
  width: 40%;
}

@media (max-width: 767px) {
  #sub_contents--yoga .sub__flex--01 .flex__img {
    width: 100%;
  }
}
#sub_contents--yoga .sub__flex--01 .flex__txt {
  width: 54%;
}

@media (max-width: 767px) {
  #sub_contents--yoga .sub__flex--01 .flex__txt {
    margin-top: 1.5em;
    width: 100%;
  }
}
/* ------------------------------
	title
------------------------------ */
#sub_contents--yoga .ttl-01 {
  margin-bottom: 60px;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 1040px) {
  #sub_contents--yoga .ttl-01 {
    margin-bottom: clamp(20px, 4vw, 40px);
  }
}
#sub_contents--yoga .ttl-01 span {
  color: #658e7c;
  display: block;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-size: clamp(46px, 5vw, 56px);
  font-family: "Quicksand", sans-serif;
  line-height: 1;
  overflow-wrap: break-word;
}

#sub_contents--yoga .ttl-02 {
  margin-bottom: 30px;
  font-size: 30px;
  border-bottom: 1px solid #d4ab37;
  line-height: 1.2;
  padding-bottom: 10px;
}

@media (max-width: 1040px) {
  #sub_contents--yoga .ttl-02 {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
/* ------------------------------
	text
------------------------------ */
#sub_contents--yoga .text_area p:not(:first-child) {
  margin-top: 1em;
}

#sub_contents--yoga .sub_txt01 {
  font-size: 2.5rem;
}

@media (max-width: 767px) {
  #sub_contents--yoga .sub_txt01 {
    font-size: 2rem;
  }
}
/*
Wordpress single-page
__________________________*/
.single p {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
}

.single strong {
  font-weight: bold;
}

.single cite,
.single em,
.single i {
  font-style: italic;
}

.single big {
  font-size: 131.25%;
}

.single ins {
  background: #ffc;
  text-decoration: none;
}

.single blockquote {
  padding: 3em;
  font-style: italic;
}

.single blockquotecite,
.single blockquoteem,
.single blockquotei {
  font-style: normal;
}

.single pre {
  overflow: auto;
  margin-bottom: 18px;
  padding: 1.5em;
  background: #f7f7f7;
  color: #222;
  line-height: 18px;
}

.single abbr,
.single acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

.single sup,
.single sub {
  position: relative;
  height: 0;
  vertical-align: baseline;
  line-height: 1;
}

.single sup {
  bottom: 1ex;
}

.single sub {
  top: 0.5ex;
}

.single img,
.single img.alignnone {
  display: inline-block;
  margin-bottom: 10px;
  font-size: inherit;
}

img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img {
  max-width: 100%;
  height: auto;
}

.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-top: 4px;
  margin-right: 24px;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-top: 4px;
  margin-left: 24px;
}

.aligncenter,
img.aligncenter {
  display: block;
  clear: both;
  margin-right: auto;
  margin-left: auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 12px;
}

.single table,
.single th,
.single td {
  border: 1px solid #000;
}

.single table {
  margin: 0 0 28px;
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  border-width: 1px 0 0 1px;
}

.single table th,
.single table caption {
  padding: 7px;
  border-width: 0 1px 1px 0;
  vertical-align: baseline;
  text-align: left;
}

.single table td {
  padding: 7px;
  border-width: 0 1px 1px 0;
  vertical-align: baseline;
}

#sub_contents--yoga .single img {
  width: auto;
}

/*============================
	ABOUT
============================*/
.flex-cen.flex__yoga_about-feature {
  display: flex;
  gap: clamp(16px, 4vw, 40px);
  justify-content: center;
  flex-wrap: wrap;
}

.flex-cen.flex__yoga_about-feature .flex__item {
  background: #fff;
  border-radius: 30px;
  width: 285px;
  height: 285px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  align-items: center;
}

.flex__yoga_about-feature__txt {
  margin-top: clamp(10px, 2vw, 20px);
  font-size: clamp(16px, 1.2vw + 0.5rem, 18px);
}

.yoga-about-txt01 {
  text-align: center;
  margin-top: 60px;
  font-size: 18px;
  font-weight: 400;
}

.flex-btw.flex__yoga_about-imgarea {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(30px, 5vw, 100px);
}

.flex-btw.flex__yoga_about-imgarea .flex__item {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  display: block;
  object-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.yoga_about_img01 {
  background-image: url(../img/yoga/about_img01.jpg);
}

.yoga_about_img02 {
  background-image: url(../img/yoga/about_img02.jpg);
}

.yoga_about_img03 {
  background-image: url(../img/yoga/about_img03.jpg);
}

.yoga_about_img04 {
  background-image: url(../img/yoga/about_img04.jpg);
}

@media screen and (max-width: 767px) {
  .flex-cen.flex__yoga_about-feature .flex__item {
    width: 220px;
    height: 220px;
  }
  .flex-cen.flex__yoga_about-feature .flex__item img {
    max-width: 80px;
  }
  .flex-btw.flex__yoga_about-imgarea {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*============================
	PRICE
============================*/
#sub_contents--yoga #yoga-price {
  margin-top: -200px;
  padding-top: calc(clamp(50px, 11vw, 120px) + 200px);
}

.flex-btw.flex__yoga_price-feature {
  justify-content: center;
  gap: clamp(12px, 3vw, 30px);
}

.flex-btw.flex__yoga_price-feature .flex__item {
  border-radius: 300px;
  border: #000 1px solid;
  width: 260px;
  height: 260px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.yoga-price-txt__wrap {
  margin-top: 40px;
  text-align: center;
}

.yoga-price-txt {
  text-align: center;
  background-color: #fff;
  border-radius: 30px;
  font-size: 16px;
  padding: clamp(20px, 5vw, 40px) clamp(30px, 10vw, 100px);
  display: inline-block;
}

.yoga-price-txt .txt01 span {
  font-size: 36px;
  line-height: 1.2;
}

.yoga-price-txt .txt02 {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .flex-btw.flex__yoga_price-feature .flex__item {
    width: 240px;
    height: 240px;
  }
  .yoga-price-txt .txt01 span {
    font-size: 26px;
  }
  .yoga-price-txt .txt02 {
    font-size: 14px;
    text-align: left;
  }
}
/*============================
	SCHEDULE
============================*/
.yoga-schedule-txt01 {
  text-align: center;
}

.yoga-schedule-table__wrap {
  margin-top: clamp(15px, 3vw, 30px);
  text-align: center;
}

.yoga-schedule-table {
  background-color: #fff;
  border-radius: 30px;
  display: inline-block;
  padding: clamp(30px, 7vw, 50px) clamp(30px, 10vw, 100px);
  font-size: 20px;
  font-weight: 600;
  text-align: left;
}

.yoga-schedule-table p {
  line-height: 1.2;
}

.yoga-schedule-table p::before {
  content: "●";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
  color: #658e7c;
}

.yoga-schedule-table p:not(:first-of-type) {
  margin-top: 1em;
}

.yoga-schedule-btn {
  margin-top: 40px;
  text-align: center;
}

.flex__yoga_schedule_images {
  margin-top: -5vh;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.flex__yoga_schedule_images img {
  width: 20%;
  max-width: 230px;
  height: auto;
}

/*============================
	INSTRUCTOR
============================*/
.yoga-instructor-profile {
  background-color: #fff;
  border-radius: 30px;
  padding: clamp(30px, 7vw, 50px) clamp(40px, 10vw, 80px);
}

.flex__yoga_instructor {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.flex__yoga_instructor-left {
  width: 40%;
  min-width: 190px;
}

.yoga_instructor__img {
  border-radius: 50%;
  background: url(../img/yoga/instructor.jpg) no-repeat center/cover;
  display: block;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1/1;
}

.yoga_contents .yoga-instructor-txt01 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 1px solid #56534f;
  padding-bottom: 20px;
}

.yoga-instructor-txt02 {
  margin-top: 20px;
  font-size: 16px;
}

.yoga-instructor-txt02 p:nth-of-type(n + 2) {
  margin-top: 1em;
}

.yoga-instructor-txt02 p span {
  color: #658e7c;
}

@media screen and (max-width: 767px) {
  .flex__yoga_instructor {
    display: block;
  }
  .flex__yoga_instructor .flex__item {
    width: 100%;
  }
  .yoga_instructor__img {
    margin-left: auto;
    margin-right: auto;
  }
  .flex__yoga_instructor-right {
    margin-top: 30px;
  }
}
/*============================
	VOICE
============================*/
.flex__yoga_voice {
  display: grid;
  gap: clamp(20px, 4vw, 40px);
  grid-template-columns: repeat(2, 1fr); /* 2列 */
}

.flex__yoga_voice > .flex__item {
  background-color: #fff;
  border-radius: 30px;
  padding: clamp(30px, 4vw, 40px) clamp(35px, 5vw, 50px);
}

.flex__yoga_voice-upper {
  display: flex;
  justify-content: space-between;
}

.flex__yoga_voice-upper-img {
  width: 23%;
}

.flex__yoga_voice-upper-txt {
  font-weight: 600;
  width: 70%;
}

.yoga_contents .flex__yoga_voice-upper-ttl {
  color: #658e7c;
  font-weight: 700;
}

.flex__yoga_voice-upper-age {
  margin-top: 0.2em;
  text-align: right;
}

.flex__yoga_voice-lower {
  margin-top: 1em;
}

.flex__yoga_voice-lower-txt {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .flex__yoga_voice {
    grid-template-columns: repeat(1, 1fr);
  }
  .flex__yoga_voice-upper {
    display: block;
  }
  .flex__yoga_voice-upper-img {
    width: 100%;
    text-align: center;
  }
  .flex__yoga_voice-upper-txt {
    width: 100%;
    margin-top: 1.5em;
  }
}
/*============================
	NEWS
============================*/
#yoga-news .yoga-news-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

#yoga-news .yoga-news-item {
  flex: 1 1 calc(33.333% - 40px);
}

#yoga-news .yoga-news-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 63.186%;
  overflow: hidden;
  border-radius: 20px;
}

#yoga-news .yoga-news-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* コンテナいっぱいに広げる */
  object-fit: cover; /* 画像をトリミングし、コンテナ全体を覆うように表示 */
}

#yoga-news .yoga-news-date {
  margin-top: 10px;
}

#yoga-news .yoga-news-date p {
  font-family: "Quicksand", sans-serif;
  color: #658e7c;
  font-weight: 600;
  font-size: clamp(18px, 1.5vw + 0.5rem, 20px);
}

#yoga-news .yoga-news-ttl h4 {
  line-height: 1.5;
  font-size: clamp(16px, 1.2vw + 0.5rem, 18px);
}

#yoga-news .yoga-news-btn {
  text-align: center;
  margin-top: clamp(30px, 5vw, 50px);
}

@media screen and (max-width: 767px) {
  #yoga-news .yoga-news-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/*============================
	FAQ
============================*/
.yoga-faq-item {
  border-top: #56534f 1px solid;
  padding: clamp(10px, 5vw, 30px) 0 clamp(15px, 6vw, 35px);
}

.yoga-faq-item:last-of-type {
  border-bottom: #56534f 1px solid;
}

.yoga-faq-item-q {
  display: flex;
  align-items: center;
}

.yoga-faq-item-q .circle {
  font-family: "Quicksand", sans-serif;
  font-size: 20px;
  color: #fff;
  display: inline-block; /* サイズを文字に合わせる */
  background-color: #658e7c; /* 好きな背景色 */
  border-radius: 50%; /* 丸くする */
  width: 2em; /* 幅 */
  height: 2em; /* 高さ */
  line-height: 2em; /* 縦中央揃え */
  text-align: center; /* 横中央揃え */
  user-select: none;
  margin-right: clamp(0.5em, 2vw, 1em);
  min-width: 2em;
}

.yoga-faq-item-q .q_txt {
  font-weight: 700;
  margin-top: 0.2em;
  line-height: 1.5;
}

.yoga-faq-item-a {
  margin-top: clamp(0.5em, 3vw, 1em);
}

.yoga-faq-item-a .a_txt {
  font-size: 16px;
}

/*============================
	ACCESS
============================*/
.yoga-access__flex {
  display: grid;
  gap: clamp(20px, 5vw, 100px);
  grid-template-columns: 1fr 1fr;
}

.yoga-access-map .gmap {
  height: clamp(250px, 50vw, 320px);
}

.yoga-access-map .gmap iframe {
  max-width: 100%;
  max-height: 100%;
  border-radius: 30px;
}

.yoga-access-txt01-name-ttl {
  font-size: 20px;
}

.yoga-access-txt01-name-btn {
  margin-top: clamp(8px, 3vw, 20px);
  display: inline-block;
}

.yoga-access-txt01-name-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: 0.3s;
  font-size: 16px;
  background-color: #fff;
  border-radius: 100px;
  padding: clamp(10px, 3vw, 15px) clamp(20px, 6vw, 40px);
}

.yoga-access-txt01-name-btn a::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 4px;
  vertical-align: text-bottom;
  background-image: url(../img/yoga/home.png);
}

.yoga-access-txt01-name-btn a:hover:before {
  background-image: url(../img/yoga/home_white.png);
}

.yoga-access-txt01-name-btn a img {
  max-width: 2em;
  margin-right: 0.5em;
}

.yoga-access-txt01-name-btn a:hover {
  background-color: #56534f;
  color: #fff;
}

.yoga-access-txt01-add {
  font-size: 16px;
  margin-top: clamp(10px, 4vw, 30px);
}

.yoga-access-txt01-phone {
  font-size: 30px;
  font-family: "Quicksand", sans-serif;
  margin-top: clamp(10px, 4vw, 30px);
}

.yoga-access-txt01-phone a {
  text-decoration: underline;
}

.yoga-access-txt01-phone-caution {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .yoga-access__flex {
    display: block;
  }
  .yoga-access-txt01 {
    margin-top: 4vh;
  }
}
/* ------------------------------
	footer
------------------------------ */
.yoga-footer {
  background-color: #56534f;
  color: #fff;
  text-align: right;
  padding-bottom: 130px;
}

@media screen and (max-width: 767px) {
  .yoga-footer {
    padding-bottom: 60px;
  }
}
footer .inner {
  margin: 0 auto;
  padding: 80px 0 100px;
  max-width: 1040px;
  width: 90%;
}

@media (max-width: 767px) {
  footer .inner {
    padding: 40px 0 40px;
  }
}
.yoga-footer .yoga-footer__sns {
  display: flex;
  gap: 50px;
  justify-content: right;
}

.yoga-footer .yoga-footer__sns a {
  max-width: 60px;
}

@media (max-width: 767px) {
  .yoga-footer .yoga-footer__sns {
    gap: 30px;
    margin-top: 20px;
  }
  .yoga-footer .yoga-footer__sns a {
    max-width: 40px;
  }
}
.yoga-footer .yoga-footer__copy {
  margin-top: 50px;
  text-align: right;
  font-size: 12px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .yoga-footer .yoga-footer__copy {
    margin-top: 40px;
    font-size: 10px;
  }
}
/* ------------------------------
	footer_sticky
------------------------------ */
.yoga-footer_sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%); /* 最初は隠す */
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 1000;
}

.yoga-footer .yoga-footer_sticky.fixed {
  position: fixed;
  bottom: 0;
  z-index: 50;
  padding: 35px 0;
  width: 100%;
  background-color: #658e7c;
  transition: all 0.5s;
  left: 0;
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 767px) {
  .yoga-footer .yoga-footer_sticky.fixed {
    padding: 0;
  }
}
.yoga-footer .yoga-footer_sticky .inner {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .yoga-footer .yoga-footer_sticky .inner {
    margin: 0;
    width: 100%;
  }
}
.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky {
  display: flex;
  /* gap: 40px; */
  color: #fff;
}

@media (max-width: 767px) {
  .yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky {
    gap: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
}
.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item {
  position: relative;
  width: calc(33.3% - 20px);
  height: 60px;
}

@media (max-width: 1040px) {
  .yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item {
    width: calc(33.3% - 6.6666666667px);
  }
}
@media (max-width: 767px) {
  .yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item {
    width: 33.3%;
    height: 60px;
  }
}
.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item a {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.3s;
  text-decoration: none;
  color: #4d4640;
  font-size: 20px;
  border-radius: 100px;
}

@media (max-width: 767px) {
  .yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item a {
    border-radius: 0;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: 0;
    text-align-last: left;
  }
}
.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item.sticky-home a {
  background-color: #fff;
}

.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item.sticky-reserve a {
  background-color: #ece562;
}

.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item.sticky-schedule a {
  background-color: #fff;
}

.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item a::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 4px; /* テキストとの間に余白 */
  vertical-align: middle;
}

.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item a:hover {
  background-color: #56534f;
  color: #fff;
}

.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item.sticky-home a::before {
  background-image: url(../img/yoga/home.png);
}

.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item.sticky-reserve a::before {
  background-image: url(../img/yoga/point.png);
}

.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item.sticky-schedule a::before {
  background-image: url(../img/yoga/calender.png);
}

.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item.sticky-home a:hover:before {
  background-image: url(../img/yoga/home_white.png);
}

.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item.sticky-reserve a:hover:before {
  background-image: url(../img/yoga/point_white.png);
}

.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item.sticky-schedule a:hover:before {
  background-image: url(../img/yoga/calender_white.png);
}

.yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item img {
  margin-right: 10px;
  width: 1.2em;
  height: auto;
}

@media (max-width: 767px) {
  .yoga-footer .yoga-footer_sticky .flex__yoga-footer_sticky .flex__item img {
    margin-right: 5px;
    width: 1em;
  }
}
/*============================
	ヨガ下層共通
============================*/
.yoga-subpage #yoga-sub_visual {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 50px;
  padding-bottom: 50px;
  background: url(../img/yoga/bg_wall.jpg);
}

.yoga-sub_visual--ttl {
  background-color: #fff;
  opacity: 0.8;
  border-radius: 100px;
  padding: 20px 70px;
  text-align: center;
}

.yoga-sub_visual--ttl_txt {
  color: #658e7c;
  font-family: "Quicksand", sans-serif;
  text-transform: uppercase;
  font-size: clamp(28px, 4vw + 1rem, 40px);
  line-height: 1.5;
}

.yoga-sub_visual--ttl_txt span {
  color: #56534f;
  display: block;
  font-size: clamp(16px, 1.5vw + 0.5rem, 20px);
}

@media (max-width: 767px) {
  .yoga-subpage {
    margin-top: 100px;
  }
}
/* ------------------------------
	パンくず
------------------------------ */
.yoga-subpage #breadcrumbs {
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  max-width: 1040px;
  width: 90%;
  line-height: 1.2;
  padding-top: 10px;
  padding-bottom: 10px;
}

.yoga-subpage #breadcrumbs span {
  font-size: 14px;
  font-weight: 400;
}

/*============================
	NEWS(一覧)
============================*/
.yoga-archive .no-posts {
  text-align: center;
}

.yoga-archive .yoga-back-btn {
  margin-top: clamp(40px, 5vw, 50px);
  text-align: center;
}

/*============================
	NEWS(詳細)
============================*/
.yoga-single .entry-title {
  font-size: clamp(20px, 2vw + 1rem, 24px);
  line-height: 1.5;
}

.yoga-single .yoga-news-date {
  color: #658e7c;
  margin-top: 5px;
}

.yoga-single .yoga-news-date p {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.yoga-single .entry-content {
  margin-top: clamp(16px, 3vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  font-size: clamp(16px, 1.2vw + 0.5rem, 18px);
}

.yoga-single .entry-content img {
  width: 100%;
  padding-top: clamp(16px, 3vw, 20px);
  padding-bottom: clamp(16px, 3vw, 20px);
}

/* -------------------------------------------------- */
/* 記事ナビゲーション全体のコンテナ */
/* -------------------------------------------------- */
.yoga-single .yoga-post-navigation {
  margin-top: clamp(30px, 5vw, 50px);
  margin-bottom: clamp(20px, 5vw, 40px);
  border-top: 1px solid #eeeeee;
  padding: 30px 0 0;
}

.yoga-single .yoga-post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.yoga-single .yoga-post-navigation a {
  position: relative;
  display: flex; /* flexを使い、タイトルとアイコンを整列させる */
  align-items: center;
  gap: 8px; /* アイコンとテキストの間のスペース */
  color: #56534f;
  text-decoration: none;
  font-size: clamp(14px, 1.5vw + 0.5rem, 18px);
  transition: color 0.3s;
}

/* -------------------------------------------------- */
/* ★ 新規追加: 記事タイトル表示の制御（重要） ★ */
/* -------------------------------------------------- */
.yoga-single .yoga-post-navigation a .post-title {
  word-break: break-word;
  white-space: normal;
  max-width: calc(100% - 30px);
  flex-shrink: 1;
}

/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* 1. 次の記事 (右側) のスタイル */
/* -------------------------------------------------- */
.yoga-single .yoga-post-navigation .nav-next {
  flex-grow: 1;
  text-align: right;
  display: flex;
  justify-content: flex-end; /* 子要素のaタグを右端に寄せる */
  line-height: 1.2;
  font-weight: 400;
  max-width: 50%;
  min-width: 0;
}

/* 右矢印アイコン (タイトル後) */
.yoga-single .yoga-post-navigation .nav-next a::after {
  content: "";
  display: block;
  width: 15px; /* ★固定サイズ */
  height: 15px; /* ★固定サイズ */
  background-image: url("../img/yoga/blk_arw.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(0deg);
  /* ★ Flexアイテムとして縮小しないように設定 */
  flex-shrink: 0;
}

/* -------------------------------------------------- */
/* 2. 前の記事 (左側) のスタイル */
/* -------------------------------------------------- */
.yoga-single .yoga-post-navigation .nav-previous {
  flex-grow: 1;
  text-align: left;
  display: flex;
  justify-content: flex-start; /* 子要素のaタグを左端に寄せる */
  line-height: 1.2;
  font-weight: 400;
  max-width: 50%;
  min-width: 0;
}

/* 左矢印アイコン (タイトル前) */
.yoga-single .yoga-post-navigation .nav-previous a::before {
  content: "";
  display: block;
  width: 15px; /* ★固定サイズ */
  height: 15px; /* ★固定サイズ */
  background-image: url("../img/yoga/blk_arw.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  /* ★ Flexアイテムとして縮小しないように設定 */
  flex-shrink: 0;
}

/* -------------------------------------------------- */
/* スマートフォンでの調整 */
/* -------------------------------------------------- */
@media (max-width: 600px) {
  .yoga-single .yoga-post-navigation .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .yoga-single .yoga-post-navigation .nav-previous,
  .yoga-single .yoga-post-navigation .nav-next {
    flex-grow: 0;
    width: 100%;
    text-align: center;
    padding: 5px 0;
    max-width: 100%; /* モバイルでは全幅を許可 */
  }
  .yoga-single .yoga-post-navigation .nav-previous a,
  .yoga-single .yoga-post-navigation .nav-next a {
    justify-content: center;
    max-width: 90%; /* リンク自体を画面中央に小さく収める */
    margin: 0 auto;
  }
}
.yoga-single .yoga-back-btn {
  margin-top: clamp(30px, 5vw, 50px);
  text-align: center;
}

/*# sourceMappingURL=style-yoga.css.map */
