* {
  margin: 0;
  font-family: "yu-gothic-pr6n", sans-serif;
  font-style: normal;
  font-weight: 400;
  
}

/* html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
} */

a {
  all: unset;
  cursor: pointer;
}

ul {
  list-style: none;
}
button {
  all: unset;
  cursor: pointer;
}

/* button::after{
  content: '';
  border: 0;
  border-top: solid 1px #4E4C44;
  border-right: solid 1px #4E4C44;
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
} */


#opening {
  position: fixed;
  z-index: 1001;
  height: 100vh;
  width: 100vw;
  background-color: white;
  animation: fadeOutImage 1.5s forwards 4s;
  pointer-events: none;
}

#opening #animeText1 {
  opacity: 1;
  position: absolute;
  /* text-align: center; */
  /* top: 50%; */
  bottom: 36vh;
  right: 0;
  left: 0;
  margin: auto;
  animation: fadeOutImage 1s forwards 1.5s;
}

#opening img {

}

#opening #animeText2 {
  position: absolute;
  text-align: center;
  font-size: 24px;
  color: #4E4C44;
  top: 50%;
  right: 0;
  left: 0;
  opacity: 0;
  animation: fadeInText 1s forwards 2s; 
}

@keyframes fadeOutImage {
  to {
    opacity: 0;
  }
}

@keyframes fadeInText {
  to {
    opacity: 1;
  }
}

body {
  /* background-color: #FDFDFD; */
  color: #4E4C44;
}

/* common */
._title_ .titleArea{
  text-align: center;
  margin-bottom: 120px;
}

._title_ .titleArea h2 {
  font-size: 16px;
  font-family: "ofelia-text", sans-serif;
  font-weight: 300;
  font-style: italic;
}

._title_ .titleArea h1 {
  font-size: 24px;
  margin: 18px 0;
}

._hero_ {
  width: 100vw;
  height: 80vh;
  position: relative;
  background: url("../img/front/pt03_edit.jpg");
  background-size: cover;
  background-position-y: top;
  color: white;
}




/* header */
header {
  position: absolute;
  width: 100vw;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: rgba(253, 253, 253);;
  color: var(--black, #4E4C44);
  font-size: 12px;
  z-index: 1000;
}

.header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  visibility: visible;
  animation: slideDown 0.3s ease-in-out;
  background-color: rgba(253, 253, 253);;
  color: var(--black, #4E4C44);
}

header .hamburger-btn::after {
  display: none;
}


header nav {
 
}

header nav ul {
  display: flex;
  align-items: center;
}

header ul li {
  margin-left: 32px;
  cursor: pointer;
}

header .logo {
  width: 60%;
  margin-top: 12px;
}

.header .taikanArea {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header .taikanArea img {
  width: 32px;
  height: 32px;
  margin-top: 0;
}

.pilates {
    width: 64px; 
}

.menu {
  position: fixed;
  height: 100vh; 
  width: 100vw;
  display: none;
  flex-direction: column;
  background: #fff;
  z-index: 100;
  top: 0;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1s ease, transform 0.5s ease;
}

.menu.active {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.menu:not(.active) {
  display: none;
}


.menu img {
  width: 12%;
  margin-top: 24px;
  margin-right: 24px;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}


/* hero */
.hero video {
  width: 100%;
  /* height: 60vh; */
}


/* about */
.about {
  background-image: url("../img/bg.svg");
  background-repeat: no-repeat;
  background-position-y: 124px !important;
  padding: 160px;
}


.about .about__flex {
  display: flex;
  justify-content: center;
  gap: 100px;
}

.about .about__flex img {
  width: 42%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}


.about .about__flex .textArea {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: auto;
  /* border: 1px solid red; */
}

.about .about__flex .textArea h2 {
  font-family: "ofelia-text", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  opacity: 1;
  transform: translateY(12px);
}

.about .about__flex .textArea h1 {
  color: var(--black, #4E4C44);
  font-size: 22px;
  letter-spacing: 3.6px;
  line-height: 52px;
  margin: 24px 0;
  opacity: 1;
  transform: translateY(12px);
}



.about .about__flex .textArea p {
  color: var(--black, #4E4C44);
  font-size: 14px;
  letter-spacing: 2.4px;
  line-height: 42px;
  opacity: 1;
}

.about .about__flex .textArea button {
  display: block;
  margin-top: 32px;
  width: 100%;
  height: 64px;
  border-radius: 55px;
  backdrop-filter: blur(10px);
  text-align: center;
  margin-left: auto;
  background: var(--main, #FDFDFD);
  box-shadow: 5px 5px 13px 0px rgba(230, 226, 221, 0.90), -5px -5px 10px 0px rgba(255, 255, 255, 0.90), 5px -5px 10px 0px rgba(230, 226, 221, 0.20), -5px 5px 10px 0px rgba(230, 226, 221, 0.20), -1px -1px 2px 0px rgba(230, 226, 221, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
  text-align: center;
}

/* .about .about__flex .textArea button::after {
  content: '';
  border: 0;
  border-top: solid 1px #4E4C44;
  border-right: solid 1px #4E4C44;
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
} */

/* Personal Training == pt */

.pt {
  width: 100vw;
  height: 100vh;
  position: relative;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.00) 41.15%, #121212 100%), url("../img/front/pt03_edit.jpg");
  background-size: cover;
  background-position-y: top;
  color: white;
}

.pt .textArea {
  width: 480px;
  position: absolute;
  bottom: 80px;
  right: 180px;
}

.pt .textArea .pt__title{
  display: flex;
  justify-content: space-between;
}

.pt p {
  margin-top: 24px;
  line-height: 42px;
}


.pt .textArea button {
  display: block;
  margin-top: 24px;
  width: 360px;
  height: 62px;
  border-radius: 55px;
  border: 2px solid rgba(253, 253, 253, 0.50);
  background: linear-gradient(93deg, rgba(253, 253, 253, 0.30) 0%, rgba(253, 253, 253, 0.10) 101.12%);
  backdrop-filter: blur(10px);
  text-align: center;
  margin-left: auto;
}

/* .pt .textArea button::after{
  content: '';
  border: 0;
  border-top: solid 1px #fdfdfd;
  border-right: solid 1px #fdfdfd;
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
} */


.pt .textArea button:hover {
  opacity: .8;
}

.pt2 {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.00) 41.15%, #121212 100%), url("../img/front/pt2.jpg");
  background-position-y: bottom;
  background-size: cover;
}

/* staff */
.staff {
  background-image: url("../img/bg.svg");
  background-repeat: no-repeat;
  padding-top: 160px;
  background-position-y: 120px;
}

.staff .titleArea{
  text-align: center;
}

.staff .titleArea h2 {
  font-size: 16px;
  font-family: "ofelia-text", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.staff .titleArea h1 {
  font-size: 24px;
  margin: 24px 0;
}

.staff .titleArea p {
  line-height: 32px;
}

.sliders .slider {
  display: flex;
  margin: 72px 0;
  overflow: hidden;
}

.sliders .slider .loop {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  animation: loop 50s linear infinite;
  margin-right: 48px;
}

@keyframes loop {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-100%);
  }
}

.sliders .slider .sliderContents {
  /* border: 1px solid red; */
  background: var(--main, #FDFDFD);
  box-shadow: 5px 5px 13px 0px rgba(230, 230, 230, 0.90), -5px -5px 10px 0px rgba(255, 255, 255, 0.90), 5px -5px 10px 0px rgba(230, 230, 230, 0.20), -5px 5px 10px 0px rgba(230, 230, 230, 0.20), -1px -1px 2px 0px rgba(230, 230, 230, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
}

.sliders .slider .sliderContents main {
  height: 360px;
  width: 274px;
}

.sliders .slider .sliderContents .slider__footer {
  padding: 8px;
}

.sliders .slider .sliderContents .slider__footer .name{
  font-family: "ofelia-text", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.sliders .slider .sliderContents .slider__footer .title{
  font-family: "ofelia-text", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  text-align: left;
}

.staff button {
  display: block;
  font-size: 16px;
  font-family: "ofelia-text", sans-serif;
  font-weight: 300;
  font-style: italic;
  width: 360px;
  height: 80px;
  border-radius: 55px;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 160px;
  background: var(--main, #FDFDFD);
  box-shadow: 5px 5px 13px 0px rgba(230, 226, 221, 0.90), -5px -5px 10px 0px rgba(255, 255, 255, 0.90), 5px -5px 10px 0px rgba(230, 226, 221, 0.20), -5px 5px 10px 0px rgba(230, 226, 221, 0.20), -1px -1px 2px 0px rgba(230, 226, 221, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
  backdrop-filter: blur(10px);
  text-align: center;
}

/* other */
.other {
  background-image: url("../img/bg.svg");
  background-repeat: no-repeat;
  /* border: 1px solid black; */
  padding: 160px 64px;
  padding-bottom: 0;
  background-position-y: 82px;
}

.other .other__flex {
  display: flex;
  justify-content: space-around;
  gap: 42px;
}

.other .other__flex .otherContent .textArea {
  text-align: center;
}

.other .other__flex .otherContent .textArea h2{
  font-size: 16px;
  font-family: "ofelia-text", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.other .other__flex .otherContent .textArea h3 {
  margin: 24px 0;
}

.other .other__flex .otherContent .zoom-box {
  display: inline-block;
  overflow: hidden;
  border-radius: 10px;
}

.other .other__flex .otherContent .photoArea{
  width: 360px;
  height: 360px;
  display: block;
  transition-duration: .5s;
  cursor: pointer;
}

.other .other__flex .otherContent .photoArea:hover {
  transform: scale(1.1);
}

.other .other__flex .otherContent .other__access {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.00) 81.77%, #121212 100%), url("../img/front/other_access.jpg");
  background-size: cover;
  background-position: center;
}

.other .other__flex .otherContent .other__blog {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.00) 81.77%, #121212 100%), url("../img/front/other_blog__edit.jpg");
  background-size: cover;
}

.other .other__flex .otherContent .other__contact {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.00) 81.77%, #121212 100%), url("../img/front/ohter_contact_edit.jpg");
  background-size: cover;
  background-position: -32px;
}




/* FOOTER */
footer {
  height: 300px;
  text-align: center;
  background-image: url("../img/bg2.png");
  /* background-repeat: no-repeat; */
}

footer .footer__top {
  display: inline-block;
  margin: 160px auto;
  text-align: center;
  cursor: pointer;
}

footer .footer__top svg {
  margin: auto 0;
}

footer .footer__top h2{
  /* text-align: center; */
  /* margin: 164px auto; */
  font-size: 18px;
  font-family: "ofelia-text", sans-serif;
  font-weight: 300;
  font-style: italic;
}

footer .up-icon {
  margin: 0 auto;
  text-align: center;
}

footer .footer__logo {
  text-align: center;
}

footer hr {
  display: block;
  margin: 24px auto;
}

footer h2 {
  text-align: center;
  font-size: 12px;
}






@media screen and (max-width:768px) {
  
  ._title_ .titleArea h1 {
    font-size: 16px;
  }



  header {
    justify-content: space-between;
  }

  header nav {
    display: none;
  }

  header .logo {
    margin-left: 16px;
  }

  header li {
    display: inline-block;
    white-space: nowrap
  }
  
  header .hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    /* padding: 10px; */
    display: flex;
    flex-direction: column;
    margin-right: 32px;
  }
  
  header .hamburger-btn .bar {
  width: 25px;
  height: 3px;
  background-color: #4E4C44;
  margin: 3px 0;
  }
}



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

  header {
    background-color: white;
    
  }

  .hero{
    position: relative;
    overflow: hidden;
    /* width: 100vw; */
    height: 72vh;
  }
  .hero video {
    position: absolute;
    width: 100vh;
    top: 300px;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }




._title_ .titleArea{
  text-align: center;
  margin: 32px auto;
  width: 90%;
}

._title_ .titleArea h2 {
  font-size: 16px;
}

._title_ .titleArea h1 {
  font-size: 22px;
  margin: 12px 0;
}

._title_ .titleArea p {
  font-size: 12px;
  margin: 12px 0;
}

._hero_ {
  width: 100vw;
  height: 32vh;
  position: relative;
  background: url("../img/front/pt03_edit.jpg");
  background-size: cover;
  background-position-y: top;
  color: white;
}

.menu {
  position: fixed;
  height: 100vh;
  width: 100vw;
  display: none;
  flex-direction: column;
  background: #fff;
  z-index: 100;
  top: 0;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(-100%); 
}

.menu.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.menu:not(.active) {
  display: none;
}

.menu ul {
  text-align: left;
  padding: 64px 36px;
}

.menu ul li {
  white-space: nowrap;
  margin-top: 18px;
}

.menu .taikanArea {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu .taikanArea .logo {
  margin: 0;
}


  .about {
    padding: 0 30px;
    background: none;
    padding: 0;
  }

	.about .about__flex {
    display: block;
  }

  .about .about__flex img {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  .about .about__flex .textArea{
    background-image: url("../img/bg.svg");
    background-repeat: no-repeat;
    background-position-y: -82px;
    padding: 0 30px;
  }


.about .about__flex .textArea h1 {
  font-size: 16px;
  margin-top: 16px;
  line-height: 27px;
}

  .about .about__flex .textArea p {
    margin: 0;
    line-height: 24px;
    font-size: 12px;
  }

  .about .about__flex .textArea button {
    margin-bottom: 48px;
    height: 64px;
    font-size: 12px;
    
  }

  /* .about .about__flex .textArea button::after{
    content: '';
    border: 0;
    border-top: solid 1px #4E4C44;
    border-right: solid 1px #4E4C44;
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
  } */

  /* pt */

  .pt {
    background-size: cover;
    background-position: center;
    height: 80vh !important;
    margin-bottom: 0;
    /* background-position-x: 2px; */
  }

  .pt .textArea {
    width: 280px;
    line-height: 12px;
    /* width: 240px; */
    bottom: 32px;
    right: 32px;
  }

  .pt .textArea h1 {
    font-size: 16px;
  }

  .pt .textArea button {
    width: 100%;
    margin-left: 0;
    height: 40px;
    font-size: 12px;
  }

  .pt p {
    font-size: 12px;
    line-height: 20px;
  }

  .staff {
    background-position-y: 82px;
  }

  .staff button {
    height: 64px;
  }

  .pt2 {
    height: 64vh !important;
    background-position-x: -248px;
  }

  .other {
    margin: 0;
    padding: 0;
  }

  .other .other__flex {
    display: block;
  }

  .other .other__flex .otherContent{
    background-image: url("../img/bg.svg");
    background-repeat: no-repeat;
    text-align: center;
    background-position-y: -40px;
  }

  .other .other__flex .otherContent .textArea h2{
    padding-top: 48px;
    font-size: 12px;
  }

  .other .other__flex .otherContent .photoArea {
    margin: 0 auto;
  }

  .other .other__flex .otherContent .textArea h3 {
    margin: 12px 0;
  }

  .other .other__flex .otherContent .photoArea{
    width: 280px;
    height: 280px;
  }

}

.sliderContents{
  position: relative;
}
