@charset "utf-8";
html{
	font-family: Arial, Helvetica, "Hiragino Kaku Gothic Pro","Noto Sans", "Noto Sans CJK JP", "NotoSansCJKjp-Jxck","游ゴシック","Yu Gothic",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック";
	font-size: 10px;
	font-weight: 500;
	color:#4d4c4c ;
	background-color: #e6dad3;
	
}
.wrapper{
	max-width: 600px;
	margin: 0 auto;
	background-color: #ede4df;
	border-radius: 10px;
}
.elementWrap{
	background-color: #fff;
	filter: drop-shadow(0 4px 8px rgba(68, 68, 68, 0.3));
	border-radius: 10px;
}
.docWrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ede4df;
	padding: 0 0 10px 0;
}
.common_header{
	background-color:rgba(246,243,238,1);
	padding: 10px 2%;
	display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    cursor: pointer;
    transition: transform 1s ease;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #737373;
    transition: transform 1s ease, opacity 1s ease, background-color 1s ease;
}
.nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #fff;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 1s ease, transform 1s ease;
	padding: 20px 0 ;
}

.nav-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
	z-index: 1;
}

.nav-menu ul li a {
    text-decoration: none;
    padding: 15px 0;
    display: block;
    transition: background-color 1s ease;
	text-align: center;
	border: none;
	font-size:1.3rem;
}
.nav-menu ul li a span{
	margin:5px 0 0 0;
	font-size:1rem;
	color:#c4b9a9;
}
.nav-menu ul li a:hover {
    background-color: #f0f0f0;
}
.hamburger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.imgCommonHeaderLogo{
	border: none;
}
.breadcrumb {
	display: flex;
	flex-wrap: wrap; /* 折り返しを許可 */
	padding: 10px 2%;
	list-style: none;
	margin: 0;
}
.breadcrumb li + li::before {
	display: inline-block;
	content: "＞";
	margin: 0 0.5em;
}
.breadcrumb li {
	min-width: 0;              /* ← これが重要 */
	flex-shrink: 1;            /* ← 幅を詰める許可 */
}
.breadcrumb li a {
	display: inline-block;     /* ← 折り返し可能にする */
	word-break: break-word;    /* ← 単語途中でもOKに */
	overflow-wrap: break-word; /* ← 古いブラウザ対応 */
}
.breadcrumb a {
	text-decoration: none;
	border:none;
}
.LpMainTag,.LpAsideTag{
	padding: 0 3%;
}

.documentPageH1{
	font-weight: bold;
	font-size: 1.5rem;
	text-align: center;
	padding: 20px 0;
}
.documentArea{
	background-color: rgba(255, 255, 255);
	border-radius: 10px;
	margin: 5px 2% 0px 2%;
	padding: 20px;
	filter: drop-shadow(0 4px 8px rgba(68, 68, 68, 0.3));
}
.documentArea h2{
	font-weight: bold;
	margin-top: 15px;
}
.documentArea h3{
	font-weight: bold;
	margin-top: 10px;
}
.ContentPageH1{
	font-weight: bold;
	font-size: 1.5rem;
	text-align: center;
	padding: 20px 0;
	color: #fff;
	background-image: url(https://sepila.jp/common/image/strengthSum.png);
	height: 120px;
	display: flex;
	align-items: center;
    justify-content: center;
}
h1{
	font-size:3.2rem;
	line-height: 2rem;
}
a{
	border-bottom: .5px solid;
	color:#755a31 ;
	font-weight: 600;
}
footer{
	max-width: 600px;
	align-items: center;
	justify-content: center;
	background-color: #ede4df; 
	margin: 0 auto;
}
.contentPage_wrap{
	padding:0 2%;
}
.sepilaBrandTxt{
	display: block;
	font-family:Lato;
	color:#737373;
	letter-spacing: 4px;
	margin-top: 14px;
}
.studioDesArea{
	padding: 0 5% 15px 5%;
}
.commonDesTxt{
	margin:10px 3%;
	font-size: 1.2rem;
	line-height: 20px;
}
/* TOPCvボタン */
.cvTopArea{
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center; 
	margin: 25px 0 15px 0;
}
.cvTopArea a{
	border: none;
	box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.cvTopButton{
	background-color: #C2858C;
	display: flex;
	align-items: center;
	justify-content: center; 
	width:190px;
	border-radius: 10px;
	padding: 15px 0;
}
.cvTopTxt{
	color:white;
	font-weight: bold;
	font-size: 1.5rem;
	line-height: 19px;
}
.cvTopAddtxt{
	text-align: center;
	margin: 10px 0 0 0;
}
/* 毎月2日のCvボタン */
.CvFullArea{
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center; 
	margin: 30px 0 -10px 0;
	display: flex;
	align-items: center;
	justify-content: center; 
	color: #747373;
	font-weight: bold;
	border-color:#949393 ;
	position: relative;
}
.CvFullTxt{
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center; 
	width:130px;
	border-radius: 10px;
	padding: 5px 0 3px 0;
	border:none;
	box-shadow: 0px 0 10px -6px rgba(0, 0, 0, 0.3);
}
.cvFullButtonArea{
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center; 
	margin: 0 0 5px 0;
}
.cvFullButtonArea a{
	border: none;
	box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.cvFullButton{
	background-color: #06C654;
	display: flex;
	align-items: center;
	justify-content: center; 
	width:230px;
	border-radius: 10px;
	padding: 13px 0 10px 0;
}
.cvButtonCaptionTxt{
	align-self: auto;
	display: block;
	color: #8a8989;
	text-align: center;
	margin: 8px 0 0 0;
}
.cvButtonCaptionTxt a{
	border-bottom:.1px solid;
}

/* 通常のCvボタン */
.cvButtonArea{
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center; 
	margin: 25px 0 5px 0;
}
.cvButtonArea a{
	border: none;
	box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.cvButton{
	background-color: #C2858C;
	display: flex;
	align-items: center;
	justify-content: center; 
	width:190px;
	border-radius: 10px;
	padding: 5px 0;
}
.cvButtonLineicon{
	width: 40px;
	height:40px;
	margin: 0 5px 0 0;
}
.cvButtonTxt{
	color:white;
	font-weight: bold;
	font-size: 1.5rem;
	line-height: 19px;
}
.cvButtonAddtxt{
	text-align: center;
	margin: 10px 0 0 0;
}
.underCvContactArea{
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center; 
	margin: 10px 0 5px 0;
	display: flex;
	align-items: center;
	justify-content: center; 
	color: #949393;
	border-color:#949393 ;
}
.underCvLookaroundButton{
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center; 
	width:190px;
	border-radius: 10px;
	padding: 8px 0;
	border:none;
	box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.top_trialPriceArea,.top_entryPriceArea,.monthlyPriceArea,.top_monitorCooperArea,.top_InstPriceArea{
	padding: 10px 5%;
	text-align: center;
	margin: 0 0 10px 0;
	filter: drop-shadow(0 2px 5px rgba(68, 68, 68, 0.3));
}
.top_entryPriceArea{
	margin: 0 0 25px 0;
}
/* ここから特徴パーツ */
.top_strengthUnit{
	padding: 10px 5%;
	border-radius: 10px;
}
section:nth-of-type(2) .top_strengthUnit,
section:nth-of-type(3) .top_strengthUnit,section:nth-of-type(4) .top_strengthUnit {
    margin-top: 10px;
}
.top_strengthArea h3{
	margin: 5px 0 10px 0;
}
.top_strengthNum{
	color: #C2858C;
}
.top_strengthDes{
	position: relative;
	display: flex;
	align-items: flex-start;
	z-index: 5;
}
.top_strengthUnit img, .top_strengthUnit img, .top_strengthUnit video {
    border-radius: 10px;
}
.top_strengthUnit video {
    width: 100%;
    height: auto;
}

/* ここからPriceパーツ */
.trialDes{
	margin: 10px 0;
	font-size: 1.2rem;
}
.trialPriceDetailArea{
	display: flex;
    font-family: 'Times New Roman', Times, "A-OTF A1明朝 Std Bold", 'serif', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    align-items: center;
    text-align: center;
    justify-content: center;
	margin: 0 0 15px 0;
}
.trialTimes{
	color: #fff;
    background-color: #C2858C;
    border-radius: 50%;
    text-align: center;
    display: flex;
    padding: 5px;
    font-size: 1.7rem;
    align-items: baseline;
    justify-content: center;
	margin: 10px 0 0 0;
}
.trialTimes span{
	font-size: 1.2rem;
}
.trialPrice{
	font-size: 5rem;
	margin: 0 0 0 5%;
	color: #C2858C;
}
.trialPrice span{
	font-size: 1.2rem;
}
.trialCvButton{
	background-color: #C2858C;
	color: #fff;
	font-size: 1.2rem;
	padding: 9px 0;
}
.top_PriceArea{
	padding: 5px 2% 5px 2%;
    text-align: center;
    margin: 0 0 10px 0;
	border-radius: 10px;
	filter: none;
}
.monthlyTitleArea{
	margin: 10px 0 10px 0;
	
}
.monthlyTitleArea h3{
	font-weight: 950;
	color: #C2858C;
	font-size: 1.6rem;
}
.priceCapacity{
	width: 13%;
    margin: 0 0 10px -16%;
}
.monthlyTitleArea p{
	margin: 3px 0 20px 0;
	font-size: 1.2rem;
}
.entryPriceDetailArea{
    font-family: 'Times New Roman', Times, "A-OTF A1明朝 Std Bold", 'serif', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.campaignentryTxt{
	background-color: #DCA3A9;
	color: #fff;
	width: 45%;
	align-items: center;
    justify-content: center;
	display: flex;
	text-align: center;
	font-size: 1.2rem;
	margin: 10px 0 0 28% ;
	padding: 5px 0;
	font-weight: bold;
}
.asisEntryPrice{
	font-size: 2rem;
	background: linear-gradient(7deg, #fff 0%, #fff 45%, #C2858C 45%, #C2858C 55%, #fff 55%, #fff 100%);
} 
.campaignEntryChevron{
	color:#C2858C ;
	margin: 0 0 0 1%;
	font-size: 1.2rem;
}
.campaignEntryDiscountPrice{
	color:#C2858C ;
	font-size: 5rem;
	margin: 0 2% 0 4%;
}
.campaignEntryDiscountyen{
	font-size: 1.2rem;
	color:#C2858C ;
}
.monthlyPriceArea{
	padding: 10px 5%;
    text-align: center;
    margin: 0 0 15px 0;
}
.monthlyPriceTableArea{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin: 10px 0 0 0;
}
.monthlyPriceTableArea table {
    text-align: center;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.campaignTh{
	background-color:#DCA3A9 ;
	color:#fff;
	font-size:1.2rem;
	font-weight: bold;
}
.visiterTh{
	background-color:#f1f1f1 ;
	color:#4d4c4c ;
}
.monthlyPriceTableArea tr:first-child th:first-child {
    border-top-left-radius: 10px;
}
.monthlyPriceTableArea tr {
    background-color: #fff;
    padding: 20px 0;
}
.monthlyPriceTableArea th{
	padding: 10px 0;
	border: solid;
    border-width: 1px;
    border-color: #d8d8d8;
}
.monthlyPriceTableArea td {
    padding: 15px 2%;
    vertical-align: middle;
	border: solid;
    border-width: 1px;
    border-color: #d8d8d8;
}
.monthlyPriceTableArea .monthlyPlanName{
	font-size: 1.2rem;
	font-weight: bold;
	background-color: #f7f5f3;
}
.monthlyPlanName span{
	font-size: 0.9rem!important;
	font-weight: 400;
}
.popularPlanFlag{
	width: 66%;
	margin: -8px auto 5px auto;
	padding: 2px 0;
	background-color: #DCA3A9;
	border-radius: 10px;
	color: #fff;
	font-size: 0.7rem;
}
.monthlyPriceTableArea .monthlyPlanDetail4_4dig{
	padding: 15px 0 15px 2.5%;
}
.monthlyPriceTableArea .monthlyPlanDetail5_5dig{
	padding: 15px 0 15px 2%;
}
.asisMonthlyPrice{
	font-size: 1.3rem;
	background: linear-gradient(7deg, #fff 0%, #fff 45%, #C2858C 45%, #C2858C 50%, #fff 55%, #fff 100%);
}
.MonthlyPriceNum{
	font-size: 3rem;
	margin: 0 2% 0 2%;
	color:#C2858C ;
	font-family: 'Times New Roman', Times, "A-OTF A1明朝 Std Bold", 'serif', YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.monthlyPlanDetail4_4dig .MonthlyPriceNum{
	margin: 0 2% 0 5%;
}
.monthlyPlanDetail5_4dig .MonthlyPriceNum{
	margin: 0 2% 0 4%;
}
.monthlyPlanDetail5_5dig .MonthlyPriceNum{
	margin: 0 1% 0 2%;
}
.MonthlyPriceYen{
	color:#C2858C ;
	font-size: 1rem;
}
.monthlyPriceTableArea td .campaignTax {
    font-size: 1rem;
    color: #a3a2a2;
}
.tableCaption {
	text-align: left;
    margin: 8px 0 0 3%;
	color: #a3a2a2;
}
.moniterTermsTxtArea{
	text-align: left;
	margin: 10px 0 0 0;
}
.moniterTermsTxtArea .TermsMain{
	margin-left: 7%;
	font-size: 1.2rem;
	list-style: disc;
}
.TermsTxt{
	margin: 0 0 10px 0;
}
.moniterTermsTxtArea ul ul{
	list-style-type: circle;
	margin-left: 30px;
	font-size: 1.2rem;
}
.top_InstPriceArea{
	margin: -5px 0 0 0;
	padding-top: 20px;
}
.InstButton {
	display: block;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px 0;
	width: 215px;
    border: none;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
	margin: 5px 0 5px 0;
	font-size: 1.2rem;
}
.top_compareArea{
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.top_compareArea table{
	text-align: center;
	width: 100%;
	border-collapse: separate;
	filter: drop-shadow(0 4px 8px rgba(68, 68, 68, 0.3));
	border-collapse: separate;
}
.top_compareArea tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

.top_compareArea tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

.top_compareArea tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.top_compareArea tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}
.top_compareArea th,.top_compareArea td{
	background-color:#FFFBF6;
	border-right: solid;
	border-width: 1px;
	border-color:#d8d8d8 ;
	padding: 5px;
}
.top_compareArea th{
	background-color:#D9D9D9 ;
	font-weight: 500;
}
.top_compareArea td{
	padding: 15px 3%;
}
.top_compareArea .compareTableNull,.top_compareArea .compareTableSEPILAName,.top_compareArea .compareTableRecordName,.top_compareArea .compareTableSEPILA{
	border-right:solid ;
	border-width: 3px;
	border-color:#C2858C ;
}
.top_compareArea .compareTableNull{
	background-color: #D9D9D9;
}
.top_compareArea .compareTableSEPILAName{
	font-weight: 600;
	width: 30%;
	background-color: #fff;
	border-top:solid ;
	border-width: 3px;
	border-color:#C2858C ;
}
.compareTableSEPILAName img{
	border-radius: 50%;
    width: 20%;
    margin-top: 5%;
}
.compareTableSEPILA span{
	font-size: 0.8rem;
	color: #a3a2a2;
}
.compareTableOther span{
	font-size: 0.8rem;
	color: #a3a2a2;
}
.top_compareArea .compareTableRecordName{
	font-weight: 600;
}
.top_compareArea .compareTableSEPILA{
	font-weight: 600;
	font-size: 1.2rem;
	background-color: #fff;
}
.supervisionDesArea{
	text-align: left;
}
/*
.underCvContactArea a{
	border: none;
	box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.underCvContactButton{
	background-color: #f0eded;
	display: flex;
	align-items: center;
	justify-content: center; 
	width:190px;
	border-radius: 10px;
	padding: 8px 0;
}*/
.footerH1{
	background-color: #f2e5d8;
	color: #a9a9a9;
	margin-top: 20px;
}
.footerSnsArea{
	padding: 15px 3%;
	background-color: #f2e5d8;
}
.footerSnsArea a{
	border: none;
}
.footerSnsArea ul{
	display: flex;
}
.footerSnsArea li{
	border-radius: 50%;
	background-color: #FFFBF6;
	width: 12%;
	margin: 0 auto;
}
.footerCopyright{
	text-align: center;
	padding: 10px 0;
}
.footerTxtlinkAreas{
	margin: 20px 1% 5px 4%;
}
.footerTxtlinkAreas a{
	border: none;
	color:#4d4c4c ;
	font-weight: 100;
	margin-right: 1%;
}


@media screen and (min-width:450px) {
	html{
		font-size: 14px;
	}
	.LpMainTag,.LpAsideTag{
		padding: 0 8%;
	}
	.commonDesTxt{
		line-height: 30px;
	}
	.top_strengthUnit{
		padding: 20px 6% 10px 6% ;
	}	
	.top_strengthArea h3{
		margin-bottom: 20px;
	}
	/* 毎月2日のCvボタン */
	.CvFullTxt{
		width: 180px;
	}
	.cvFullButton{
		width: 285px;
	}
	.cvTopButton{
		width: 235px;
		padding: 20px 0;
	}
	.cvButton{
		width: 235px;
		padding: 8px 0;
	}
	.underCvContactButton{
		width: 235px;
	}
	.underCvLookaroundButton{
		width: 235px;
	}
	.cvButtonTxt{
		line-height: 25px;
	}
	.InstButton{
		width: 285px;
	}
}