@charset "utf-8";
/* CSS Document */


body {
	color: #333;
	font-family:
		"Yu Mincho",
		"Hiragino Mincho ProN",
		"Source Han Serif",
		"Noto Serif CJK JP",
		serif !important;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 1rem !important;
	line-height: 1.8;
}
#wrap {
	max-width: 530px;
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
}


/* 共通 */
h2 {
	margin-bottom: 2em;
	color: #afa373;
	font-size: 2em;
	line-height: 1.2;
	text-align: center;
}
h2 small {
	display: block;
	font-size: .9rem;
}
h2 small::before,
h2 small::after {
	content: "-";
	margin: 0 .5em;
}
a {
	transition: .3s;
}
a:hover {
	color: #fff !important;
	opacity: .8;
}


/* スクロールしたら出てくるボタン */
.cta-fixed {
	position: fixed;
	bottom: 1.5rem;
	left: clamp(1.5rem, calc((100vw - 530px)/2 + 1rem), 50vw);
	transition: opacity .3s ease, transform .3s ease;
	opacity: 0;
	z-index: 1000;
}
.cta-fixed.show {
	opacity: 1;
	transform: translateY(0);
}
.cta-fixed:hover {
	opacity: .8;
}


/* ヘッダー */
#wrap > header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3000;
}
.header-inner {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: stretch;
	max-width: 530px;
	width: 100%;
	margin: 0 auto;
	padding: 1rem 0;
}
header h1 svg {
	fill: #afa373;
	display: block;
	width: 100px;
	height: 50px;
	transition: .3s;
}
/* ヘッダー　メニューボタン */
.menu-btn {
	position: absolute;
	top: 0;
	left: 1rem;
	width: 28px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: .4rem 0;
}
.menu-btn i {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #afa373;
	transition: transform .3s ease, opacity .3s ease;
}
.menu-btn i:nth-of-type(2) {
	width: 75%;
}
.menu-btn.open i:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.menu-btn.open i:nth-child(2) {
	opacity: 0;
}
.menu-btn.open i:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}


/* ナビ */
nav {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: 530px;
	width: 100%;
	height: 100vh;
	padding-bottom: 5em;
	background-color: #f6f4f1;
	overflow-y: auto;
	opacity: 0;
	transition: opacity .35s ease;
	pointer-events: none;
	z-index: 2000;
}
nav.open {
	opacity: 1;
	pointer-events: auto;
}
nav .nav-inner {
	margin: 6em 1em 2em 1em;
}
nav ul.gnav {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5em 1em;
	margin: 2em 0;
}
nav ul.gnav > li > a {
	display: block;
	border-bottom: 1px solid #afa373;
	color: #afa373;
	text-decoration: none;
}
nav ul.gnav > li > a:hover {
	color: #afa373 !important;
}
nav ul.gnav > li small {
	margin-left: .5em;
	font-size: .8rem;
}
nav .yoyaku {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 .5em;
	width: max-content;
	margin: 0 auto;
	padding: .5rem 2em;
	border-radius: 9999px;
	color: #fff;
	letter-spacing: .08em;
	font-size: .8em;
	background-color: #afa373;
}
nav .yoyaku img {
	flex: 0 0 auto;
	width: 18px;
	height: auto;
}
nav .nav-info {
	margin-top: 2em;
}
nav .nav-info address {
	font-size: .8rem;
	font-style: normal;
}
nav ul.nav-links {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: .5em;
	margin-top: 2em;
}
nav ul.nav-links li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	padding: .6em;
	border-radius: 50%;
	background-color: #afa373;
}
nav ul.nav-links li:first-child a {
	width: 120px;
	padding: 0;
	border-radius: 0;
	background-color: transparent;
	vertical-align: bottom;
}
nav ul.nav-links li a img {
	width: 100%;
}


/* ファーストビュー */
#hero {
	position: relative;
	height: 100svh;
	min-height: 480px;
	isolation: isolate;
	overflow: hidden;
}
#hero .f-slides {
	position: absolute;
	inset: 0;
}
#hero .f-slide {
	position: absolute;
	inset: 0;

	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	transform: scale(1.03);
	animation: fade 18s ease-in-out infinite;
}
#hero .f-slide:nth-child(1) {
	animation-delay: 0s;
	background-position: right 40% center;
}
#hero .f-slide:nth-child(2) {
	animation-delay: 6s;
	background-position: left 45% center;
}
#hero .f-slide:nth-child(3) {
	animation-delay: 12s;
	background-position: left 50% center;
}
@keyframes fade {
	0% { opacity: 0; }
	5% { opacity: 1; }
	28% { opacity: 1; }
	38% { opacity: 0; }
	100% { opacity: 0; }
}
#hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
	background-color: rgba(0, 0, 0, .3);
	background-size: 3px 3px;
	z-index: 1;
}
#hero .hero-content {
	position: relative;
	display: grid;
	place-items: center;
	height: 100%;
	padding: 7vh 20px 10vh 20px;
	text-align: center;
	z-index: 2;
}
#hero .brand {
	color: #fff;
	font-size: 2em;
	font-weight: bold;
	line-height: 1.5;
}
#hero .tagline {
	margin-top: .6rem;
	color: #fff;
	font-size: 1.2em;
	letter-spacing: .1em;
}
.cta {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0 .5em;
	margin-top: 1.5rem;
	padding: .5rem 2em;
	border-radius: 9999px;
	color: #fff;
	letter-spacing: .08em;
	font-size: .8em;
	background-color: #afa373;
}
.cta img {
	flex: 0 0 auto;
	width: 18px;
	height: auto;
}


/* アバウト */
#about {
	position: relative;
	height: 250vh;
}
#about .about-sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
}
#about .about-slides {
	position: absolute;
	inset: 0;
}
#about .about-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
}
#about .about-sticky::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .85));
	z-index: 1;
}
#about .about-content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	color: #fff;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .6s ease, transform .6s ease;
	z-index: 2;
}
#about .about-heading {
	font-size: 1.2em;
}
#about svg {
	fill: #fff;
	display: block;
	width: 100px;
	height: 50px;
	margin-bottom: 3em;
}
#about .about-body {
	padding: 0 1em;
	font-size: .9rem;
}
#about .about-content.show {
	opacity: 1;
	transform: translateY(0);
}
/* スクロールヒント */
#about .scroll-hint {
	position: absolute;
	right: 2rem;
	bottom: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: .8rem;
	letter-spacing: .1em;
	color: #fff;
	z-index: 3;
}
#about .scroll-hint i {
	display: block;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	animation: scroll-bounce 1.2s infinite;
}
@keyframes scroll-bounce {
	0%, 100% { transform: translateY(0) rotate(45deg); opacity: 0.6; }
	50%      { transform: translateY(6px) rotate(45deg); opacity: 1; }
}


/* こんな方におすすめ */
#recommend {
	padding: 5em 0 0 0;
}
#recommend .recommend-img1 {
	width: 85%;
	margin: 0 auto 0 0;
}
#recommend .recommend-img2 {
	width: 85%;
	margin: 0 0 1em auto;
}
#recommend ul {
	inline-size: fit-content;
	margin-inline: auto;
	margin: 2em auto;
}
#recommend ul li {
	position: relative;
	margin-bottom: 1rem;
	font-size: .9rem;
}
#recommend ul li::before {
	content: "●";
	margin-right: .2rem;
	color: #afa373;
	font-size: .8rem;
}
.recommend-outro {
	display: block;
	margin-top: 2em;
	padding: 5em 0;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	background-image:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url(https://lume-pilates.com/wp-content/uploads/2025/11/duo1.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}


/* 使用マシン */
#machine {
	padding: 5em 1em;
	background-color: #f6f4f1;
}
.swiper2 .swiper-slide img {
	object-fit: contain;
	aspect-ratio: 4 / 3;
	width: 100%;
	margin-bottom: .5em;
	background-color: #fff;
}
.swiper2 .swiper-button-prev,
.swiper2 .swiper-button-next {
	width: 35px !important;
	height: 35px !important;
	border-radius: 50%;
	color: #fff !important;
	background-color: #afa373 !important;
	transition: .3s;
}
.swiper2 .swiper-button-prev:hover,
.swiper2 .swiper-button-next:hover {
	opacity: .8;
}
.swiper2 .swiper-button-prev::after,
.swiper2 .swiper-button-next::after {
	font-size: .8em !important;
	font-weight: bold;
}
.swiper2 .swiper-pagination-bullet-active {
	background-color: #afa373 !important;
}
#machine ul {
	display: flex;
	flex-direction: column;
	gap: 1em 0;
	inline-size: fit-content;
	margin-inline: auto;
	margin: 2em auto;
}
#machine ul li {
	width: 100%;
	padding: .5em;
	color: #fff;
	font-size: .9rem;
	background-color: #afa373;
}


/* レッスン */
#lesson {
	padding: 5em 1em;
}
ul.lesson-list {
	margin-top: 1em;
}
#lesson .lesson-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 0 auto 1em auto;
	padding: 1em;
	text-align: center;
	background-color: #f6f4f1;
}
#lesson .lesson-name {
	color: #afa373;
	font-size: 1.2rem;
	font-weight: bold;
}
#lesson .lesson-meta {
	color: #afa373;
	font-size: 1rem;
	font-weight: bold;
}
#lesson .lesson-desc {
	inline-size: fit-content;
	margin-inline: auto;
	margin-top: .5em;
	font-size: .9rem;
	text-align: left;
}
#lesson .lesson-note {
	font-size: .8rem;
	text-align: center;
}


/* クラス */
#class {
	padding: 5em 0;
	background-color: #afa373;
}
#class h2 {
	color: #fff;
}
.class-group {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1em;
	padding: 0 1em;
	color: #fff;
}
.level {
	display: block;
	width: 140px;
	padding: .2em 1.5em;
	border-radius: 9999px;
	color: #afa373;
	font-size: .8em;
	text-align: left;
	background-color: #fff;
}
.level span {
	margin-left: 1em;
	letter-spacing: .3em;
}
#class ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 1rem;
	margin-bottom: 3rem;
	padding: 0 1rem !important;
}
#class ul li {
	flex: 0 0 calc(50% - .5rem);
}
#class ul li img {
	object-fit: cover;
	aspect-ratio: 4 / 4;
	width: 100%;
	margin-bottom: .5em;
}
#class ul li span {
	display: block;
	width: max-content;
	margin: 0 auto .5em auto;
	padding: 0 1em;
	border-radius: 9999px;
	color: #afa373;
	font-size: .9rem;
	background-color: #fff;
}
#class ul li span small {
	margin-left: .5em;
	font-size: .8rem;
}
#class ul li p {
	color: #fff;
	font-size: .8rem;
}
/* クラス　スライダー
.swiper1 {
	margin-bottom: 3em;
	padding-left: 1em !important;
	padding-right: 1em !important;
}
.swiper1 .swiper-slide img {
	object-fit: cover;
	aspect-ratio: 4 / 3;
	width: 100%;
	margin-bottom: .5em;
}
.swiper1 .swiper-slide span {
	display: block;
	width: max-content;
	margin: 0 auto .5em auto;
	padding: 0 1.5em;
	border-radius: 9999px;
	color: #afa373;
	background-color: #fff;
}
.swiper1 .swiper-slide span small {
	margin-left: .5em;
	font-size: .8rem;
}
.swiper1 .swiper-slide p {
	color: #fff;
	font-size: .9rem;
} */


/* インストラクター */
#instructor {
	padding-top: 5em;
	overflow: hidden;
}
#instructor ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	width: calc(100% - 2em);
	margin: 0 auto 3em auto;
}
#instructor ul li {
	flex-basis: calc(50% - .5em);
	text-align: center;
}


/* 料金 */
#price {
	padding: 5em 0;
}
#price .price-note {
	margin-bottom: 2em;
	padding: 0 1em;
	font-size: .8rem;
	text-align: center;
}
#price .price-subheading {
	display: block;
	width: max-content;
	margin: 0 0 .5em 1em;
	padding: 0 1.5em;
	border-radius: 9999px;
	color: #afa373;
	font-size: .8rem;
	background-color: #f6f4f1;
}
#price .price-subheading small {
	margin-left: .5em;
	font-size: .8rem;
}
/* テーブル */
#price .price-table {
	width: calc(100% - 2em);
	margin: 0 auto 2em auto;
	border-collapse: collapse;
	font-size: .9rem;
}
#price .price-table th,
#price .price-table td {
	padding: .3em;
	border: 1px solid #f6f4f1;
	white-space: nowrap;
}
#price .price-table td:first-child {
	text-align: left;
}
#price .price-table td:last-child {
	width: 80px;
	text-align: right;
}
/* 入会金キャンペーン */
.price-join {
	position: relative;
	max-width: calc(100% - 2em);
	margin: 0 auto 5em auto;
	padding: .5em;
	color: #fff;
	text-align: center;
	background-color: #afa373;
	overflow: hidden;
}
.price-join::after {
	content: '';
	position: absolute;
	top: -100px;
	left: -100px;
	width: 50px;
	height: 50px;
	background-image: linear-gradient(100deg,  rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
	animation-name: shiny;
	animation-duration: 3s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}
.price-join-inner {
	padding: 2em 1em 1em 1em;
	border: 1px solid #fff;
}
.join-title {
	display: inline-block;
	margin-bottom: 1em !important;
	padding: 0 2em;
	border-radius: 9999px;
	color: #afa373;
	font-size: 1.2em;
	font-weight: bold;
	background-color: #fff;
}
.join-fee {
	display: inline-block;
	position: relative;
	top: 0.08em;
	margin: 0 1em 0 .5em;
	text-decoration: line-through;
}
.join-free {
	display: inline-block;
	position: relative;
	top: 0.04em;
	margin-left: .5em;
	font-size: 3em;
	font-weight: bold;
	line-height: 1.2;
}
.join-free2 {
	display: inline-block;
	position: relative;
	top: 0.04em;
	font-size: 3em;
	font-weight: bold;
	line-height: 1.2;
}
@keyframes shiny {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(25deg);
        opacity: 1;
    }

    100% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
}


/* ギャラリー */
.flow-gallery {
	overflow: hidden;
	width: 100%;
}
.flow-track {
	display: flex;
	gap: 1px;
	animation: flow 40s linear infinite;
}
.flow-track img {
	display: block;
	height: 220px;
	width: auto;
}
@keyframes flow {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}


/* ご利用の流れ */
#flow {
	padding: 5em 1em;
	background-color: #f6f4f1;
}
#flow .flow-subheading {
	margin-bottom: .5em;
	border-bottom: 1px solid #afa373;
	color: #afa373;
	font-size: 1.2rem;
	font-weight: bold;
}
#flow .flow-subheading2 {
	font-size: 1.1rem;
	font-weight: bold;
}
#flow ol.flow-steps {
	margin-bottom: 2em;
}
#flow ol.flow-steps li {
	margin: 0 0 1.5em 1em;
	font-size: .9rem;
}
#flow ol.flow-steps li p:first-child {
	font-weight: bold;
}
#flow ol.flow-steps li .cta {
	margin-top: .5em;
}
.hpb {
	display: block;
	width: 120px;
	margin-top: 1em;
}


/* FAQ */
#faq {
	padding: 5em 1em;
	background-color: #fff;
}
#faq .faq-item {
	display: block;
	border-bottom: 1px solid #afa373;
}
#faq summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 0;
}
#faq .faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 0;
	list-style: none;
	font-weight: bold;
	outline: none;
	transition: .3s;
	cursor: pointer;
}
#faq .faq-question::after {
	content: "＋";
	position: static;
	transform: none;
	margin-left: 1em;
}
#faq .faq-item[open] .faq-question::after {
	content: "－";
}
#faq .faq-question:hover {
	opacity: .8;
}
#faq .faq-answer {
	margin-top: .5em;
	padding-bottom: 1rem;
	font-size: .9rem;
}
#notes {
	margin-top: 2em;
	padding: 1em;
	font-size: .9rem;
	background-color: #f6f4f1;
}
#notes p:first-child {
	font-size: 1rem;
	font-weight: bold;
}
#notes .notes-item::before {
	content: "・";
}


/* アクセス */
#access {
	padding: 5em 1em;
}
#access address {
	inline-size: fit-content;
	margin-inline: auto;
	margin-bottom: 1em;
	font-style: normal;
}
#access address p {
	margin-bottom: 1em;
}
#access .access-links {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: max-content;
	margin: 0 auto;
}
#access .access-links .cta {
	margin-top: 0;
}


/* SNS */
#sns {
	padding: 5em 1em;
	text-align: center;
	background-color: #f6f4f1;
}
#sns h2 {
	position: relative;
	display: inline-block;
}
#sns h2::before,
#sns h2::after {
	content: "｜";
	position: absolute;
	top: 50%;
}
#sns h2::before {
	left: -1em;
	transform: translateY(-50%) rotate(-30deg);
}
#sns h2::after {
	right: -1em;
	transform: translateY(-50%) rotate(30deg);
}
.sns-lead {
	margin: 0 auto 1rem !important;
}
.sns-cards {
	display: grid;
	gap: 1em;
}
.sns-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 5em;
	padding: 1em;
	color: #fff;
	background-color: #afa373;
}
.sns-card img {
	width: 50px;
	margin-bottom: .5em;
}
.sns-card:first-child img {
	width: 120px;
}
.sns-card p {
	font-size: .9rem;
}


/* お知らせ */
.news {
	padding: 5em 0;
}
.news-list {
	display: flex;
	flex-direction: column;
	margin: 0 1em;
}
.news-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	padding: 1em 0;
	border-bottom: solid 1px #f6f4f1;
}
.news-item:first-child {
	border-top: solid 1px #f6f4f1;
}
.news-item .thumb {
	flex: 0 0 100px;
}
.news-item .thumb img {
	width: 100%;
	height: 50px;
	object-fit: cover;
}
.news-item .meta {
	flex: 1;
	min-width: 0;
}
.news-item .meta-top {
	display: flex;
	align-items: center;
	gap: 0.5em;
	margin-bottom: 0.3em;
}
.news-item .date {
	font-size: .8rem;
	color: #777;
}
.news-item .cat {
	padding: 0 .5em;
	border-radius: 9999px;
	color: #888;
	font-size: .8rem;
	white-space: nowrap;
	background-color: #f6f4f1;
}
.news-item .title {
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #afa373;
	line-height: 1.2 !important;
}
.news-more {
	text-align: center;
	margin-top: 2em;
}


/* ヘルプ */
#help {
	padding: 3em;
}
.help-inner {
	padding: 1em;
	border: 1px solid #afa373;
	font-size: 1.5rem;
	text-align: center;
	text-wrap: balance;
	background-color: #f6f4f1;
}


/* フッター */
footer {
	padding: 5rem 0;
	color: #fff;
	text-align: center;
	background-color: #afa373;
}
footer svg {
	fill: #fff;
	display: block;
	width: 100px;
	height: 50px;
	margin: 0 auto 2em auto;
}
footer .copy_light {
	font-size: .8rem;
}


/* パンくず */
#breadcrumb {
	margin-top: 8em;
}


/* 投稿一覧ページ */
.news-section {
	margin-bottom: 5em;
}
.news-section h3 {
	font-size: 1rem !important;
}


/* 投稿ページ */
#toukou_wrap > header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 3000 !important;
}
#toukou_wrap article {
	padding: 1em 1em 5em 1em;
}
.toukou_h1 {
	position: relative;
	z-index: 9999;
}
#toukou_wrap h1 svg {
	fill: #afa373;
}
#toukou_wrap .menu-btn i {
	background-color: #afa373;
}
#toukou_wrap .cat-link {
	background-color: #afa373 !important;
}
#toukou_wrap {
	min-height: 100vh;          /* 画面全体の高さ確保 */
	display: flex;
	flex-direction: column;     /* 縦方向に並べる */
}
#toukou_wrap article {
	flex: 1;                    /* 余白を main が埋める */
}


/* ページネーション */
.pager {
	margin-top: 2em;
	text-align: center;
}
.pager .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	margin: 0 .3em;
	padding: .4em .8em;
	border: 1px solid #afa373;
	border-radius: 3px;
	color: #afa373;
	font-size: .9rem;
}
.pager .page-numbers.current {
	color: #fff;
	background-color: #afa373;
}