@charset "utf-8";

/*==========================
common
==========================*/
:root {
  --primary-b: #573525;
  --primary-back01: #F7F6F4;
  --primary-back02: #FFFFFF;
  --primary-cream: #F0EDE9;
  --primary-backgray:#8993A5;
  --contentWidth: 91.4%;
  /* （↑375に対しての343） */
  --contentPadding: 4.2%;
  /* （↑375に対しての16） */
}

html {
  font-size: 62.5%;
}

body {
  font-family:
    'Zen Old Mincho',
    'Zen Kaku Gothic New',
    Arial,
    sans-serif;font-size: 2.0rem;
  font-style: normal;
  
  color: var(--primary-b);
  font-weight: 400;
  background-color: var(--primary-back01, #F7F6F4);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

/* 改行設定改行設定 */
.pcbr{
  display: block;
}
.spbr{
  display: none;
}

@media (max-width: 769px){
  .pcbr{
    display: none;
  }
.spbr{
  display: block;
}
}
/* ------改行設定 */


/* scrollTop*/
#page-top a {
  display: inline-block;
  padding: 18px;
  border-radius: 50%;
  background-color: var(--primary-b);
  color: var(--primary-cream);
  font-size: 1.2rem;
  box-shadow: 2px 2px 4px 2px rgba(87, 53, 37, 0.20);
}

#page-top {
    position: fixed;
    right: 10px;
    bottom:10px;
    z-index: 2;
      /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
  }

  #page-top a:hover{
  background-color: var(--primary-cream);
  color: var(--primary-b);
}

#page-top.UpMove{
	animation: UpAnime 2.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

#page-top.DownMove{
	animation: DownAnime 1.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}



/* fadeIn*/
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 2.5s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}




/* 共通 BTNの指定 */

.btn-mini {
display: block;
  color: var(--primary-cream);
  text-align: center;
  border-radius: 3px;
  background: var(--primary-b);
  transition: 0.8s;
  border: 0.5px solid var(--primary-b);
  width: 180px;
  font-size: 1.3rem;
  padding: 11px 22px 10px;
  margin-right: 5px;
} 


 .btn-reguler {
  display: block;
  position: relative;
  color: var(--primary-cream);
  text-align: center;
  border-radius: 3px;
  background: var(--primary-b);
  transition: 0.8s;
  border: 0.5px solid var(--primary-b);
  width: 35vw;
  max-width: 480px;
  font-size: 1.8vw;
  padding: 2.4vw;
  margin: 0 auto;
} 


.chevron {
  position: absolute;
  width: 2.4vw;
  height: 0.6vw;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
  rotate: -90deg;
top: 45%;
right: 3%;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
 top: -50px;

  height: 80%;
  width: 51%;
  background-color: var(--primary-cream);
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}



.btn-mini:hover,
.btn-reguler:hover {
  color: var(--primary-b);
  background: var(--primary-cream);
}

.chevron:hover{
  background-color: var(--primary-b);
}

@media (max-width: 960px) and (min-width: 429px){
.btn-reguler{
  font-size: 2.4vw;
}

}

@media screen and (max-width:428px){

.btn-reguler {
  width: 50vw;
  max-width: 480px;
  font-size:3.2vw;
  padding: 3.2vw;
  
}
}
/* ---------共通 BTNの指定 */

/* header*/
.header {
  padding: 0 0 0 4.2%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__topic {
  display: flex;
  align-items: center;
}

.logotop {
  width:90%;
}

.nav {
  display: flex;
}

.nav__list {
  display: flex;
  gap: 1.0em;
  margin-right: 30px;
}

.nav__item {
  display: flex;
  align-items: center;
  color: var(--primary-b);
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 1.2vw;
}

.nav__item--contact {
  display: none;
}

.snsgroup_header {
  display: none;
}

@media screen and (max-width:768px) {
  .header {
    height: 60px;
  }

  .btn-mini {
    display: none;
  }

  .nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
    background-color: var(--primary-b);
  }

  .nav__list {
    margin-top: 67px;
    display: block;
    position: relative;
  }

  .nav__item {
    color: var(--primary-cream);
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
  }

  .nav__item::before {
    content: "";
    width: 40px;
    height: 1px;
    display: block;
    margin-right: 20px;
    color: var(--primary-cream);
    background-color: var(--primary-cream);
  }

  .snsgroup_header {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: absolute;
    top: 500px;
    left: 50px;
  }


  /* .nav.active表示 */
  .nav.active {
    transform: translateX(0);
  }


  /* nav_btnの指定 */
  .nav_btn {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background-color: var(--primary-b);

    z-index: 200;
    border-radius: 5%;
  }

  .nav_btn span {
    position: absolute;
    left: 0;

    height: 1.5px;
    background-color: var(--primary-cream);
  }

  .nav_btn,
  .nav_btn span {
    transition: all .5s;
    box-sizing: border-box;
  }

  .nav_btn span:nth-of-type(1) {
    top: 18px;
    width: 80%;
  }


  .nav_btn span:nth-of-type(2) {
    margin-top: 40px;
    width: 60%;
  }

  #btn00.active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(45deg);
    transform: translateY(20px) rotate(45deg);
    top: 9px;
    width: 100%;
  }

  #btn00.active span:nth-of-type(2) {
    -webkit-transform: translateY(-20px) rotate(-45deg);
    transform: translateY(-20px) rotate(-45deg);
    width: 100%;
    bottom: 9px;
  }
  .nav_btn {
    display: block;
  }
}
@media screen and (max-width:428px) {
  .nav_btn {
    width: 70px;
}
}

/* pagetop */

.pagemain{
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  aspect-ratio: 3 / 1;
}


.pagetitle{
  color:  var(--primary-cream);
text-align: center;
font-family: "Cormorant Garamond";
transform: scale(0.90, 1);
font-size: 5.0vw;
font-weight: 200;
}

.mainunder {
  display: flex;
  height: auto;
  padding: 80px 5%;
justify-content: center;
align-items: center;
background: url(../image/yoga_mainunder-.png);
background-size: cover;
}

.maincatch{
  color: var(--primary-b);
text-align: center;
font-family: "Zen Old Mincho";
font-size: 2.0rem;
}

@media (max-width: 960px) and (min-width: 429px){
  .pagemain{
    aspect-ratio: 5 / 2;
    }
 .pagetitle{
  font-size: 6.0vw;
  }

  .maincatch{
    font-size: 1.7rem;
  }
}
@media screen and (max-width:428px){
  .pagemain{
    aspect-ratio: 5 / 3;
    }
  .pagetitle{
    font-size: 8.0vw;
    }

  .mainunder {
    padding: 60px 5%;
  }
.maincatch{
  font-size: 1.6rem;
}
}

/* Section  layout */

.section {
  display: flex;
  padding: 0 9.7% 80px;
  flex-direction: column;
  align-items: center;
}

.section--a{
  background-color: var(--primary-back01);
}
.section--b{
  background-color: var(--primary-back02);
}



.localsubtxt, .menusubtxt{
font-family: "Zen Old Mincho";
font-size: 2.0rem;
color: var(--primary-b);
text-align: center;
margin-top: 60px;
}


.sectionhub {
  max-width: 1160px;
  margin: 0 auto;
}

.section__title{
  display: flex;
  max-width: 1160px;
  padding: 120px 9.7% 60px;
  flex-direction: column;
  align-items: center;
}

.topic {
  display: flex;
  justify-content: center;
  color: var(--primary-b);
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 4.8vw;
  transform: scale(0.90, 1);
  font-weight: 300;
  letter-spacing: 3.2px;
}

.subtopic{
  display: flex;
  justify-content: center;
  max-width: 500px;
  padding: 30px;
  color: var(--TXT, #573525);
  text-align: center;
  font-size: 2.0rem;
  border-top: 0.5px solid  #573525;
  border-bottom: 0.5px solid  #573525;
  margin-top: 30px;
}

.unit {
  display: flex;
  max-width: 1160px;      
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.unit:nth-child(3),.unit:nth-child(5){
  flex-direction: row-reverse;
}

.txtblock{
  display: flex;
  flex-direction: column;
  width: 60%;
  height: auto;
}

.txtblock--concept01 {
  border-left: 0.5px solid #573525;
}
.txtblock--concept02 {
  border-right: 0.5px solid #573525;
}

.basetxt{
  font-family: "Zen Old Mincho";
  font-size: 2.0rem;
  color: var(--primary-b);
  line-height: 1.7;
  }

  .content-img {
    width: 50%;
    aspect-ratio: 5.8 / 4;
    margin: 0 40px;
  }

  .content-img--s {
    width: 50%;
    aspect-ratio: 5.8 / 4;
    box-shadow: 15px 15px  #8993A5;
    margin: 0 40px;
  }

  .undertxt{
    max-width: 1160px;
    color: var(--TXT, #573525);
  text-align: center;
  font-size: 2.0rem;
  margin-top: 120px;
  margin-bottom: 120px;
  }


  
  @media screen and (max-width:960px) {
    .section__title{
      padding: 80px 9.7% 40px;
    }
    .subtopic{
      font-size: 1.6rem;
      padding: 15px;
    }
   
  .unit{
    flex-direction: column;
    margin-top: 40px;
  } 

  .unit:nth-child(3){
    flex-direction: column;
  } 
  .txtblock{
    width: 80%;
  }
  .content-img, .content-img--s {
    width: 80%;
    margin: 60px 0 0 0;
}
  }

  @media screen and (max-width:428px) {

    .section {
      padding: 0 3% 80px;
    }

    .topic {
      font-size: 3.2rem;
    }

      .basetxt,.undertxt, .localsubtxt,.menusubtxt{
        font-size: 1.6rem;
        }

        .undertxt{
        margin-bottom: 20px;
        }
}


/* ================
SubFooter
================ */

.subfooter {
  display: flex;
  padding: 80px 9.7% 120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.txt-subfooter {
  color: var(--TXT, #573525);
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 2.0rem;
}

.btn-reguler {
  margin-top: 60px;
}

@media screen and (max-width:769px) {

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


}

/* ========================== */
.footer {
  background-image: url(../image/back_footer.png) ;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--primary-b);
  padding: 5.5%;
  text-align: center;

}

.footer-content {
  margin: 0 auto;
}

.logo {
  width: 200px;
  height: auto;
}

.footer-nav {
  list-style: none;
  margin-top: 64px;
  text-align: center;
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  gap: 35px;
  cursor: pointer;
}

.footer address {
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  margin-top: 64px;
}

.snsgroup {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.sns {
  width: 30px;
  height: 30px;
}

.sns:nth-child(2) {
  width: 32px;
  height: 32px;
}



.copy {
  margin-top: 120px;
  margin-bottom: 120px;
  font-size: 1.4rem;

}

@media screen and (max-width:768px) {

  .logo {
    margin-top: 40px;
    width: 200px;
    height: auto;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    list-style: none;
    margin-top: 64px;
    text-align: center;
    font-size: 1.6rem;
    justify-content: center;
  }

  .footer address {
    margin-top: 40px;
    font-size: 1.2rem;
  }

  .copy {
    margin-top: 40px;
  }
}