@charset"UTF-8";

/*============
UnderArticle_Header
==============*/

.yogaunderArticle_header{
  background-image: url(../image/TxtbackImg/BackImgTxt.png);
  background-size: 100%;
  background-repeat: no-repeat;
  PADDING: 35% 0 35%;
}

.underArticleHeader_title{
  color: var(--primary-brown);
  text-align: center;
  font-family: "Kaisei Opti";
  font-size: 2.3rem;
  font-weight: 700;
}

.underArticleHeader_subitle{
  color: var(--primary-maingreen);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}

/*UnderArticle_Header PC 769px*/
@media screen and (min-width: 769px) {
.yogaunderArticle_header{
  background-image: url(../image/TxtbackImg/backimgTxt-PC.png);
  background-position: center;
  padding: 24% 0 23%;
}

.underArticleHeader_title{
  font-size: 4rem;
}

.underArticleHeader_subitle{
  font-size: 2.4rem;
}
}/*UnderArticle_Header PC 769px*/

/*============
Overview
==============*/
.overviewTitlImg_PC_yellow{
  display: none;
}

.overviewTitlImg_PC_pink{
  display: none;
}

.overview{
  padding: 10px 5.3%;
}

.overviewTitle{
  color: var(--primary-brown);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  position: relative;
  text-align: center;
}

.overviewTitle::after{
  position: absolute;
  content: '';
  width: 250px;
  height: 32px;
  display: inline-block;
  background-image: url(../image/Bird/UnderBird.png);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -50px;
  left: 16%;
}

.greenDot{
  text-emphasis: filled circle var(--primary-maingreen);
}

.overviewTxt{
  margin-top: 80px;
  color: var(--primary-brown);
  font-size: 1.4rem;
}

/*Overview PC 769px*/
@media screen and (min-width: 769px) {
.br_pc{
  display: block;
}

.overviewTitle{
  font-size: 3rem;
  margin-top: -100px
}

.overviewTxt {
  font-size: 1.8rem;
  padding: 58px 25% 0;
  margin-top: 0;
}

.br_sp{
  display: none;
}

.overviewTitleBox{
  display: flex;
  align-items: center;
  justify-content: center;
}

.overviewTitlImg_PC_yellow{
  display: block;
  width: 8%;
  transform:scale(-1,1) rotate(30deg);
  margin-right: 5%;
  margin-top: -90px;
}
  
.overviewTitlImg_PC_pink{
  display: block;
  width: 8%;
  transform: rotate(30deg);
  margin-left: 5%;
  margin-top: -90px;
}

.overviewTitle::after{
  display: none;
}
}
/*Overview PC 769px*/

/*============
Yoga-menu
==============*/
.yoga-menuList{
  padding: 20px 5.3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.yoga-menuItem{
  background-color: var(--primary-maingreen);
  border-radius: 50px;
  color: #FFF;
  font-weight: 400;
  font-size: 1.4rem;
  width: 43vw;
  height: 50px;
  padding: 15px;
  text-align: center;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
  transition:0.4s;
  position: relative;
}

.yoga-menuItem_Schedule{
  padding: 5px;
}

.yoga-menuItem::after{
  position: absolute;
  content: '';
  display: inline-block;
  background-image: url(../image/ArrowBtn/chevron-down-outlineWhite.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  top: 45%;
  right: 8%;
}


.yoga-menuItem:hover {
  background:#FFF;
  color: var(--primary-maingreen);
  border: 2px solid var(--primary-maingreen);
}

.yoga-menuItem:hover::after{
  position: absolute;
  content: '';
  display: inline-block;
  background-image: url(../image/ArrowBtn/greenBtnarrow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  top: 45%;
  right: 8%;
}

/*yoga-menu PC 769px*/
@media screen and (min-width: 769px) {
.yoga-menuList {
  padding: 60px 25% 20px;
  gap: 20px;
  margin-top: 0;
}
  
.yoga-menuItem{
  font-size: 1.8rem;
  width: 15vw;
  height: 60px;
  padding: 16px;
}

.yoga-menuItem_Schedule{
  padding: 3px;
}
}/*yoga-menu PC 769px*/

/*============
yoga-meritBox
==============*/
.yoga-meritBox{
  position: relative;
  margin-top: 40px;
}

/*JSあしらい鳥（黄色）*/
.specialevent{
  margin-top: 40px;
  position: relative;
}

.image-container {
  overflow: hidden;
  width: 100%;
  height: 40vh;
  position: absolute;
  z-index: 50;
  top: -2.5%;
}

.jsyellowBird {
  width: 13%;
  height: auto;
  transform: translateX(-100%); /* 初期位置を左に設定 */
  opacity: 0;
  transition: transform 5s ease, opacity 1s ease; /* エフェクトの速度を調整 */
}

.image-container.visible .jsyellowBird {
  transform: translate(100vw,100px); /* 表示位置 */
  opacity: 1;
}

.image-container.hidden .jsyellowBird {
  transform: translateX(100%); /* フェードアウト時の位置 */
  opacity: 0;
}

/*JSあしらい鳥（Pink）*/
.image-container2 {
  overflow: hidden;
  width: 100%;
  height: 40vh;
  position: absolute;
  z-index: 50;
  top: 95%;
}

.jspinkbutterfly {
  width: 13%;
  height: auto;
  transform: translateX(100vw); /* 初期位置を右に設定 */
  opacity: 0;
  transition: transform 5s ease, opacity 1s ease; /* エフェクトの速度を調整 */
}

.image-container2.visible .jspinkbutterfly {
  transform: translate(-100%,100px); /* 表示位置 */
  opacity: 1;
}

.image-container2.hidden .jspinkbutterfly {
  opacity: 0;
}

.yoga-meritcontents{
  padding: 0 5.3%;
  background-color: #FFF;
  position: relative;
}

.yoga-meritcontents::before{
  position: absolute;
  content: '';
  display: inline-block;
  background-image: url(../image/dot/dotYellow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  top: -3.5%;
  left: 5%;
  transform: scale(-1, 1);
}

.yoga-meritcontents::after{
  position: absolute;
  content: '';
  display: inline-block;
  background-image: url(../image/dot/dotYellow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  bottom: -3.5%;
  right: 5%;
}

.yoga-meritList{
  padding: 5% 10% 25% 8%;
  background-image: url(../image/TxtbackImg/BackgroundPink.png);
  background-position: center;
  background-size: 97%;
  height: auto;
  background-repeat: no-repeat;
}

/*merit写真ふわっと表示*/
.yoga-meritList {
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 2s; /* 動きを滑らかに */
}
/* フェードイン用のクラス */
.yoga-meritListfadeIn {
  opacity: 1;
}
/*meritふわっと表示end*/

.meritList-title{
  color: var(--primary-brown);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  padding-top: 35%;
}

.meritList-txt{
  color: var(--primary-brown);
  font-size: 1.4rem;
  margin: 10px auto;
  padding: 7% 3%;
  width: 270px;
}

/*数字*/
.meritList-title--1{
  position: relative;
}

.meritList-title--1::before{
  position: absolute;
  content: '01';
  color: #FFF;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  width: 70px;
  height: 70px;
  padding: 10px;
  border-radius: 100%;
  background-color: var(--primary-maingreen);
  top: 12%;
  left: -5%;
  border: solid 4px #ffff;
}

.meritList-title--2{
  position: relative;
}

.meritList-title--2::before{
  position: absolute;
  content: '02';
  color: #FFF;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  width: 70px;
  height: 70px;
  padding: 10px;
  border-radius: 100%;
  background-color: var(--primary-maingreen);
  top: 12%;
  left: -5%;
  border: solid 4px #ffff;
}

.meritList-title--3{
  position: relative;
}

.meritList-title--3::before{
  position: absolute;
  content: '03';
  color: #FFF;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  width: 70px;
  height: 70px;
  padding: 10px;
  border-radius: 100%;
  background-color: var(--primary-maingreen);
  top: 12%;
  left: -5%;
  border: solid 4px #ffff;
}

.meritList-title--4{
  position: relative;
}

.meritList-title--4::before{
  position: absolute;
  content: '04';
  color: #FFF;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  width: 70px;
  height: 70px;
  padding: 10px;
  border-radius: 100%;
  background-color: var(--primary-maingreen);
  top: 12%;
  left: -5%;
  border: solid 4px #ffff;
}

.meritList-title--5{
  position: relative;
}

.meritList-title--5::before{
  position: absolute;
  content: '05';
  color: #FFF;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  width: 70px;
  height: 70px;
  padding: 10px;
  border-radius: 100%;
  background-color: var(--primary-maingreen);
  top: 12%;
  left: -5%;
  border: solid 4px #ffff;
}

.cloudBackImgPC{
  display: none;
}

/*yoga-meritBox PC 769px*/
@media screen and (min-width: 769px) {  
/*JSあしらい鳥（黄色）*/
.image-container {
  overflow: hidden;
  width: 100%;
  height: 60vh;
  position: absolute;
  top: -7%;
}
  
.jsyellowBird {
  width: 6%;
  height: auto;
  transform: translateX(-100%); /* 初期位置を左に設定 */
  opacity: 0;
  transition: transform 10s ease, opacity 1s ease; /* エフェクトの速度を調整 */
}
  
.image-container.visible .jsyellowBird {
  transform: translate(100vw,200px); /* 表示位置 */
  opacity: 1;
}
  
.image-container.hidden .jsyellowBird {
  transform: translateX(100%); /* フェードアウト時の位置 */
  opacity: 0;
}  
  
  /*JSあしらい鳥（Pink）*/
.image-container2 {
  overflow: hidden;
  width: 100%;
  height: 60vh;
  position: absolute;
  top: 86%;
}
  
.jspinkbutterfly {
  width: 6%;
  height: auto;
  transform: translateX(100vw); /* 初期位置を右に設定 */
  opacity: 0;
  transition: transform 10s ease, opacity 1s ease; /* エフェクトの速度を調整 */
}
  
.image-container2.visible .jspinkbutterfly {
  transform: translate(-100%,200px); /* 表示位置 */
  opacity: 1;
}
  
.image-container2.hidden .jspinkbutterfly {
  opacity: 0;
}

.cloudBackImg{
  display: none;
}

.yoga-meritBox{
  margin-top: 100px;
}

.cloudBackImgPC{
  display: block;
}

.yoga-meritcontents{
   padding: 0 6.9%;
}

.yoga-meritListBox{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:2rem;
}

.meritList-title{
  font-size: 2.2rem;
}

.meritList-txt{
  font-size: 1.6rem;
}

.yoga-meritList{
  padding: 0 0 5% 0;
  background-size: 100%;
  width: 32%;
}

/*数字*/  
.meritList-title--1::before{
  top: 25%;
  left:5%;
}
  
.meritList-title--2::before{
  top: 25%;
  left:5%;
}
  
.meritList-title--3::before{
  top: 25%;
  left:5%;
}
   
.meritList-title--4::before{
  top: 25%;
  left:5%;
}
  
.meritList-title--5::before{
  top: 25%;
  left:5%;
}

.yoga-meritcontents::before{
  width: 100px;
  height: 100px;
  top: -11.5%;
  left: 5%;
  transform: scale(-1, 1);
}

.yoga-meritcontents::after{
  width: 100px;
  height: 100px;
  bottom: -11.5%;
  right: 5%;
}
}
/*yoga-meritBox PC 769px*/

/*============
Voice
==============*/
.yoga-voice{
  padding: 100px 5.3% 0;
}

.section_title--voice{
  gap:8px;
}

.section_subTitle--voive{
  font-size: 1.4rem;
}

.yoga-voiceImgList{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

/*voice写真ふわっと表示*/
.yoga-voiceImgList{
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 2s; /* 動きを滑らかに */
}
/* フェードイン用のクラス */
.yoga-voiceImgListfadeIn {
  opacity: 1;
}
/*voiceふわっと表示end*/

.yoga-voiceImgBox{
  width: 48%;
  margin-top: 20px;
}

.yoga-voiceImgitem{
  border-radius: 10px;
}

.yoga-voiceList{
  margin-top: 30px;
  background-color: #FFF;
  padding: 30px 7%;
  border-radius: 10px;
  position: relative;
}

.yoga-voiceList::before{
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border-radius: 10px;
  border: 2px solid var(--primary-pink);
  pointer-events: none;
}

.yoga-voicetitle{
  color: var(--primary-brown);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.yoga-voicetxt{
  color: var(--primary-brown);
  font-size: 1.4rem;
  margin-top: 30px;
}

.yoga-voicesign{
  color: var(--primary-brown);
  font-size: 1.4rem;
  margin-top: 15px;
  text-align: end;
}

/*yoga-voice PC 769px*/
@media screen and (min-width: 769px) {
.yoga-voiceBox{
  padding-top: 60px;
}

.yoga-voice{
  margin-top: 60px;
  padding: 0 6.9% 30px;
}

.yoga-voiceImgList{
  display: flex;
  margin-top: 60px;
}

.yoga-voiceImgBox{
  width: 21vw;
  margin-top: 20px;
}

.yoga-voiceList{
  width: 79vw;
  margin: 40px auto;
}

.yoga-voicetitle{
  font-size: 2.4rem;
}

.br_sp{
  display: none;
}

.yoga-voicetxt{
  font-size: 1.6rem;
}

.yoga-voicesign{
  font-size: 1.6rem;
}
}
/*yoga-voice PC 769px*/

/*============
Teacher
==============*/
/*JSあしらい鳥（黄色）*/
.image-container3{
  overflow: hidden;
  width: 100%;
  height: 40vh;
  position: absolute;
  z-index: 50;
  top: -3.2%;
}

.jsyellowBird {
  width: 13%;
  height: auto;
  transform: translateX(-100%); /* 初期位置を左に設定 */
  opacity: 0;
  transition: transform 5s ease, opacity 1s ease; /* エフェクトの速度を調整 */
}

.image-container3.visible .jsyellowBird {
  transform: translate(100vw,100px); /* 表示位置 */
  opacity: 1;
}

.image-container3.hidden .jsyellowBird {
  transform: translateX(100%); /* フェードアウト時の位置 */
  opacity: 0;
}

/*JSあしらい鳥（Pink）*/
.image-container4 {
  overflow: hidden;
  width: 100%;
  height: 40vh;
  position: absolute;
  z-index: 50;
  top: 89%;
}

.jspinkbutterfly {
  width: 13%;
  height: auto;
  transform: translateX(100vw); /* 初期位置を右に設定 */
  opacity: 0;
  transition: transform 5s ease, opacity 1s ease; /* エフェクトの速度を調整 */
}

.image-container4.visible .jspinkbutterfly {
  transform: translate(-100%,100px); /* 表示位置 */
  opacity: 1;
}

.image-container4.hidden .jspinkbutterfly {
  opacity: 0;
}
.yoga-teacherBox{
  margin-top: 40px;
  position: relative;
}

.yoga-teachercontents{
  padding: 0 5.3%;
  background-color: #FFF;
  display:block ;
  margin: 0 auto;
}

.yoga-teacherImg{
  margin-top: 30px;
}

/*teacher写真ふわっと表示*/
.yoga-teacherImg {
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 2s; /* 動きを滑らかに */
}
/* フェードイン用のクラス */
.yoga-teacherImgfadeIn {
  opacity: 1;
}
/*teacherふわっと表示end*/

.yoga-teacherName{
  margin-top: 40px;
  color: var(--primary-brown);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.yoga-teacherName{
  position: relative;
}

.yoga-teacherName::before{
  position: absolute;
  content: '';
  display: inline-block;
  background-image: url(../image/Watage/Watage2-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 120px;
  height: 120px;
  bottom: 103%;
  left: 8px;
  transform: rotate(-7deg);
}

.yoga-teachermore{
  color: var(--primary-brown);
  font-size: 1.4rem;
  margin-top: 20px;
  display: block;
  margin: 20px 9%;
}

.yoga-teacherMessage{
  color: var(--primary-brown);
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  text-align: center;
  background-image: url(../image/TxtbackImg/teacherMessage.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 102%;
  padding: 30% 0;
  margin-top: 40px;
  position: relative;
}

/*Teacher PC 769px*/
@media screen and (min-width: 769px) {
/*JSあしらい鳥（黄色）*/
.image-container3 {
  overflow: hidden;
  width: 100%;
  height: 60vh;
  position: absolute;
  top: -7%;
}

.jsyellowBird {
  width: 6%;
  height: auto;
  transform: translateX(-100%); /* 初期位置を左に設定 */
  opacity: 0;
  transition: transform 10s ease, opacity 1s ease; /* エフェクトの速度を調整 */
}

.image-container3.visible .jsyellowBird {
  transform: translate(100vw,200px); /* 表示位置 */
  opacity: 1;
}

.image-container3.hidden .jsyellowBird {
  transform: translateX(100%); /* フェードアウト時の位置 */
  opacity: 0;
}  

/*JSあしらい鳥（Pink）*/
.image-container4 {
  overflow: hidden;
  width: 100%;
  height: 60vh;
  position: absolute;
  top: 90%;
}
  
.jspinkbutterfly {
  width: 6%;
  height: auto;
  transform: translateX(100vw); /* 初期位置を右に設定 */
  opacity: 0;
  transition: transform 10s ease, opacity 1s ease; /* エフェクトの速度を調整 */
}
  
.image-container4.visible .jspinkbutterfly {
  transform: translate(-100%,200px); /* 表示位置 */
  opacity: 1;
}
  
.image-container4.hidden .jspinkbutterfly {
  opacity: 0;
}

.yoga-teacherBox{
  margin-top: 60px;
}

.yoga-teachercontents{
  padding: 0 6.9%;
}

.teacherImgBox{
  display: flex;
  align-items: center;
  margin-top: 60px;
  gap: 10%;
  justify-content: center;
}

.yoga-teacherImg{
  width: 30vw;
  margin-top: 0px;
}

.yoga-teacherName{
  font-size: 2.4rem;
}

.yoga-teachermore{
  font-size: 1.6rem;
}

.yoga-voiceList{
  align-items: start;
}

.yoga-teachermore {
  margin: 20px 0%;
}

.yoga-teacherName {
  text-align: start;
}

.yoga-teacherMessage{
  color: var(--primary-brown);
  font-size: 1.6rem;
  font-weight: 700;
  width: 120%;
  padding: 34% 15%;
  margin-top: 40px;
  position: relative;
}

.yoga-teacherName::before{
  display: none;
}

.yoga-teacherName::after{
  position: absolute;
  content: '';
  display: inline-block;
  background-image: url(../image/Watage/Watage2-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 120px;
  height: 120px;
  bottom: -40%;
  right: -20%;
  transform: rotate(-7deg);
}
}
/*Teacher PC 769px*/

/*============
moreaboutBox
==============*/
.yoga-moreabout{
  padding: 100px 5.3% 0;
  margin-top: 30px;
}

.yoga-moreaboutImg{
  margin-top: 30px;
}

/*more写真ふわっと表示*/
.yoga-moreaboutImg {
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 2s; /* 動きを滑らかに */
}
/* フェードイン用のクラス */
.yoga-moreaboutImgfadeIn {
  opacity: 1;
}
/*moreふわっと表示end*/

.yoga-moreaboutContents{
  margin-top: 30px;
}

.yoga-moreaboutList{
  margin-top: 20px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.yoga-listtitle{
  background-color: #E8CBC5;
  width: 100px;
  height: 28px;
  color: var(--primary-brown);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 3px 0;
  border-radius: 10px;
}

.yoga-itemPrice{
  color: var(--primary-brown);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: start;
}

.yoga-itemplace{
  color: var(--primary-brown);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: start; 
}

.yoga-item{
  color: var(--primary-brown);
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
}

/*moreaboutBox PC 769px*/
@media screen and (min-width: 769px) {
.yoga-moreabout{
  padding: 100px 6.9% 30px;
  margin-top: 80px;
}

.yoga-moreaboutsBox{
  display: flex;
  align-items: center;
  margin-top: 60px;
  gap: 10%;
  flex-direction:row-reverse;
  justify-content: center;
}

.yoga-moreaboutImg{
  width: 30vw;
  margin-top: 0px;
}

.yoga-listtitle{
  background-color: #E8CBC5;
  width: 120px;
  height: 43px;
  font-size: 1.6rem;
  padding: 7px 0;
}

.yoga-item{
  color: var(--primary-brown);
  font-size: 1.6rem;
}
}
/*moreaboutBox PC 769px*/

/*============
access
==============*/
/*JSあしらい鳥（黄色）*/
.image-container5{
  overflow: hidden;
  width: 100%;
  height: 40vh;
  position: absolute;
  z-index: 50;
  top: -3.2%;
}

.jsyellowBird {
  width: 13%;
  height: auto;
  transform: translateX(-100%); /* 初期位置を左に設定 */
  opacity: 0;
  transition: transform 5s ease, opacity 1s ease; /* エフェクトの速度を調整 */
}

.image-container5.visible .jsyellowBird {
  transform: translate(100vw,100px); /* 表示位置 */
  opacity: 1;
}

.image-container5.hidden .jsyellowBird {
  transform: translateX(100%); /* フェードアウト時の位置 */
  opacity: 0;
}

/*JSあしらい鳥（Pink）*/
.image-container6 {
  overflow: hidden;
  width: 100%;
  height: 40vh;
  position: absolute;
  z-index: 50;
  top: 91%;
}

.jspinkbutterfly {
  width: 13%;
  height: auto;
  transform: translateX(100vw); /* 初期位置を右に設定 */
  opacity: 0;
  transition: transform 5s ease, opacity 1s ease; /* エフェクトの速度を調整 */
}

.image-container6.visible .jspinkbutterfly {
  transform: translate(-100%,100px); /* 表示位置 */
  opacity: 1;
}

.image-container6.hidden .jspinkbutterfly {
  opacity: 0;
}

.yoga-accessBox{
  margin-top: 40px;
  position: relative;
}

.yoga-accesscontents{
  padding: 0 5.3% 130px;
  background-color: #FFF;

}

.googleMap{
  margin-top: 30px;
  width: 100%;
  height: 394px;
  border-radius: 10px;
}

.accessImg{
  margin-top: 20px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.accessTitle{
  margin-top: 20px;
  color: var(--primary-brown);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
}

.accessTxt{
  margin-top: 20px;
  color: var(--Textcoler, #544946);
  text-align: center;
  font-size: 1.4rem;
  position: relative;
}

.accessTxt::after{
  position: absolute;
  content: '';
  width: 110px;
  height: 110px;
  display: inline-block;
  background-image: url(../image/Flower/Flower.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 229%;
  right: 0;
}

.yoga-access{
  position: relative;
}

.yoga-access::after{
  position: absolute;
  content: '';
  display: inline-block;
  background-image: url(../image/dot/dotYellow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 60px;
  height: 60px;
  bottom: 2%;
  left: 5%;
  transform: scale(-1, 1);
}

/*Access PC 769px*/
@media screen and (min-width: 769px) {
/*JSあしらい鳥（黄色）*/
.image-container5 {
  overflow: hidden;
  width: 100%;
  height: 60vh;
  position: absolute;
  top: -7%;
}

.jsyellowBird {
  width: 6%;
  height: auto;
  transform: translateX(-100%); /* 初期位置を左に設定 */
  opacity: 0;
  transition: transform 10s ease, opacity 1s ease; /* エフェクトの速度を調整 */
}

.image-container5.visible .jsyellowBird {
  transform: translate(100vw,200px); /* 表示位置 */
  opacity: 1;
}

.image-container5.hidden .jsyellowBird {
  transform: translateX(100%); /* フェードアウト時の位置 */
  opacity: 0;
}  

  /*JSあしらい鳥（Pink）*/
.image-container6 {
  overflow: hidden;
  width: 100%;
  height: 60vh;
  position: absolute;
  top: 90%;
}
  
.jspinkbutterfly {
  width: 6%;
  height: auto;
  transform: translateX(100vw); /* 初期位置を右に設定 */
  opacity: 0;
  transition: transform 10s ease, opacity 1s ease; /* エフェクトの速度を調整 */
}
  
.image-container6.visible .jspinkbutterfly {
  transform: translate(-100%,200px); /* 表示位置 */
  opacity: 1;
}
  
.image-container6.hidden .jspinkbutterfly {
  opacity: 0;
}

.yoga-accessBox{
  margin-top: 60px;
}

.yoga-accesscontents{
  padding: 0 6.9%;
}

.access-ContentsBox{
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.googleMap{
  margin-top: 0;
  width: 46vw;
  height: 32vw;
}

.accessImg{
  margin-top: 0;
  width: 31vw;
  height: auto;
  border-radius: 10px;
}

.accessTitle{
  font-size: 2.4rem;
  text-align: start;
}

.accessTxt{
  font-size: 1.6rem;
  text-align: start;
}

.accessTxt::after{
  width: 180px;
  height: 180px;
  top:18px;
  right: -25%;
}

.yoga-access::after{
  width: 100px;
  height: 100px;
  bottom: 2%;
  left: 7%;
}
}

/*============
conversion
==============*/
.conversionAreBox{
  padding: 40px 5.3% 0;
}

.tell_conversion{
  padding: 30px 10.4%;
  background-color: #FFF;
  margin-top: 40px;
  border-radius: 10px;
  position: relative;
}

.tell_conversion::before{
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border-radius: 10px;
  border: 2px solid var(--primary-pink);
  pointer-events: none;
}

.conversion-telltxt{
  margin-top: 30px;
  text-align: center;
  color: var(--primary-brown);
  font-size: 1.6rem;
}

.conversion-telephoneNumber{
  margin-top: 10px;
  color: var(--primary-brown);
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}

.conversion-telephoneNumberBox{
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-outline{
  width: 13%;
  transform: translateX(-20%) translateY(20%);
}

.line_conversion{
  padding: 30px 9.4%;
  background-color: #FFF;
  margin-top: 40px;
  border-radius: 10px;
  position: relative;
}

.line_conversion::before{
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  left: 8px;
  border-radius: 10px;
  border: 2px solid var(--primary-maingreen);
  pointer-events: none;
}

.line_conversionTitle{
  color: var(--primary-brown);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}

.line_titleEvent{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.line_titleEventtxt{
  margin-top: 30px;
  color: var(--primary-brown);
  font-size: 1.4rem;
  font-weight: 400;
}

.line_title{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.blue{
  border-radius: 100px;
  background-color: var(--primary-maingreen);
  width: 10px;
  height: 10px;
}

.yellow{
  margin-top: 10px;
  border-radius: 100px;
  background-color: var(--primary-yellow);
  width: 10px;
  height: 10px;
}

.pink{
  margin-top: 10px;
  border-radius: 100px;
  background-color: var(--primary-pink);
  width: 10px;
  height: 10px;
}

.line_conversionBtn{
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: var(--primary-maingreen);
  border-radius: 50px;
  display: flex;
  width: 74vw;
  padding: 12px 50px;
  justify-content: center;
  align-items: center;
  margin: 30px auto 0;
}

.line_conversionBtn:hover{
  background:#FFF;
  color:var(--primary-maingreen);
  border: 2px solid var(--primary-maingreen);
  transition: 0.4s;
}

/*Conversion PC 769px*/
@media screen and (min-width: 769px) {
.conversionAreBox{
  padding: 100px 6.9% 30px;
}

.line_conversion{
  padding: 50px 0;
  margin: 67px 7% 0;
  border-radius: 10px;
  position: relative;
}

.line_decoration{
  display: flex;
  align-items:baseline;
  justify-content: space-between;
  gap: 16px;
}

.blue{
  width: 20px;
  height: 20px;
}

.yellow{
  width: 20px;
  height: 20px;
}

.pink{
  width: 20px;
  height: 20px;
}

.line_conversionTitle{
  font-size: 2.8rem;
}

.line_title{
  align-items:baseline;
}

.Br_Sp{
  display: none;
}

.line_titleEventtxt{
  margin-top:20px;
  font-size: 1.6rem;
  padding: 10px 17%;
}

.line_conversionTxtmore{
  margin-top: 0;
  font-size: 1.6rem;
  padding: 0 16%;
}

.line_conversionBtn{
  font-size: 2.4rem;
  font-weight: 700;
  width: 400px;
  padding: 20px 87px;
  margin: 30px auto 0;
}
}
/*Conversion PC 769px*/

/*============
underFooter
==============*/
.underFooter{
  margin-top: 50px;
}

.underFooterhead{
  width: 100%;
}

.underFooterhead-pc{
  display: none;
}

/*underFooter PC 769px*/
@media screen and (min-width: 769px) {
.underFooterhead-pc{
  display: block;
}
    
.underFooterhead{
  display: none;
}
    
.footer__group{
  margin-top: 50px;
}
}
/*underFooter PC 769px*/
