* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; 
}

body {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
	letter-spacing: 0.03em;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}
img{
	width: 100%;
	height: auto;
}
.container{
	margin: 0 15px;
}


/*============================
FV
============================*/

.fv {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.fv-main {
    position: relative;
    width: 100%;
    height: 85vh;
    background:
        linear-gradient(rgba(0, 0, 0, .28), rgba(0, 0, 0, .28)),
        url("./img/fv-img_01.webp") center center / cover no-repeat;
}

/*----------------------------
Header
----------------------------*/

.fv-header {
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 10;
}

/* Logo */

.fv-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.fv-logo img {
    width: 140px;
    display: block;
}

/* Hamburger */

.fv-menu {
    position: absolute;
    left: 20px;
    top: 8px;

    width: 46px;
    height: 34px;

    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.fv-menu span {
    display: block;
    width: 46px;
    height: 2px;
    background: #fff;
    transition: .3s;
}

.fv-menu span:nth-child(2) {
    width: 30px;
    margin: 10px 0;
}

.fv-menu span:nth-child(3) {
    width: 38px;
}

/*----------------------------
Copy
----------------------------*/

.fv-copy {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translateX(-50%);
    width: calc(100% - 40px);

    text-align: center;
    color: #fff;
}

.fv-copy p {
    margin-bottom: 5px;
    font-size: 14px;
    letter-spacing: .05em;
    font-weight: 300;
	font-family: "Poppins", sans-serif;
}

.fv-copy h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: .05em;
}

.fv-copy h1 span {
    font-size: .8em;
    font-weight: 400;
}

/*============================
Drawer
============================*/

.drawer {
    position: fixed;
    inset: 0;
    z-index: 999;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background: rgba(40,40,40,.96);

    opacity: 0;
    visibility: hidden;
    transition: .35s;
}

.drawer.is-open {
    opacity: 1;
    visibility: visible;
}

.drawer a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: .08em;
    margin: 18px 0;
    transition: .3s;
}

.drawer a:hover {
    color: #D8B48A;
}


/*------------------------------
期間限定
------------------------------*/

.trial-limit {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
  color: #D8B48A;
}

.trial-limit-en {
  font-size: 10px;
  letter-spacing: .18em;
  line-height: 1;
  margin-bottom: 8px;
}

.trial-limit-line {
  width: 120px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #D8B48A,
    transparent
  );
  margin-bottom: 8px;
}

.trial-limit-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: .12em;
  line-height: 1;
}

.fv-trial {
  position: relative;
  z-index: 5;
  margin: -50px 15px 24px;
  padding: 34px 15px 28px;
  background: rgba(45,45,45,.94);
  border: 1px solid #D8B48A;
  border-radius: 12px;
  color: #fff;
  text-align: center;
}

.trial-en {
  font-family: "Tangerine", cursive;
  font-style: italic;
  color: #D8B48A;
  font-size: 18px;
  margin-bottom: 8px;
}

.trial-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trial-num {
  font-size: 85px;
    line-height: .9;
    padding-bottom: 5px;
}

.trial-main p {
  font-size: 15px;
  margin-bottom: 4px;
	text-align: left;
}

.trial-main strong {
  font-size: 40px;
  line-height: 1;
}

.trial-price {
  margin: 10px 0 20px;
  font-size: 15px;
	display: flex;
    justify-content: space-around;
    align-items: center;
}

.trial-price span.arrow,
.trial-price b {
  color: #D8B48A;
}

.trial-price b {
  font-size: 30px;
}
.old-price {
    position: relative;
    display: inline-block;
}

.old-price::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: #fff; /* 白線 */
    transform: translateY(-50%);
}

.trial-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 78px;
  padding-right: 48px;
  background: #D8B48A;
  border-radius: 999px;
  color: #333;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 19px;
  font-weight: 600;
}

.trial-btn small {
  font-size: 12px;
  margin-bottom: 5px;
}

.trial-btn span {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #444;
  color: #fff;
  display: grid;
  place-items: center;
}

/*==============================
期間限定 Ribbon
==============================*/

.fv-trial{
    position: relative;
}

.trial-ribbon{
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.trial-ribbon span{

    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;
    height: 42px;

    padding: 0 28px;

    background: #D8B48A;
    color: #3F3D3B;

    font-family: "Noto Serif JP", serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .08em;
}
.trial-ribbon span::before{
    content:"";
    position:absolute;
    top:0;
    left:-18px;

    border-top:21px solid transparent;
    border-bottom:21px solid transparent;
    border-right:18px solid #D8B48A;
}
.trial-ribbon span::after{
    content:"";
    position:absolute;
    top:0;
    right:-18px;

    border-top:21px solid transparent;
    border-bottom:21px solid transparent;
    border-left:18px solid #D8B48A;
}


/*==============================
コンセプト
==============================*/
.concept{
	padding: 60px 0 80px;
}

.head-ttl{
	margin: 0 15px;
}

.concept p{
	margin: 20px 15px 0;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 14px;
}

.head-ttl p{
	font-family: "Poppins", sans-serif;
	font-size: 14px;
}
.head-ttl h2{
	font-size: 22px;
	padding-top: 40px;
	font-weight: 600;
	line-height: 1.8;
}


/*==============================
説明2カラム
==============================*/
.program {
  background: #fff;
}

.program .container {
  display: flex;
  margin: 0 auto;
}

.program__col {
  width: 50%;
  padding: 36px 12px 44px;
  text-align: center;
}

.program__col--personal {
  background: #4b4b4b;
  color: #fff;
}

.program__col--pilates {
  background: #f4efe5;
  color: #333;
}

.program__col h3 {
  margin-bottom: 32px;
  font-size: 15px;
  font-weight: 500;
	font-family: "Poppins", sans-serif;
}

.program__lead {
  margin-bottom: 34px;
}

.program__lead h4 {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.6;
}

.program__lead p {
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}

.program__item {
  margin-top: 32px;
}

.program__item img {
  width: 120px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 10px;
}

.program__item p {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
}


.concept-cross {
  position: relative;
  padding: 120px 20px 80px;
  background: #fff;
  text-align: center;
}

.concept-cross__inner {
  max-width: 390px;
  margin: 0 auto;
}

.concept-cross__label {
  margin-bottom: 18px;
  font-size: 20px;
  letter-spacing: .08em;
}

.concept-cross__title {
  margin-bottom: 44px;
  font-size: 26px;
  line-height: 1.65;
  letter-spacing: .04em;
  font-weight: 700;
}

.concept-cross__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 48px;
}

.concept-cross__text p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: .04em;
	margin-top: 28px;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.concept-cross::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:60px;
    background:
    linear-gradient(
        to bottom left,
        #4b4b4b 50%,
        transparent 50%
    ),
    linear-gradient(
        to bottom right,
        #f4efe5 50%,
        transparent 50%
    );
    background-size:50% 100%;
    background-repeat:no-repeat;
    background-position:left,right;
}

/*==============================
ビフォーアフター
==============================*/
.before-after{
	padding: 80px 0;
	color: #fff;
	background: #4b4b4b;
}

.before-after .head-ttl{
	margin: 0 0 15px;
}

.before-after p{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 14px;
	padding-top: 28px;
	font-weight: 300;
}

.before-after p.right{
	text-align: right;
	font-size: 12px;
}

.before-after .head-ttl p{
	font-family: "Poppins", sans-serif;
	font-size: 14px;
}

.photo ul{
	display: flex;
	flex-wrap: wrap;
}
.photo ul li{
	width: 50%;
}
.photo ul li img{
	display: block;
}

/*==============================
料金
==============================*/

.price {
  padding: 80px 0;
  background: #fff;
  color: #2f2f2f;
}
.price .head-ttl{
	margin: 0;
}

.price__block{
  margin-top: 60px;
}

.price__list {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.price__title {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .03em;
}

.price__title small {
  font-size: 14px;
  color: #666;
	font-weight: 400;
	display: inline;
}

.price__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 25px 20px;
  border-bottom: 1px solid #aaa;
}

.price__row span {
  font-size: 16px;
  white-space: nowrap;
}

.price__row strong {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.price__row strong small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

.price__note {
  margin-top: 14px;
  text-align: right;
  font-size: 12px;
  color: #666;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}


/*==============================
体験
==============================*/
.trial-flow{
    padding:80px 0;
    background:#F7F3EA;
    overflow:hidden;
}

.trial-flow .inner{
    padding-left:20px;
}
.section-en{
	font-family: "Poppins", sans-serif;
	font-size: 14px;
}
.trial-flow__head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:40px 0;
    padding-right:20px;
}

.trial-flow__head h2{
    font-size: 22px;
    font-weight: 600;
    line-height: 1.8;
}
.swiper-btn{
    width:48px;
    height:48px;
    border:1px solid #555;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    transition:.3s;
}

.swiper-btn:hover{
    background:#555;
    color:#fff;
}

.trialSwiper{
    overflow:visible;
}

.flow-card__img{
    position:relative;
    overflow:hidden;
}

.flow-card__img img{
    width:100%;
    aspect-ratio:3 / 4;
    object-fit:cover;
    display:block;
}

.flow-card__img span{
    position: absolute;
    top: 18px;
    left: 18px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
	font-family: "Poppins", sans-serif;
}

.flow-card h3{
    margin: 20px 0 10px;
    font-size: 18px;
}

.flow-card p{
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size:14px;
    line-height:2;
}

.flow-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    width: 250px;
	padding: 15px 0;
    margin-top: 20px;
    background:#444;
    color:#fff;
    text-decoration:none;
}
.swiper-pagination {
  position: static !important;
  margin-top: 40px;
  height: 4px !important;
  background: #e8e2d8;
}

.swiper-pagination-progressbar-fill {
  background: #6b4a2f !important; /* ブラウン */
}

.trialSwiper {
  width: 100%;
  overflow: visible;
}

.trialSwiper .swiper-slide {
  width: 320px!important;
  flex-shrink: 0;
}

small{
	font-size: 12px;
	display: block;
}

.cafe{
	padding: 80px 0 0;
}
.cafe p.cafe-txt{
	margin: 15px 15px 20px;
	font-size: 14px;
	line-height: 1.8;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.faq {
  padding: 80px 0;
  background: #fff;
  color: #2f2f2f;
}

.faq .head-ttl{
	margin: 0 0 30px;
}
.faq__list {
  border-top: 1px solid #aaa;
}

.faq__item {
  border-bottom: 1px solid #aaa;
}

.faq__item summary {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 24px 36px 24px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  cursor: pointer;
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary span {
  color: #D8B48A;
  font-weight: 700;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: #555;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__answer {
  display: flex;
  gap: 14px;
  padding: 0 0 24px;
  font-size: 14px;
  line-height: 2;
  color: #555;
}

.faq__answer span {
  color: #D8B48A;
  font-weight: 700;
}

.faq__answer p {
  flex: 1;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}


.access {
  background: #4b4b4b;
  color: #fff;
}

.access__inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 80px 15px;
}

.access .section-en {
  margin-bottom: 18px;
  font-size: 20px;
  color: #555;
}

.access__logo {
  margin-bottom: 28px;
}

.access__logo img {
  width: 70%;
  display: block;
}

.access__info {
  margin: 0 0 14px;
}

.access__info div {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.7;
}

.access__info dt {
  font-weight: 700;
  white-space: nowrap;
}

.access__info dd {
  margin: 0;
}

.access__map-link {
  display: block;
  margin-bottom: 14px;
  text-align: right;
  font-size: 12px;
  color: #fff;
  text-decoration: underline;
}

.access__map {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer {
  max-width: 390px;
  margin: 0 auto;
  padding: 18px 20px;
  background: #cfcfcf;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer small,
.footer a {
  font-size: 10px;
  color: #333;
}

.footer a {
  text-decoration: underline;
}


@media (min-width:900px){
    body{
        background:url("./img/pc_bg.webp") center center / cover no-repeat fixed;
    }
    .pc-bg{
        height:100vh;
        display:flex;
        justify-content:center;
        align-items:center;
        padding:40px;
    }
    .sp-wrap{
        width:390px;
        height:98vh;
        overflow-y:auto;
        background:#fff;
        border-radius:10px;
        box-shadow:0 30px 80px rgba(0,0,0,.18);
    }
	.sp-wrap::-webkit-scrollbar{
		width:6px;
	}

	.sp-wrap::-webkit-scrollbar-thumb{
		background:#bbb;
		border-radius:100px;
	}

	.sp-wrap::-webkit-scrollbar-track{
		background:transparent;
	}

}