body {
		color: rgb(83, 71, 65);
		font-size: 1.5rem;
		font-weight: bold;
		line-height: 1.9;
		-webkit-text-size-adjust: 100%;
	font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, Arial, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.content_wrapper {
		/*margin-bottom: 26px;*/
		padding: 0 24px;
}
/*.content_wrapper:last-of-type {
	margin-bottom: 0;
}*/
.content_title {
		margin-bottom: 26px;
}
.text_indent {
		padding-left: 1em;
		text-indent: -1em;
}
.text_bold {
		font-weight: bold;
}
.text_red {
		color: #EB554B;
}
.text_orange {
		color: #EB554B;
}
.text_link {
		color: #EB554B;
		text-decoration: none;
		word-wrap: break-word;
}
.text_link:hover {
		text-decoration: underline;
}
.pc_only {
		display: none;
}
small {
	display: inline-block;
	font-size: 90% !important;
	font-weight: 500;
}
@media screen and (min-width: 500px) {
		.pc_only {
				display: block;
		}
		.sp_only {
				display: none;
		}
		html {
				font-size: 62.5%;
		}
		body {
				font-size: 2rem;
		}
		.wrapper {
				box-shadow: 30px 0px 90px -10px rgba(225, 225, 225, 1), -30px 0px 90px -10px rgba(225, 225, 225, 1);
				background: white;
		}
}
/*======================================================
アニメーション
======================================================*/
/*===============　マーカーアニメーション ===============*/
.text_marker_yellow { /*黄色マーカー 0.5秒*/
		padding-bottom: 2px;
		background: -webkit-linear-gradient(left, rgb(250, 248, 139) 50%, transparent 50%);
		background: -moz-linear-gradient(left, rgb(250, 248, 139) 50%, transparent 50%);
		background: linear-gradient(left, rgb(250, 248, 139) 50%, transparent 50%);
		background-repeat: no-repeat;
		background-size: 200% .8em;
		background-position: 100% .8em;
		transition: .5s;
		transition-delay: .8s;
}
.text_marker_pale_red { /*薄赤色マーカー 0.5秒*/
		padding-bottom: 2px;
		background: -webkit-linear-gradient(left, rgb(251, 219, 212) 50%, transparent 50%);
		background: -moz-linear-gradient(left, rgb(251, 219, 212) 50%, transparent 50%);
		background: linear-gradient(left, rgb(251, 219, 212) 50%, transparent 50%);
		background-repeat: no-repeat;
		background-size: 200% .8em;
		background-position: 100% .8em;
		transition: 2.0s;
		transition-delay: .8s;
}
[class*='text_marker_'].marker_10 { /*マーカー 1秒*/
		transition: 1.0s;
		transition-delay: .8s;
}
[class*='text_marker_'].marker_20 { /*マーカー 2秒*/
		transition: 2.0s;
		transition-delay: .8s;
}
[class*='text_marker_'].marker_30 { /*マーカー 3秒*/
		transition: 3.0s;
		transition-delay: .8s;
}
[class*='text_marker_'].delay-time20 { /*マーカー ディレイ 2秒*/
		transition-delay: 2.0s;
}
.text_marker_yellow.marker_trigger, .text_marker_pale_red.marker_trigger {
		background-position: 0% .8em;
}
/*===============　上下に動くアニメーション ===============*/
.btn.floatV {
		-webkit-animation: floatV 3s ease-in-out infinite alternate;
		animation: floatV 3s ease-in-out infinite alternate;
}
@-webkit-keyframes floatV {
		0% {
				-webkit-transform: translate3d(0, -0.5em, 0);
				transform: translate3d(0, -0.5em, 0);
		}
		50% {
				-webkit-transform: translate3d(0, 0.5em, 0);
				transform: translate3d(0, 0.5em, 0);
		}
		100% {
				-webkit-transform: translate3d(0, -0.5em, 0);
				transform: translate3d(0, -0.5em, 0);
		}
}
@keyframes floatV {
		0% {
				-webkit-transform: translate3d(0, -0.5em, 0);
				transform: translate3d(0, -0.5em, 0);
		}
		50% {
				-webkit-transform: translate3d(0, 0.5em, 0);
				transform: translate3d(0, 0.5em, 0);
		}
		100% {
				-webkit-transform: translate3d(0, -0.5em, 0);
				transform: translate3d(0, -0.5em, 0);
		}
}
/*===============　拡大縮小アニメーション ===============*/
.breathing {
		animation: breathing 6s infinite;
}
@keyframes breathing {
		0% {
				transform: scale(1, 1);
				transform-origin: center bottom;
		}
		40% {
				transform: scale(1.03, 1.03);
				transform-origin: center bottom;
		}
		70% {
				transform: scale(1, 1);
				transform-origin: center bottom;
		}
}
/*===============　揺れるアニメーション ===============*/
.fuwafuwa {
		animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
		transition: 1.5s ease-in-out;
		margin-top: 15px;
}
@keyframes fuwafuwa {
		0% {
				transform: translate(0, 0) rotate(-4deg);
				transform-origin: center bottom;
		}
		50% {
				transform: translate(0, -2px) rotate(0deg);
				transform-origin: center bottom;
		}
		100% {
				transform: translate(0, 0) rotate(4deg);
				transform-origin: center bottom;
		}
}
/*===============　ジャンプするアニメーション ===============*/
.jump_01 {
		animation: jump_01 5s linear infinite;
}
@keyframes jump_01 {
		0%, 7% {
				transform: translateY(0);
		}
		17% {
				transform: translateY(-6px);
		}
		25% {
				transform: translateY(2px);
		}
		33% {
				transform: translateY(-4px);
		}
		41% {
				transform: translateY(2px);
		}
		46%, 100% {
				transform: translateY(0);
		}
}
.jump_02 {
		animation: jump_02 6s linear infinite;
}
@keyframes jump_02 {
		0%, 47.5% {
				transform: translateY(0);
		}
		50% {
				transform: translateY(-4px);
		}
		52.5% {
				transform: translateY(2px);
		}
		55% {
				transform: translateY(-4px);
		}
		57.5% {
				transform: translateY(2px);
		}
		60%, 100% {
				transform: translateY(0);
		}
}
/*===============　アニメーションディレイ ===============*/
.delay-time02 {
		animation-delay: .2s;
}
.delay-time04 {
		animation-delay: .4s;
}
.delay-time06 {
		animation-delay: .6s;
}
.delay-time08 {
		animation-delay: .8s;
}
.delay-time10 {
		animation-delay: 1.0s;
}
.delay-time12 {
		animation-delay: 1.2s;
}
.delay-time14 {
		animation-delay: 1.4s;
}
.delay-time20 {
		animation-delay: 2.0s;
}
/*======================================================
header
======================================================*/
h1 {
		width: 60%;
		height: auto;
		margin: 4% auto;
}
/*======================================================
追従ボタン
======================================================*/
.cta_follow {
		position: fixed;
		bottom: 0;
		/*left: 0;*/
		width: 100%;
		max-width: 500px;
		display: none;
		z-index: 999;
}
.cta_follow_box {
		max-width: 640px;
		margin: 0 auto;
}
.cta_follow .btn_text {
		width: 203px;
		height: auto;
		margin: 14px auto 12px;
}
.cta_follow .btn {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 0 auto 20px;
		border-radius: 35px;
		background: #eb554b;
		max-width: 520px;
		width: calc(100% - 48px);
		height: 70px;
		-webkit-filter: drop-shadow(0 5px 0 #ffcdca);
		-moz-filter: drop-shadow(0 5px 0 #ffcdca);
		filter: drop-shadow(0 5px 0 #ffcdca);
		transition: 0.2s;
		color: #FFF;
		text-decoration: none;
}
.cta_follow .btn::after {
		position: absolute;
		top: 46%;
		right: 20px;
		content: "";
		display: block;
		width: 10px;
		height: 10px;
		border-top: solid 1px #FFF;
		border-right: solid 1px #FFF;
		transform: rotate(45deg) translateY(-50%);
}
.cta_follow .btn p {
		text-align: center;
		padding-bottom: 7px;
}
/*======================================================
footer
======================================================*/
.ft-copyright {
		padding: 13px 0 15px;
		background-color: #FCF2EB;
		text-align: center;
		font-size: 1rem;
}
footer .cta {
		padding: 15% 0 10px;
		border-top: solid 4px #ED554B;
}
/*======================================================
マーカー
======================================================*/
.marker-animation {
		background-image: linear-gradient(#fddc9a, #fddc9a);
		background-size: 0% 35%;
		background-position: 0 100%;
		background-repeat: no-repeat;
		transition: 2s;
}
/*アニメーション後*/
.active_marker-animation {
		background-size: 100% 35%; /*JSからクラスactiveを付与されたときに背景の幅を全体に広げる*/
}
/*======================================================
下からフワッと
======================================================*/
/* fadeUp */
.fadeUp {
		animation-name: fadeUpAnime;
		animation-duration: 1s;
		animation-fill-mode: forwards;
		opacity: 0;
}
@keyframes fadeUpAnime {
		from {
				opacity: 0;
				transform: translateY(50px);
		}
		to {
				opacity: 1;
				transform: translateY(0);
		}
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
		opacity: 0;
}
/*===============　ドクドクと大小を繰り返す ===============*/
.dokudoku {
		animation: dokudokuAnime 1s ease 0s alternate;
		transform-origin: center
}
@keyframes dokudokuAnime {
		0%, 100% {
				transform: scale(1, 1);
		}
		50% {
				transform: scale(0.7, 0.7);
		}
}
/*===============　ゆらゆら揺れる ===============*/
.yurayura {
		transform-origin: center bottom;
		animation: yurayuraAnime 2.5s linear infinite;
}
@keyframes yurayuraAnime {
		0%, 100% {
				transform: rotate(5deg);
		}
		50% {
				transform: rotate(-5deg);
		}
}
/*===============右下から左上にフェードイン ===============*/
.fadeInRightBottom {
		transform-origin: center bottom;
		animation: fadeInRightBottomAnime 2s linear;
}
@keyframes fadeInRightBottomAnime {
		0% {
				opacity: 0;
				transform: translate(25px, 25px);
		}
		100% {
				opacity: 1;
				transform: translate(0, 0);
		}
}
/*======================================================
共通
======================================================*/
h2 {
		font-family: a-otf-jun-pro, sans-serif;
		font-weight: 300;
		font-style: normal;
		font-feature-settings: "palt";
}
h3 {
		font-size: 1.3em;
		font-weight: 500;
}
/*======================================================
フッター
======================================================*/
footer {
		background-color: #FCF2EB;
}
.ft-copyright {
		padding: 25px 0 15px;
}
/*======================================================
ヘッダー
======================================================*/
header {
		justify-content: space-between;
		height: 8vh;
		background: #fff;
		position: fixed;
		z-index: 998;
		top: 0;
		max-width: 500px;
}
/*======================================================
セクション共通
======================================================*/
#self_care, #lesson, #voice, #effect {
		padding: 4rem 0 0;
}
.clear::before {
		background: rgba(255, 255, 255, 0);
}
/*2407_あとらす岡追記*/
nav.open.nav_list ul {
		margin: 3% auto 10%;
}
.logo {
		margin-bottom: 0;
}
/*CTAアニメーション追加*/
@-webkit-keyframes shine {
		0% {
				left: -200%;
				opacity: 0;
		}
		70% {
				left: -200%;
				opacity: 0.5;
		}
		71% {
				left: -200%;
				opacity: 1;
		}
		100% {
				left: -20%;
				opacity: 0;
		}
}
@keyframes shine {
		0% {
				left: -200%;
				opacity: 0;
		}
		70% {
				left: -200%;
				opacity: 0.5;
		}
		71% {
				left: -200%;
				opacity: 1;
		}
		100% {
				left: -20%;
				opacity: 0;
		}
}
.shine_inner {
		position: relative;
		overflow: hidden;
		display: block;
}
.shine_mask {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		-webkit-mask-size: 100% auto;
		mask-size: 100% auto;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-position: left top;
		mask-position: left top;
		display: block;
}
.cta_btn .shine_mask {
		-webkit-mask-image: url("../img/cp/cta_btn.webp");
		mask-image: url("../img/cp/cta_btn.webp");
}
.shine {
		content: "";
		-webkit-animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
		animation: shine 3s cubic-bezier(0.25, 0, 0.25, 1) infinite;
		background-color: #fff;
		width: 140%;
		height: 100%;
		-webkit-transform: skewX(-45deg);
		transform: skewX(-45deg);
		top: 0;
		left: -160%;
		opacity: 0.5;
		position: absolute;
		z-index: 1;
		display: block;
}
/*ボタンホバー時明るくする*/
a.cta_btn {
		position: relative;
}
a.cta_btn::before {
		-webkit-mask-image: url("../img/240716/cta_btn.png");
		mask-image: url("../img/240716/cta_btn.png");
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		mask-size: 100%;
		display: none;
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background-color: #FFF;
		opacity: 0.2;
		z-index: 2;
}
a.cta_btn:hover::before {
		display: inline-block;
}
h2, h3 {
		font-weight: bold;
		font-family: 'Noto Sans JP', sans-serif, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, Arial, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
img {
		display: block;
		vertical-align: bottom;
}
.nav_list a {
		display: block;
}
.nav_list a:hover {
		opacity: .8;
}
.faq_link {
		position: relative;
}
.faq_link::after {
		content: "";
		display: inline-block;
		position: absolute;
		background: url("../img/240716/link_ic_01.png") no-repeat 0 0/contain;
		top: 5%;
    left: 5.2rem;
    width: 1rem;
    height: 1rem;
}
/*mv*/
.mv {
		margin-top: 15%;
		position: relative;
}
.mv_tx_01 {
		position: absolute;
		width: 20%;
		top: 28%;
		right: 10%;
}
/*price*/
#price{
	background: #6bc1d2;
	border-top-right-radius: 50px;
	padding: 8% 12%;
	margin-top: -5%;
	text-align: center;
}

#price .yellow{
color:#ffff00;
	}

#price .appeal{
	font-size: 2.8rem;
	margin: -0.5rem;
}
#price .triangle{
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #534741;
	margin: 1rem auto;
}
#price .balloon{
	font-size: 1.2em;
}
#price .balloon .yellow{
	font-size: 1.5em;
}
#price .balloon {
	position: relative;
  display: inline-block;
  margin: 0 0 3rem;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #ffffff;
  font-size: 16px;
  border: solid 2px #ffffff;
  box-sizing: border-box;
}

.balloon:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #6bc1d2;
  z-index: 2;
}
.balloon:after {
 content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #ffffff;
  z-index: 1;
}
/*21のセルフケア*/
#self_care {
		padding: 0 0 2.5rem;
}
.bg_pink {
		background-color: #ef89b1;
		padding: 4rem 0 2rem;
		position: relative;
}
.bg_pink:after {
		content: "";
		position: absolute;
		top: 100%;
		box-sizing: border-box;
		border-right: 50vw solid transparent;
		border-left: 50vw solid transparent;
		border-top: 3rem solid #ef89b1;
}
.self_care_ttl {
		font-size: 1.6rem;
		color: #fff;
		text-align: center;
}
.self_care_ttl span {
		font-size: 2rem;
		color: #ffff00;
}
.slide_wrap {
		display: flex;
		flex-wrap: wrap;
		padding: 2rem 5%;
}
.slide_wrap img {
		width: calc(100% / 3);
		padding: 0.2rem;
}
#self_care h3 {
		width: 70%;
		margin: 0 auto;
}
.lesson_list_tx {
		width: 80%;
    margin: 0.5rem auto 0rem;
}
.slides_tx_unltd {
		width: 15.1rem;
		margin: 0 auto;
		position: absolute;
		bottom: -2rem;
		left: calc(50% - 7.55rem);
		z-index: 1;
}
.slides_tx_price {
		width: 20.1rem;
		margin: 9rem auto 2rem;
}
.slides_tx_care {
		width: 80%;
		margin: 2rem auto 3rem;
}
/*cta*/
.cta_wrap {
		text-align: center;
		background-color: #00c3d3;
		padding: 0.7rem 0;
	color: #fff;
}
.cta_wrap p {
		line-height: 1;
		font-weight: bold;
}
.cta_btn_top_tx {
		color: #fff;
		font-size: 0.7rem;
		margin-bottom: -0.1rem;
}
.cta_btn {
		filter: drop-shadow(6px 6px 0 #698d9d);
}
.cta_wrap a {
		width: 35rem;
		display: inline-block;
}
.cta_follow .cta_wrap {
		background: rgba(0, 195, 211, .85);
}
.cta_follow .cta_wrap a {
		width: 90%;
}
.cta_follow .cta_btn_top_tx {
		font-size: 0.8rem;
		margin-bottom: 0.1rem;
}
/*さらに生配信レッスンも*/
#lesson small {
		width: 90%;
		margin: auto;
		display: block;
    text-align: left !important;
		line-height: 1.6;
}
.lesson_ttl {
		width: 65%;
		margin: 0 auto 1rem;
}
.lesson_tx {
		width: 70%;
		margin: 2rem auto 2rem;
}
.lesson_notice {
		font-size: 1.2rem;
		margin: 0 2.5rem;
		text-indent: -1em;
		padding-left: 1em;
}
.comparison_wrap {
		text-align: center;
		background-color: #ffd496;
		border-radius: 0 4rem 0 0;
		padding: 10% 5%;
		margin-top: 3rem;
}
.comparison_wrap p {
		margin-bottom: 1rem;
		line-height: 1.8;
}
.comparison_notice_ic {
		vertical-align: top;
}
/*うちヨガ+が選ばれる理由*/
#reason {
		padding: 4rem 0 2.5rem;
}
.reason_ttl {
		width: 65%;
		margin: 0 auto;
}
.reason_set_wrap {
		display: flex;
		font-weight: bold;
		align-items: center;
		justify-content: center;
		margin-top: 1rem;
}
.reason_set_wrap p {
		margin: 0 0.2rem;
}
.reason_set_left, .reason_set_right {
		border-radius: 50%;
		width: 12rem;
		height: 12rem;
		align-items: center;
		display: flex;
		justify-content: center;
		color: #fff;
}
.reason_set_left {
		background-color: #ef89b1;
}
.reason_set_right {
		background-color: #00c3d3;
}
.reason_tx {
		margin: 1rem auto;
		text-align: center;
}
.reason_topir {
		width: 90%;
		margin: 0 auto;
}
.reason_pro {
		width: 80%;
		margin: 1rem auto;
}
.reason_answer {
		width: 60%;
		margin: 0 auto;
}
/*皆様の声*/
#voice {
		background-color: #ef89b1;
		border-radius: 0 2.5rem 0 0;
		padding-bottom: 1.5rem;
}
.voice_ttl {
		font-size: 2rem;
		font-weight: bold;
		color: #fff;
		position: relative;
		text-align: center;
}
.voice_ttl::before, .voice_ttl::after {
		content: "";
		display: inline-block;
		position: absolute;
		width: 15%;
		height: 0.1rem;
		background-color: #fff;
		top: 50%;
}
.voice_ttl::before {
		left: 2rem;
}
.voice_ttl::after {
		right: 2rem;
}
.voice-contents {
		padding: 1rem 3%;
}
.voice-contents .swiper-button-prev, .voice-contents .swiper-button-next {
		background: rgba(255, 255, 255, .95);
		width: 4rem;
		height: 4rem;
		display: flex;
		justify-content: center;
		align-content: center;
		border-radius: 50%;
}
.voice-contents .swiper-button-prev {
		left: 1.5rem;
}
.voice-contents .swiper-button-next {
		right: 1.5rem;
}
.voice-contents .swiper-button-prev::after, .voice-contents .swiper-button-next::after {
		color: #ef89b1;
		font-size: 1rem;
}
/*マタニティヨガの効果*/
#effect {
		padding-top: 0;
}
.effect_ttl_wrap {
		position: relative;
}
.effect_ttl {
		position: absolute;
		width: 45%;
    top: 7%;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
}
.effect_mv_tx {
		position: absolute;
		width: 35%;
		top: 10%;
		left: 5%;
}
.effect_tx {
		text-align: center;
		margin: 4rem auto 2rem;
}
#effect h3 {
		width: 55%;
		margin: 0 auto;
}
.effect_maternity_wrap {
		display: flex;
		flex-wrap: wrap;
		margin: 1rem 5%;
		justify-content: space-between;
}
.effect_maternity_tx {
		color: #fff;
		display: flex;
		justify-content: center;
		align-items: center;
		background: rgb(0, 195, 211);
		background: linear-gradient(0deg, rgba(0, 195, 211, 1) 0%, rgba(98, 155, 213, 1) 100%);
		font-weight: bold;
		width: 9.2rem;
		height: 9.2rem;
		border-radius: 50%;
		text-align: center;
		line-height: 1.4;
		position: relative;
		margin: 1rem;
}
.effect_maternity_tx::before {
		content: "";
		position: absolute;
		display: inline-block;
		border-radius: 50%;
		border: 1px solid #85bcab;
		width: 10rem;
		height: 10rem;
		top: -4%;
}
.effect_plus_wrap {
		position: relative;
		background: #ef89b1;
		border-radius: 2rem;
		padding: 1.5rem 5%;
		margin: 4rem 5% ;
}
#effect .effect_plus_wrap h3 {
		width: 75%;
		margin: 0 auto;
}
#effect .effect_plus_wrap h3 span {
		width: 20%;
		margin: 0 auto;
		position: absolute;
		top: -2rem;
		left: 0;
}
.effect_plus_wrap .bg_white {
		background: #fff;
		padding: 1rem 7%;
		margin-top: 1.5rem;
		font-size: 1.3rem;
}
.effect_plus_wrap .bg_beige {
		background: #fff4de;
		padding: 1rem;
		margin-top: 1rem;
}
.effect_plus_attention {
		text-align: center;
}
.effect_plus_attention_list {
		border-top: 1px solid #534741;
		padding-top: 1rem;
		margin-top: 1rem;
		font-size: 1.2rem;
}
.effect_plus_attention_list li {
		padding-left: 1em;
		text-indent: -1em;
}
/*移動・準備0秒*/
#zero_wrap {
		background: #ffd496;
		padding: 4rem 0 2rem;
}
.zero_ttl {
		width: 40%;
		margin: 0 auto;
}
#zero_wrap p {
		text-align: center;
		margin: 0.5rem auto 1rem;
}
/*その他*/
.faq_btn_wrap {
		display: block;
		margin: 2rem auto;
		text-align: center;
}
.faq_btn {
		font-weight: bold;
		border: 1px solid #534741;
		padding: 0.7rem 3rem 0.7rem 1rem;
		display: inline-block;
		position: relative;
}
.faq_btn::after {
		content: "";
		display: inline-block;
		position: absolute;
		background: url("../img/240716/link_ic_01.png") no-repeat 0 0/contain;
		top: 24%;
		right: 0.5rem;
		width: 1.5rem;
		height: 1.5rem;
}
.faq_btn:hover {
		opacity: .8;
}
.comparison_wrap {
		margin-top: 0;
		border-radius: 0;
		padding-bottom: 7rem;
}
.lesson_img_01 {
		width: 80%;
		display: block;
		margin: 0 auto 1.5rem;
}
#self_care {
		margin-top: -4rem;
}
.bg_pink {
		border-radius: 0 2.5rem 0 0;
}
.self_care_ttl img {
		width: 55%;
		display: block;
		margin: 0 auto;
}
.self_care_ttl span img {
		width: 70%;
		display: block;
		margin: 0.6rem auto 0;
}
.cta_wrap a {
		width: 93%;
		padding-bottom: 0;
		margin-top: -1rem;
}
.cta_wrap span {
    font-size: 2.1rem;
}
.cta_btn .shine_mask {
		-webkit-mask-image: url("../img/2409/cta_btn.png");
		mask-image: url("../img/2409/cta_btn.png");
}
a.cta_btn::before {
		-webkit-mask-image: url("../img/2409/cta_btn.png");
		mask-image: url("../img/2409/cta_btn.png");
}
.cta_follow {
		z-index: 990;
}
/*2411*/
.cta_btn .shine_mask {
		-webkit-mask-image: url("../img/240716/cta_btn.png");
		mask-image: url("../img/240716/cta_btn.png");
}
a.cta_btn::before {
		-webkit-mask-image: url("../img/240716/cta_btn.png");
		mask-image: url("../img/240716/cta_btn.png");
}
footer small {
    font-size: 90% !important;
}
@media screen and (min-width: 500px) {
	body {
  	background-image: url(../img/body_bg.webp);
    background-color: #f1f1f1;
    background-size: 20%;
		background-repeat: repeat;
}
	p {
    font-size: 2.1rem;
}
 #voice {
		padding: 3rem 0 5rem;
}
	.comparison_wrap {
    padding-bottom: 13rem;
}
	.cta_btn_top_tx,.cta_follow .cta_btn_top_tx {
    font-size: 2.3rem;
		margin-bottom: -0.5rem;
}
	.cta_wrap {
    padding: 2rem 0 1rem;
}
	.cta_follow .cta_wrap {
    padding: 1.5rem 0 1rem;
}
	small {
    font-size: 85% !important;
		font-weight: 500;
}
	.comparison_wrap p {
    margin-bottom: 3rem;
}
	.bg_pink {
    border-radius: 0 8rem 0 0;
		margin-top: -7rem;
		padding: 5rem 0 1rem;
}
	.bg_pink:after {
    border-right: 250px solid transparent;
    border-left: 250px solid transparent;
    border-top: 7rem solid #ef89b1;
}
	.self_care_ttl span img {
    margin: 1.5rem auto 0;
}
	.slide_wrap {
    padding: 2.5rem 5%;
}
	.lesson_img_01 {
    margin: 0 auto 3rem;
}
	.lesson_list_tx {
    margin: 1rem auto 0rem;
}
	.slides_tx_care {
    margin: 2rem auto 5rem;
}
	.reason_set_left, .reason_set_right {
    width: 15rem;
    height: 15rem;
}
	.reason_tx {
    font-size: 2rem;
    line-height: 3rem;
}
	 #lesson {
		padding: 9rem 0 0;
}
	#lesson small {
    text-align: center !important;
}
	.lesson_tx {
    margin: 4rem auto 2rem;
}
	.lesson_ttl {
    margin: 0 auto 2rem;
}
	.bg_white p {
    font-size: 1.8rem;
}
	#reason {
    padding: 5rem 0 ;
    }
	.reason_tx {
    margin: 2rem auto;
}
	.reason_pro {
    margin: 2rem auto;
}
	.voice_ttl {
    font-size: 2.8rem;
}
	.voice_ttl::before, .voice_ttl::after {
    width: 25%;
}
	.voice-contents .swiper-button-prev, .voice-contents .swiper-button-next {
    width: 5rem;
    height: 5rem;
}
	.voice-contents .swiper-button-prev::after, .voice-contents .swiper-button-next::after {
    font-size: 2rem;
}
	.voice-contents .swiper-button-prev {
    left: 3.5rem;
}
	.voice-contents .swiper-button-next {
    right: 3.5rem;
}
.effect_tx {
    margin: 4rem auto 5rem;
}
	.effect_plus_wrap {
    padding: 3rem 5%;
		margin: 2rem 5% 3rem;
}
	.effect_plus_wrap .bg_white {
    padding: 4rem 7.5%;
		margin-top: 2.5rem;
}
	.effect_maternity_tx {
		margin: 1rem;
    width: 12.5rem;
    height: 12.5rem;
		font-size: 1.8rem;
}
	.effect_plus_wrap .bg_beige {
    padding: 2.5rem 2rem;
}
	.effect_maternity_tx::before {
    width: 13.5rem;
    height: 13.5rem;
		top: -5%;
}
	.effect_plus_attention_list {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}
	.effect_plus_wrap .bg_beige {
    margin-top: 3rem;
}
	p.effect_plus_attention {
    font-size: 1.6rem;
}
	#effect .effect_plus_wrap h3 {
    width: 70%;
}
	#effect .effect_plus_wrap h3 span {
		width: 20%;
    left: 0.5rem;
}
	.effect_plus_attention_list {
    font-size: 1.3rem;
}
	.faq_btn {
		padding: 1rem 4.5rem 1rem 2rem;
    font-size: 1.8rem;
}
	#zero_wrap {
    padding: 4rem 0;
}
	.faq_btn::after {
    top: 28%;
    right: 1rem;
    width: 2rem;
    height: 2rem;
}
	.faq_btn_wrap {
    margin: 2.5rem auto;
}
	footer {
    height: 8rem;
}
}