@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #000000;
  --color-white: #ffffff;

  --ptserif: "PT Serif", serif;

  --header: 18.5rem;
  scroll-padding: var(--header);
}

@media screen and (max-width: 767px) {
  :root {
    --header: 17rem;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1920>> 10px */
  font-size: 0.5208333vw;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  /* font-size 18px */
  font-size: 1.25vw;
  background: var(--color-white);
  color: var(--color-black);
}

a {
  text-decoration: none;
  transition: all 0.4s;
}

a:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */

@media screen and (max-width: 767px) {
  html {
    /* 750px>> 10px */
    font-size: 1.3333vw;
  }

  body {
    /* font-size 24px */
    font-size: 3.2vw;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
}

/*================================================
 *  bannerの単位はrem   sagamiharaと同じ
  1980px>>>>10px
 ================================================*/
#banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  background: rgb(206 115 123 / 84%);
  padding: 2rem;
}

#banner ul {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#banner ul li {
  width: 23rem;
}

#banner ul li a {
  display: block;
}

@media screen and (max-width: 767px) {
  #banner {
    padding: 1rem;
  }

  #banner ul {
    flex-wrap: wrap;
    gap: 1rem;
  }

  #banner ul li {
    width: 27rem;
  }
}

/*================================================
 *  header / ヘッダーの単位はrem   1980px>>>>10px
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ce737b;
  height: 18.5rem;
}

.nav__top {
  padding: 1rem 0;
  background: var(--color-white);
}

.nav__top a {
  display: block;
  width: 99.2rem;
  margin: 0 auto;
}

.nav__under {
  padding: 2rem 0;
  background: #ce737b;
}

.nav__under .nav__menu {
  gap: 3.5rem;
  text-align: center;
}

.nav__under .nav__menu li {
  line-height: 1.1;
}

.nav__under .nav__menu li a {
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  line-height: 0.5;
}

.nav__under .nav__menu li a span {
  display: block;
  font-size: 1.9rem;
  font-family: var(--ptserif);
  text-transform: capitalize;
}

.nav__under .nav__menu li.flex a.hd_contact {
  font-size: 1.4rem;
  color: #ce737b;
  display: grid;
  place-content: center;
  width: 9rem;
  height: 3.7rem;
  background: var(--color-white);
  border-radius: 1000px;
}

.nav__under .nav__menu li.flex a.hd_insta {
  width: 3rem;
  margin-left: 2rem;
  display: block;
}

.nav__under .nav__menu li .nv_btn {
  background: #344867;
  color: var(--color-white);
  font-size: 1.7rem;
  width: 12.3rem;
  height: 3.2rem;
  display: grid;
  place-content: center;
  border-radius: 0.5rem;
}

.sp_logo,
.sp_btn {
  display: none;
}

@media screen and (max-width: 767px) {
  header {
    height: 17rem;
    /* background: #231815; */
  }

  .nav__top {
    padding: 0;
  }

  .nav__top a {
    width: 100%;
  }

  .nav__under {
    padding: 0;
  }

  .hamburger {
    position: absolute;
    top: 10rem;
    right: 2rem;
    width: 5rem;
    height: 7rem;
    cursor: pointer;
    z-index: 300;
    transition: all 0.1s ease-out;
  }

  .open_nav .hamburger {
    top: 3rem;
  }

  .hamburger::after {
    position: absolute;
    content: "MENU";
    color: var(--color-white);
    font-size: 1.7rem;
    font-family: var(--ptserif);
    left: 50%;
    transform: translateX(-50%);
    top: 6%;
    text-align: center;
    width: 100%;
    opacity: 1;
    transition: all 0.2s ease-out;
  }

  .open_nav .hamburger::after {
    opacity: 0;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 100%;
    height: 0.2rem;
    background-color: var(--color-white);
    transition: all 0.4s ease-out;
    transform: translateX(-50%);
  }

  .hamburger__line--1 {
    top: 40%;
  }

  .hamburger__line--2 {
    top: 58%;
  }

  .hamburger__line--3 {
    top: 75%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(35deg);
    top: 50%;
    background: #333;
  }

  .open_nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-35deg);
    top: 50%;
    background: #333;
  }

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #ce737b;
    transition: all 0.3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    padding: 0 0 10rem 0;
    opacity: 0;
    pointer-events: none;
  }

  /* 表示 */
  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }

  nav.gnav.global__nav ul {
    display: block;
    text-align: center;
  }

  nav.gnav.global__nav ul li.sp_logo {
    background: var(--color-white);
    padding: 3rem 0 3rem 6rem;
    display: block;
  }

  nav.gnav.global__nav ul li.sp_logo a {
    width: 29rem;
  }

  nav.gnav.global__nav ul li:not(.sp_logo):not(.sp_btn):not(.sp):not(.flex) {
    padding: 5rem 0 3rem;
    border-bottom: 1px solid #dbdcdc;
    width: 65rem;
    margin: 0 auto;
  }

  nav.gnav.global__nav ul li a {
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 2.4rem;
    font-weight: 400;
  }

  .nav__under .nav__menu li a span {
    margin-right: auto;
    font-size: 3.8rem;
    letter-spacing: 0.1em;
  }

  .nav__under .nav__menu li.flex {
    justify-content: center;
    padding-top: 5rem;
  }

  .nav__under .nav__menu li.flex a.hd_insta {
    width: 29rem;
    margin-left: 2rem;
  }

  .nav__under .nav__menu li.flex a.hd_contact {
    width: 29rem;
    height: 6.1rem;
    font-size: 2.6rem;
  }

  .nav__under .nav__menu li.sp_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3.5rem;
    padding-top: 9rem;
    color: var(--color-white);
    font-size: 2.4rem;
  }

  .nav__under .nav__menu li.sp_btn p {
    width: 100%;
  }

  .nav__under .nav__menu li.sp {
    width: 55rem;
    margin: 8rem auto;
  }
}

/*================================================
 *  mv
 ================================================*/
#mv {
  margin-top: 18.5rem;
}

@media screen and (max-width: 767px) {
  #mv {
    margin-top: 16rem;
  }
}

/*================================================
* about
================================================*/
#about {
  background: url(../images/about_bg.png) no-repeat center/cover;
  height: 100%;
  padding: 6.25vw 0 7.7vw;
}

#about h3 {
  width: 31rem;
  margin: 0 auto;
}

#about .inner {
  width: 73rem;
  margin-left: 79rem;
}

#about .inner h2 {
  width: 50vw;
  margin: 1.7vw 0 3.125vw;
}

#about .inner p {
  font-size: 1.16em;
  line-height: 2.4;
}

@media screen and (max-width: 767px) {
  #about {
    background: url(../images/about_bg_sp.png) no-repeat center top/ cover;
    height: 100%;
    padding: 10rem 0 7rem;
  }

  #about .inner {
    width: 100%;
    margin-left: 0;
  }

  #about h3 {
    width: 22rem;
  }

  #about .inner h2 {
    width: 48vw;
    margin: 6rem 0 0rem 30rem;
  }

  #about .inner p {
    font-size: 1em;
    text-align: center;
    margin-top: 15rem;
  }
}

/*================================================
* pilates
================================================*/
#pilates {
  background: url(../images/pilates_bg.png) no-repeat center top/cover;
  height: 100%;
  padding: 10.4vw 0 7.7vw;
}

#pilates .inner {
  width: 32.65vw;
  margin-left: 12.1vw;
}

#pilates .inner h2 {
  text-align: center;
  font-size: 1.77em;
  line-height: 1.7;
  margin-bottom: 1em;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

#pilates .inner p {
  line-height: 2.22;
}

#pilates .under {
  width: 76.33%;
  margin: 6vw auto 0;
}

#pilates .under h3 {
  font-size: 1.44em;
  margin-bottom: 1em;
}

#pilates .under ul {
  display: grid;
  gap: 4.166vw;
  grid-template-columns: repeat(3, 1fr);
}

#pilates .under ul h4 {
  color: var(--color-white);
  background: #ce737b;
  text-align: center;
  font-weight: bold;
  font-size: 1.166em;
  padding: 0.3em 0;
  border-radius: 1000px;
  position: relative;
}

#pilates .under ul h4::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/pilates_arrow.png);
  width: 1.8em;
  height: 0.9em;
  bottom: -0.5em;
  left: 50%;
  transform: translateX(-50%);
}

#pilates .under ul p {
  font-size: 1.05em;
  line-height: 2;
  width: 90%;
  margin: 1em auto 0;
}

@media screen and (max-width: 767px) {
  #pilates {
    background: url(../images/pilates_bg_sp.png) no-repeat center top/cover;
    height: 100%;
    padding: 10.4vw 0 28vw;
  }

  #pilates .inner {
    width: 100%;
    margin-left: 0;
  }

  #pilates .inner h2 {
    font-size: 1.58em;
  }

  #pilates .under ul {
    gap: 8vw;
    grid-template-columns: 1fr;
  }

  #pilates .inner p {
    width: 89%;
    margin: 77vw auto 12vw;
  }

  #pilates .under {
    width: 86.66%;
    margin: 6vw auto 0;
  }

  #pilates .under h3 {
    font-size: 1.29em;
    text-align: center;
  }

  #pilates .under ul h4 {
    font-size: 1.125em;
    padding: 0.5em 2em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }

  #pilates .under ul p {
    font-size: 1em;
    width: 100%;
    font-feature-settings: "palt";
  }
}

/*================================================
* fee
================================================*/
#fee {
  margin-top: 10rem;
}

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

/*================================================
* program
================================================*/
#program {
  padding: 9vw 0 7vw;
}

/* 下記非表示 */
.intro__ttl {
  background: #ce737b;
  color: var(--color-white);
  padding: 1.3vw 0;
}

.intro__ttl img {
  width: 8.4vw;
  margin-right: 3vw;
}

.intro__ttl h2 {
  font-size: 2.77em;
  margin-bottom: 0.2em;
}

.intro__ttl p {
  font-size: 1.388em;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.intro__ttl p span {
  display: block;
  font-size: 0.64em;
  letter-spacing: 0em;
}

/* 下記非表示ここまで */

#program ul.adviser {
  width: 76.33%;
  margin: 0 auto;
}

#program ul.adviser > li {
  position: relative;
  margin-top: 7vw;
}

#program ul.adviser img {
  width: 29.6vw;
}

#program ul.adviser > li .inner {
  width: calc(100% - 31.6vw);
  font-weight: 400;
}

#program ul.adviser h3 {
  font-size: 2.11em;
  letter-spacing: 0.1em;
  margin-bottom: 0.8em;
}

#program ul.adviser h3 span {
  font-size: 0.44em;
  margin: 0 1em;
  letter-spacing: 0em;
}

#program ul.adviser h3 span:first-of-type {
  margin-left: 0;
}

#program p.flex {
  width: 98%;
  margin-left: auto;
}

#program p.flex span {
  display: block;
  line-height: 2;
}

#program p.flex span:nth-of-type(2) {
  width: 80%;
}

#program ul.list {
  margin-top: 4.166vw;
}

#program ul.list li span {
  position: relative;
  display: inline-block;
  padding-left: 1em;
  font-size: 0.88em;
  line-height: 1.875;
}

#program ul.list li span::before {
  position: absolute;
  content: "■";
  color: #ce737b;
  top: 0;
  left: 0;
}

#program ul.adviser > li .adviser__img {
  width: auto;
  height: 18vw;
  position: absolute;
  bottom: 0;
  right: -7vw;
}

#program ul.adviser > li:nth-child(2) .adviser__img {
  right: -10vw;
}

/* program__cont */
.program__cont {
  width: 82.3vw;
  margin: 7vw auto 0;
  background: #f8f4e1;
  padding: 4.2vw 0 1vw;
}

.program__cont h3 {
  text-align: center;
  font-size: 1.11em;
  border-bottom: 1px solid;
  padding-bottom: 0.7em;
  width: 70vw;
  margin: 0 auto 7vw;
}

.program__cont h3 span {
  font-size: 0.8em;
  margin-left: 1em;
}

.program__cont ul li {
  position: relative;
  width: 67.3vw;
  margin: 0 auto 4.2vw 11vw;
  padding-bottom: 4vw;
}

.program__cont ul li h4 {
  font-size: 1.22em;
  width: 31.11vw;
  height: 4.3vw;
  border: 0.27vw solid;
  display: grid;
  place-content: center;
  border-radius: 10000px;
}

.program__cont ul li h4:not(:first-of-type) {
  margin-top: 2em;
}

.program__cont ul li h4.ttl span {
  position: absolute;
  background: #ce737b;
  color: #ffffff;
  width: 6vw;
  height: 6vw;
  border-radius: 1000000px;
  top: -1vw;
  left: -7vw;
  display: grid;
  place-content: center;
}

.program__cont ul li > div > span {
  margin-left: 1em;
}

.program__cont ul li p {
  width: 37vw;
  line-height: 2.11;
  margin-top: 1em;
  margin-left: 1.5vw;
}

.program__cont ul li > img {
  position: absolute;
  width: 25vw;
  bottom: 0;
  right: 0;
}

.program__cont ul li:last-child {
  font-size: 0.888em;
  margin-bottom: 0;
}

.program__cont .schedule_btn {
  display: block;
  width: 22.2vw;
  margin: 0 auto 4vw;
}

@media screen and (max-width: 767px) {
  #program {
    padding: 9vw 0 7vw;
    overflow: hidden;
  }

  .intro__ttl img {
    width: 19.33vw;
    margin-right: 2vw;
  }

  .intro__ttl div {
    width: 68%;
  }

  .intro__ttl h2 {
    font-size: 2.5em;
  }

  .intro__ttl p {
    font-size: 0.958em;
  }

  #program ul.adviser {
    width: 91%;
    margin: 0 auto;
  }

  #program ul.adviser h3 {
    font-size: 1.5em;
    letter-spacing: 0.1em;
    margin-bottom: 0.8em;
    position: absolute;
    top: 0;
    left: 48vw;
    line-height: 2;
  }

  #program ul.adviser h3 span {
    display: block;
    margin: 0 !important;
    font-size: 0.55em;
  }

  #program ul.adviser > li {
    margin-top: 13vw;
  }

  #program ul.adviser img {
    width: 45vw;
  }

  #program ul.adviser > li .inner {
    width: 100%;
  }

  #program p.flex {
    width: 100%;
    display: block;
  }

  #program p.flex span:first-of-type {
    font-size: 0.833em;
    margin-top: 2em;
  }

  #program p.flex span:nth-of-type(2) {
    width: 100%;
  }

  #program ul.adviser > li .adviser__img {
    height: 35.2vw;
    bottom: auto;
    top: 27vw;
    right: 0;
  }

  #program ul.adviser > li:nth-child(2) .adviser__img {
    right: -3vw;
    height: 32.2vw;
    top: 30vw;
  }

  #program ul.list li span {
    font-size: 0.833em;
  }

  .program__cont {
    width: 100%;
  }

  .program__cont ul li {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 14vw;
  }

  .program__cont ul li:nth-child(3),
  .program__cont ul li:nth-child(4) {
    padding-bottom: 3vw;
  }

  .program__cont ul li p {
    width: 81%;
    margin: 4vw auto 0;
  }

  .program__cont ul li h4 {
    font-size: 1.08em;
    width: 59.8vw;
    height: 8.2vw;
    border: 0.53vw solid;
    margin: 0 auto;
  }

  .program__cont ul li h4:not(:first-of-type) {
    margin-top: 2.5em;
  }

  .program__cont ul li h4.ttl span {
    width: 12.5vw;
    height: 12.5vw;
    top: -2vw;
    left: 6vw;
  }

  .program__cont ul li > div > span {
    margin-left: 0;
    font-size: 0.833em;
    text-align: center;
    display: block;
    margin: 2em auto 0;
  }

  .program__cont ul li > img {
    position: static;
    width: 61.33vw;
    margin: 4vw auto;
  }

  .program__cont ul li:last-child {
    font-size: 0.83em;
    line-height: 2;
    width: 68%;
    margin: 0 auto;
  }

  .program__cont .schedule_btn {
    width: 68.8vw;
    margin: 3vw auto 4vw;
  }
}

/*================================================
* campaign
================================================*/

.campaign_flow {
  padding: 5rem 0;
  background: rgb(206 115 123 / 25%);
}

.campaign_flow .cam_flow_btn {
  display: block;
  width: 43rem;
  margin: 0 auto;
}

.campaign_flow p {
  text-align: center;
  font-size: 2.8rem;
  margin-top: 3rem;
}

.campaign_flow p a {
  font-size: 3rem;
  border-bottom: 0.5rem solid #ce737b;
}

img.cam_flow {
  width: 101rem;
  margin: 5rem auto 0;
}

@media screen and (max-width: 767px) {
  img.cam_flow {
    width: 57rem;
  }
}

/*================================================
 *  trial
 ================================================*/

#trial .inner {
  position: relative;
}

#trial .inner a {
  display: block;
  width: 33rem;
  position: absolute;
  top: 12rem;
  left: 50%;
  transform: translateX(-50%);
}

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

/*================================================
 *  introduction
 ================================================*/
#introduction {
  padding: 10rem 0;
}

#introduction h2 {
  width: 101rem;
  margin: 0 auto;
}

#introduction .inner {
  position: relative;
}

.introduction_img {
  width: 155rem;
  margin: 5rem auto;
}

#introduction .inner ul {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22rem;
  gap: 10rem;
}

#introduction .inner ul li {
  width: 30rem;
}

@media screen and (max-width: 767px) {
  #introduction h2 {
    width: 67rem;
  }

  .introduction_img {
    width: 100%;
  }

  #introduction .inner ul {
    bottom: 24rem;
    gap: 6rem;
  }
}

/*================================================
 *  access
 ================================================*/
#access {
  background: url(../images/acc_bg.png) no-repeat center top/cover;
  height: 100%;
  padding: 5rem 0;
}

#access h2 {
  width: 22rem;
  margin: 0 auto 5rem;
}

.acc__top .acc_img {
  width: 55rem;
  margin-left: 3rem;
}

.acc__top ul li:nth-child(1) {
  font-size: 2.3rem;
  line-height: 1.6;
}

.acc__top ul li:nth-child(2) {
  font-size: 2.6rem;
  margin-top: 1rem;
}

.acc__top ul li:nth-child(3) {
  font-size: 2.3rem;
  color: #ce737b;
  margin: 4rem 0 2rem;
}

.acc__top ul li:nth-child(3) {
  font-size: 2.6rem;
}

.acc__top ul li img {
  width: 46rem;
}

.acc__under {
  width: 100rem;
  margin: 5rem auto;
  padding: 4rem;
  border: 0.3rem dotted #000;
  position: relative;
  z-index: 1;
}

.acc__under::before {
  content: "";
  position: absolute;
  background: #e7eced;
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.acc__under > img {
  width: 43rem;
  margin: 0 auto;
}

.acc__under p {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 1rem;
}

.acc__under p:nth-of-type(2) {
  margin-top: 2rem;
  line-height: 1.6;
}

.acc_insta {
  text-align: center;
  font-size: 2.3rem;
  color: #ce737b;
}

.acc_insta img {
  display: inline-block;
  width: 5rem;
  margin-left: 1rem;
}

#access iframe {
  display: block;
  width: 100%;
  height: 54rem;
  margin: 6rem 0;
}

@media screen and (max-width: 767px) {
  .acc__top .acc_img {
    width: 69rem;
    margin: 0 auto 3rem;
  }

  .acc__top ul {
    text-align: center;
  }

  .acc__top ul li img {
    width: 60rem;
    margin: 0 auto;
  }

  .acc__under {
    width: 100%;
    background: #e7eced;
    border: none;

    padding: 5rem 0;
  }

  .acc__under::before {
    border: 0.3rem dotted #000;
  }

  #access iframe {
    height: 41rem;
  }
}

/*================================================
 *  footer
 ================================================*/
footer {
  margin: 3rem 0 10rem;
  text-align: center;
  font-size: 1.8rem;
}

footer div {
  margin: 2rem 0;
}

footer div a {
  margin: 0 3rem;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  footer {
    margin: 3rem 0 19rem;
    font-size: 2.1rem;
  }
}

.center {
  text-align: center;
}

.floating-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.floating-banner img {
  width: 180px;
  max-width: 100%;
  height: auto;
}

/* スマホ用に調整したい場合 */
@media screen and (max-width: 767px) {
  .floating-banner {
    bottom: 90px;
    right: 15px;
  }

  .floating-banner img {
    width: 115px;
  }
}
