@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@800&display=swap');

/* base */
@keyframes slide-horizontal-new {
	0% {
		transform: translateX(100%)
	}
}

@keyframes slide-horizontal-old {
	80% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translateX(-100%)
	}
}

@keyframes slide-vertical-new {
	0% {
		transform: translateY(-100%)
	}
}

@keyframes slide-vertical-old {
	80% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translateY(100%)
	}
}

@keyframes out-in-new {
	0% {
		opacity: 0
	}
}

@keyframes out-in-old {
	to {
		opacity: 0
	}
}

@media (prefers-reduced-motion:reduce) {}

body,
html {
	background: transparent;
	border: 0;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	background-color: #FFFFFF;
}

body,
html {
	height: 100%;
}

body {
	overflow-x: auto;
	overflow-y: scroll
}

p,h1,h2,h3,h4,h5 {
	margin: 0;
	padding: 0;
}

ul,li,div,p,a,img,dl,dt,dd,tr,th,td {
	box-sizing: border-box;
}

img {
	vertical-align: bottom;
}

ul {
	list-style: none;
}

a {
	cursor: pointer;
	text-decoration: none;
}

.sp_767 {
	display: none;
}

/* common */
.header {
	max-width: 980px;
	margin: 10px auto;
	display: grid;
	grid-template-columns: 1fr 3fr;
	align-items: center;
}

.headerLogo {
grid-row: 1 / 2;
grid-column:  1 / 2;
}

.headerLogoImg {
	max-width: 200px;
	height: auto;
}

.mainMenu {
	grid-row: 1 / 2;
	grid-column: 2 / 3;
}

.mainMenuUl {
	font-size: 17px;
	font-family: rodin-demi-bold,
		"ms gothic",
		"ヒラギノ角ゴ pro w3",
		"hiragino kaku gothic pro",
		osaka,
		sans-serif;
	display: flex;
	flex-wrap: wrap;
	direction: ltr;
	flex-grow: 1;
	justify-content: flex-start;
	height: calc(100% + 6px);
	margin: -3px -2px;
	padding: 0;
}

.mainMenuLi {
	border-bottom: 4px solid rgba(202, 25, 32, 0);
	width: calc(100% / 6);
	text-align: center;
	height: 66px;
	line-height: 66px;
}

.mainMenuLi:hover {
	border-bottom: 4px solid #CA1920;
}



.mainMenuSpan {
	letter-spacing: .1em;
}

.mainMenuLink {
	margin: 3px 2px;
	padding: 10px;
	color: #151515;
}

.mainMenuLink:hover {
	color: #CA1920;
}

.spMenuBtn {
	display: none;
}

.closeBtn {
	display: none;
	transition: all .4s;
}


.footer {
	background: #000000;
	padding: 50px 0;
}

.footerArea {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	display: grid;
	grid-template-rows: 1fr;
	grid-template-columns: 2fr 2fr;
}

.footerLeftArea{
	grid-row: 1 / 3;
	grid-column: 2 / 3;
}

.footerRightArea {
	grid-row: 2 / 3;
	grid-column: 1 / 2;
}

.footerTopLink {
	grid-row: 2 / 3;
	grid-column: 3 / 4;
	text-align: right;
}

.footerTopLink img {
	width: 100%;
	max-width: 200px;
	margin-top: 30px;
}

.footerLogo {
	margin-bottom: 25px;
	grid-row: 1 / 2;
	grid-column: 1 / 2;
}

.footerLogoImg {
	width: 100%;
	height: auto;
	max-width: 300px;
}

.footerLi {
	list-style-type: disc;
	padding-left: 5px;
	color: #FFFFFF;
	font-size: 16px;
	line-height: 1.8;
}

.footerLink {
	color: #FFFFFF;
	text-decoration: underline;
}

.copyright {
	color: #DDDDDD;
	font-size: 14px;
	text-align: right;
	margin: 20px 0 0 auto;
	grid-column: 1/4;
}

.copyrightLink {
	color: #DDDDDD;
	text-decoration: underline;
}

@media screen and (max-width:767px) {
	.spMenuBtn {
		background-color: #ca1920;
		border-radius: 8px;
		transition: all .5s;
		display: block;
		width: 66px;
		height: 66px;
		text-align: center;
		line-height: 66px;
		font-size: 14px;
		color: #FFFFFF;
		font-weight: bold;
		letter-spacing: .1rem;
		margin: 0 10px 0 auto;
	}

	.closeBtn {
		transition: all .4s;
		z-index: -1;
		opacity: 0;
	}

	.closeBtn.active {
		opacity: 1;
		display: block;
		position: absolute;
		width: 66px;
		height: 66px;
		border-radius: 5px;
		color: #000000;
		z-index: 15;
		border: 2px solid #000000;
		top: 20px;
		right: 20px;
	}

	.closeBtn span {
		display: inline-block;
		background-color: #000000;
		position: absolute;
		height: 2px;
	}

	.closeBtn.active span:nth-of-type(1) {
		top: 23px;
		left: 12px;
		transform: translateY(6px) rotate(-45deg);
		width: 60%;
	}

	.closeBtn.active span:nth-of-type(2) {
		top: 35px;
		left: 12px;
		transform: translateY(-6px) rotate(45deg);
		width: 60%;
	}

	.mainMenuUl {
		/* transition: all .4s;
		position: fixed;
		z-index: -1;
		opacity: 0;
		visibility: hidden; */
		top: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 0.9);
		height: 100vh;
		z-index: 10;
		padding-top: 100px;
		font-size: 20px;
		opacity: 0;
		visibility: hidden;
		position: fixed;
		transition: 0.3s;
		width: 101%;
		display: block;
	}

	.mainMenuUl.active {
		opacity: 1;
		visibility: visible;	
	}

	.mainMenuLi {
		width: 100%;
		text-align: right;
		padding-right: 20px;
	}

	.footerLogo {
		grid-row: 1 / 2;
		grid-column: 1 / 4;
		text-align: center;
	}

	.footerLeftArea{
		grid-row: 2 / 3;
		grid-column: 1 / 4;
	}

	.footerRightArea {
		grid-row: 3 / 4;
		grid-column: 1 / 4;
		margin-top: 20px;
	}

	.footerTopLink {
		grid-row: 4 / 5;
		grid-column: 1 / 4;
		text-align: center;
	}

	.copyright {
		text-align: center;
		width: 100%;
	}
}

/*top*/
#magna-methodMain {
	background-color: #f2f2f2;
	padding: 0 0 80px;
}

.magna-methodHeader {
	background-color: #FFFFFF;
}

.magna-methodHeaderImage {
	position: relative;
	margin: 0 auto;
	max-width: 980px;
}

.magna-methodTopH1 {
	font-size: 1.85rem;
	/* font-weight: bold; */
	line-height: 1.45;
	position: absolute;
	top: 30px;
	left: 25px;
	font-family: "M PLUS 1p", sans-serif;
	font-weight: 800;
}

.magna-methodTopMainImage img {
	width: 100%;
	vertical-align: bottom;
}

.magna-methodTopH1 .blue {
	color: #0264c2;
	font-size: 2.5rem;
}

.magna-methodTopH1 .red {
	color: #e31725;
	font-size: 2.5rem;
}

.magna-methodTopH1 .gray {
	color: #838383;
	display: block;
	font-size: 1.65rem;
}

.magna-methodTopH1 .green {
	color: #00a514;
	font-size: 2.5rem;
}

.magna-methodLine {
	text-align: center;
	padding: 150px 0 50px;
	max-width: 980px;
	margin: 0 auto;
}

.magna-methodLine.topTrialLink {
	padding: 150px 0 200px;
}

.magna-methodLine.under {
	padding: 50px 0;
}

.magna-methodLine img {
	width: 100%;
	height: auto;
	max-width: 670px;
}

.rollover {
	position: relative;
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
}

.rollover img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: block;
	transition: 0.7s;
}

/* .rollover:hover img:nth-of-type(2) {
	opacity: 0;
} */

.magna-methodTopBox {
	background-color: #FFFFFF;
	max-width: 980px;
	border-radius: 25px;
	margin: 50px auto 0;
	padding: 30px 3%;
}


.magna-methodTopH2 {
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
	color: #000000;
	display: flex;
	justify-content: center;
	margin: 0 auto 30px;
}

.magna-methodTopH2 .border {
	border-bottom: 3px solid #141414;
	margin-left: 39px;
}

.magna-methodTopH2::after {
	content: "";
	display: block;
	width: 39px;
	height: 47px;
	margin-left: 20px;
	/* color: #cc2120;
	font-weight: bold;*/
	background: url(../img/common/arrow.webp) 0 0 no-repeat;
	background-size: contain;
}

.magna-methodTopH2.afternone::after {
	background: none;
}

.magna-methodMoreBtn {
	display: block;
	font-size: 1.45rem;
	color: #262626;
	width: 150px;
	border: 2px solid #9c9c9c;
	border-radius: 5px;
	text-align: center;
	padding: 10px 0 10px 25px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	transition: all .2s;
	margin: 0 10% 0 auto;
	background-color: #FFFFFF;
}

.magna-methodMoreBtn:hover {
	background-color: #ca1920;
	border: 2px solid #ca1920;
	color: #FFFFFF;
}

.magna-methodMoreBtn::after {
	content: "";
	display: block;
	width: 17px;
	height: 24px;
	background: url(../img/common/arrow_gray.webp);
	background-size: contain;
	margin-left: 20px;
	transition: all .2s;
}

.magna-methodMoreBtn:hover::after {
	background: url(../img/common/arrow_white.webp);
}

.magna-methodTopWhat p {
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
}

.magna-methodTopWhatImage {
	text-align: center;
	margin: 10px auto 30px;
	padding: 0 5%;
}

.magna-methodTopWhatImage img {
	width: 100%;
	height: auto;
}

.magna-methodTopWhat .redbox {
	background-color: #ca1920;
	padding: 5px;
	margin: 0 5px;
	color: #FFFFFF;
}

.magna-methodTopWhatP2 .redfont {
	font-size: 1.8rem;
	color: #ca1920;
}

.magna-methodTopWhatP2 .underline {
	font-size: 1.8rem;
	text-decoration: underline;
}

.magna-methodTopWhatP2 .bluefont {
	color: #0060c2;
}

#magna-methodTopStudyMovie {
	width: 100%;
	max-width: 480px;
	height: 270px;
	margin: 0 auto;
}

.magna-methodTopStudy {
	margin: 15px auto 0;
}

.magna-methodTopStudy .magna-methodTopH3 {
	font-size: 1.5rem;
	text-align: center;
	line-height: 1.6;
	margin-bottom: 5px;
}

.magna-methodTopStudy .magna-methodTopH3 .boxblack {
	color: #FFFFFF;
	background-color: #000000;
	padding: 5px;
	margin: 0 5px;
}

.magna-methodTopStudy .magna-methodTopH3 .boxblack:first-child {
	margin-left: 0;
}

.magna-methodTopStudy .magna-methodTopH3 .redfont {
	font-size: 2rem;
	color: #ca1920;
}

.magna-methodTopStudy .magna-methodTopStudyP {
	font-size: 1.8rem;
	text-align: center;
	font-weight: bold;
}

.magna-methodTopStudy .magna-methodTopStudyP .blue {
	color: #0060c2;
	text-decoration: underline;
}

.magna-methodTopStudy .magna-methodTopStudyP .bluebig {
	font-size: 2.1rem;
}

.magna-methodTopStudy .magna-methodTopStudyAnnotation {
	text-align: center;
	margin: 5px auto 30px;
	font-size: 1rem;
	font-weight: bold;
}

.magna-methodTopStudy .magna-methodTopStudyAnnotation .red {
	color: #ca1920;
}

.magna-methodTopStudyExample {
	max-width: 537px;
	height: auto;
	width: 100%;
	margin: 0 auto 20px;
	background-color: rgba(115,115,115,0.8);
}

.magna-methodTopStudySlider {
	max-width: 440px;
	width: 100%;
	max-height: 270px;
	height: auto;
	margin: 0 auto;
}

.magna-methodTopStudySlider .slick-arrow {
	background: rgba(25,25,25,0);
	bottom: 0;
	height: 134px;
	margin: auto;
	position: absolute;
	top: 0;
	transition: opacity 0.5s ease 0s;
	width: 32px;
	top: 50%;
	z-index: 1;
}
.magna-methodTopStudySlider .slick-arrow:hover {
	background: rgba(25,25,25,1);
	transition: opacity 0.5s ease 0s;
}

.magna-methodTopStudySlider .slick-arrow.slick-prev {
	left: -10%;
}

.magna-methodTopStudySlider .slick-arrow.slick-next {
	right: -10%;
}

.magna-methodTopStudySlider .slick-prev:before,
.magna-methodTopStudySlider .slick-next:before {
	background: url(https://static.parastorage.com/services/editor-elements-library/dist/thunderbolt/media/tiny_arrows.4355fe50.png) no-repeat 50% 0;
	bottom: 0;
	height: 16px;
	margin: auto;
	position: absolute;
	top: 0;
	width: 8px;
	content: "";
}

.magna-methodTopStudySlider .slick-prev:before {
	background-position: 0 0;
	left: 50%;
	margin-left: -4px;
}

.magna-methodTopStudySlider .slick-next:before {
	background-position: 100% 0;
	margin-right: -4px;
	right: 50%;
}

.magna-methodTopStudySlider img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width:536px) {
.magna-methodTopStudySlider .slick-arrow.slick-prev {
		left: 0;
	}

	.magna-methodTopStudySlider .slick-arrow.slick-next {
		right: 0;
	}

	.magna-methodTopStudySlider .slick-arrow {
		background: rgba(25, 25, 25, 0.3);
		height: 100%;
		margin: 0;
	}
}


.magna-methodAchievementArea {
	margin: 100px auto;
	max-width: 980px;
}

.magna-methodTopAppImage img {
	width: 100%;
	height: auto;
}

.magna-methodTopAppH2 {
	text-align: center;
	font-size: 2.6rem;
}

.magna-methodTopAppH2 .small {
	font-size: 1.4rem;
}

.magna-methodTopAppH2 .user {
	font-size: 1.8rem;
}

.magna-methodTopAppH2 .red {
	color: #ca1920;
	font-size: 2rem;
}

.magna-methodTopAppAchieve {
	display: flex;
	align-items: center;
	justify-content: center;
}

.magna-methodTopAppAchieveImg img {
	width: 100%;
	height: auto;
	max-width: 250px;
}

.magna-methodTopAppAchieveText {
	text-align: center;
}

.magna-methodTopAppAchieveP {
	font-size: 1.8rem;
	font-weight: bold;
	color: #d18009;
}

.magna-methodTopAppAchieveSup {
	color: #787878;
	margin: -2px 0 10px;
}

.magna-methodTopAppTitle {
	text-align: center;
	font-size: 2.5rem;
	font-weight: bold;
	margin: 30px auto 20px;
	background: linear-gradient(rgba(255, 255, 255, 0) 70%, #fff059 30%);
	width: fit-content;
}

.magna-methodTopAppTitle .red {
	color: #ca1920;
}

.magna-methodTopAppTitleImg {
	text-align: center;
	width: 100%;
	max-width: 250px;
	height: auto;
}


.magna-methodTopAppH2 .number {
	font-size: 3.2rem;
}

.magna-methodTopAward {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.magna-methodTopAward .magna-methodTopH3 {
	color: #FFFFFF;
	background-color: #878586;
	font-size: 1.2rem;
	text-align: center;
	padding: 5px;
}

.magna-methodTopPriceBox {
	background-color: #FFFFFF;
	max-width: 980px;
	border-radius: 25px;
	margin: 50px auto 0;
	padding: 30px 0;
}

.magna-methodTopPriceLead {
	font-size: 1.21rem;
	text-align: center;
	font-weight: bold;
	margin: 0 auto 20px;
}

.priceTable {
	margin: 0 auto;
	text-align: center;
	font-size: 1.3rem;
	border-collapse: separate;
	border-spacing: 0;
}

.priceTable th, .priceTable td {
	padding: 15px 25px;
}

.priceTable td {
	background-color: #FFFFFF;
}

.blankTh {
	border-right: 1px solid #989898;
}

.grayTh {
	background-color: #989898;
	color: #FFFFFF;
	font-size: 1.4rem;
}

.redTh {
	background-color: #ca1920;
	color: #FFFFFF;
	border-radius: 15px 15px 0 0;
	font-size: 1.8rem;
}

.ageTh {
	border: 1px solid #d0d0d0;
	border-bottom: none;
	background-color: #FFFFFF;
}

.priceTable tr:last-child .ageTh {
	border-bottom: 1px solid #d0d0d0;
}

.monthTd {
	border-top: 1px solid #d0d0d0;
	font-weight: bold;
	color: #989898;
	font-size: 2rem;
}

.monthTd .yen {
	font-size: 1.3rem;
}

.priceTable tr:last-child .monthTd {
	border-bottom: 1px solid #d0d0d0;
}

.yearTd {
	border-left: 4px solid #ca1920;
	border-right: 4px solid #ca1920;
	border-bottom: 1px solid #ca1920;
	font-weight: bold;
	color: #ca1920;
	font-size: 2.5rem;
}

.yearTd .yen {
	font-size: 1.4rem;
	margin-right: 7px;
}

.priceTable tr:last-child .yearTd {
	border-bottom: 4px solid #ca1920;
}

.yearTd .month {
	font-size: 1.4rem;
	color: #000000;
	letter-spacing: 5px;
}

.magna-methodTopPriceCampaign {
	margin: 50px auto 20px;
	text-align: center;
}

.magna-methodTopPriceCampaignP {
	font-size: 1.2rem;
	font-weight: bold;
	margin: 0 auto 10px;
}

.magna-methodTopPriceCampaignImg img {
	width: 100%;
	max-width: 540px;
	height: auto;
}

.magna-methodTopWAarea {
	margin: 100px auto;
}

.magna-methodTopWBox {
	max-width: 980px;
	margin: 0 auto;
	background-color: #151515;
	border-radius: 25px;
	text-align: center;
	padding: 30px 3%;
}

.magna-methodTopWLead {
	color: #FFFFFF;
	font-size: 1.4rem;
	font-weight: bold;
	background: linear-gradient(0.3turn, #bf8022, #ecd958, #bf8022);
	width: fit-content;
	margin: 0 auto;
	padding: 10px 20px;
	text-shadow: 1px 2px #7c5110;
}

.magna-methodTopWH2 {
	margin: 30px auto;
	color: #FFFFFF;
	font-size: 2rem;
}

.magna-methodTopWH2Img {
	width: 100%;
	max-width: 300px;
	height: auto;
	vertical-align: middle;
}

.magna-methodTopWH2 .red {
	color: #ff3801;
	font-size: 3.5rem;
}

.magna-methodTopWReasonLead {
	color: #77a3da;
	font-size: 1.2rem;
	border-bottom: 1px solid #77a3da;
	font-weight: bold;
	width: fit-content;
	margin: 0 auto 20px;
}

.magna-methodTopWReasonList {
	width: fit-content;
	margin: 0 auto;
	text-align: left;
}

.magna-methodTopWReasonH3 {
	font-size: 1.4rem;
	color: #FFFFFF;
	position: relative;
	margin-top: 2rem;
}

.magna-methodTopWReasonH3 .number {
	color: #b79e1f;
	font-size: 4rem;
	vertical-align: middle;
	margin-right: 10px;
	position: absolute;
	left: -3rem;
	top: -1rem;
}

.magna-methodTopWReasonP {
	color: #939393;
	margin: 0 auto 25px;
}

.magna-methodTopWReasonImg {
	margin: 20px auto;
}

.magna-methodTopWReasonImg img {
	width: 100%;
	max-width: 580px;
	height: auto;
}

.magna-methodTopWBox .magna-methodMoreBtn {
	background-color: #FFFFFF;
}

.magna-methodTopWBox .magna-methodMoreBtn:hover {
	background-color: #ca1920;
}

.magna-methodTopWReasonSup {
	color: #737373;
	max-width: 980px;
	margin: 30px auto;
	font-size: 0.85rem;
}

@media screen and (max-width:430px) {
	.magna-methodTopWLead {
		font-size: 1.3rem;
		padding: 10px 15px;
	}

	.magna-methodTopWReasonH3 {
		font-size: 1.2rem;
		margin: 2rem 0 0 3rem;
	}

	.magna-methodTopWReasonP {
		margin: 0 auto 25px 3rem;
	}

	.magna-methodTopWReasonLead {
		letter-spacing: -0.05rem;
		font-size: 1rem;
	}
}


.magna-methodTopPartnerBox .magna-methodTopH2::after {
	display: none;
}

.magna-methodTopPartnerBox .magna-methodTopH2 .border {
	margin: 0;
}

.magna-methodTopPartnerBox {
	background-color: #FFFFFF;
	max-width: 980px;
	border-radius: 25px;
	margin: 50px auto;
	padding: 30px 0;
}

.magna-methodTopPartnerBanner {
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.magna-methodTopPartnerBanner img {
	width: 100%;
	height: auto;
}

.partnerImg01 {
	max-width: 256px;
}

.partnerImg02 {
	max-width: 355px;
}

.partnerImg03 {
	max-width: 263px;
}

.partnerImg04 {
	max-width: 391px;
}

.magna-methodTopMediaH2 {
	margin: 30px auto;
	text-align: center;
	font-size: 1.8rem;
}

.magna-methodTopMediaH2::before,
.magna-methodTopMediaH2::after {
	content: "▼";
}

.magna-methodTopMediaMovie {
	text-align: center;
	margin: 0 auto 30px;
}

.magna-methodTopMediaMovie img {
	width: 80%;
	max-width: 385px;
	height: auto;
}

.magna-methodTopMediabox {
	display: flex;
	max-width: 900px;
	flex-wrap: wrap;
	margin: 0 auto;
	gap: 20px 50px;
	align-items: center;
	justify-content: center;
}

.magna-methodTopMediabox img {
	width: 100%;
	height: auto;
	max-width: 110px;
}

@media screen and (max-width:767px) {
	.sp_767 {
			display: block;
		}

	.header {
		position: fixed;
		z-index: 10;
		background: #FFF;
		padding: 10px 0;
		margin: 0 auto;
	}

	#magna-methodMain {
		padding: 80px 0;
	}

	.magna-methodTopH1 {
		font-size: 1.25rem;
		top: 10px;
		left: 10px;
	}

	.magna-methodTopH1 .red,
	.magna-methodTopH1 .blue,
	.magna-methodTopH1 .green {
		font-size: 1.7rem;
	}

	.magna-methodTopH1 .gray {
		font-size: 1.1rem;
		display: inline;
	}

	.magna-methodTopH2 {
		font-size: 1.2rem;
	}

	.magna-methodTopH2 .border {
		margin-left: 23px;
	}

	.magna-methodTopH2::after {
		width: 23px;
		margin-left: 10px;
	}

	.magna-methodTopBox {
		width: 95%;
	}

	.magna-methodLine {
		padding: 80px 0 40px;
	}

	.magna-methodTopWhat {
		margin: 0 auto 20px;
	}

	.magna-methodTopWhat p {
		font-size: 1.2rem;
		line-height: 1.8;
	}

	.magna-methodTopWhatP2 .redfont {
		font-size: 1.5rem;
	}

	.magna-methodTopWhatP2 .underline {
		font-size: 1.5rem;
	}

	.magna-methodTopStudy .magna-methodTopStudyP {
		font-size: 1.2rem;
	}

	.magna-methodTopStudy .magna-methodTopStudyP .bluebig {
		font-size: 1.6rem;
	}

	.magna-methodTopStudy .magna-methodTopH3 {
		font-size: 0.95rem;
		letter-spacing: -0.05rem;
	}

	.magna-methodTopStudy .magna-methodTopH3 .redfont {
		font-size: 1.2rem;
	}

	.magna-methodTopStudyExampleImg img {
		width: 100%;
		height: auto;
	}

	.magna-methodTopStudy .magna-methodTopStudyAnnotation {
		letter-spacing: -0.05rem;
		font-size: 0.95rem;
	}

	.magna-methodTopStudyExampleP {
		margin: 20px;
		font-size: 1.5rem;
	}

	.magna-methodTopStudyExampleP .big {
		font-size: 2.5rem;
	}

	.magna-methodTopStudyExampleP .red {
		font-size: 1.8rem;
	}

	.magna-methodTopAppAchieve {
		margin: 30px auto 0;
	}

	.magna-methodTopAppAchieveImg {
		width: 40%;
	}

	.magna-methodTopAppAchieveText {
		width: 60%;
	}

	.magna-methodTopAppAchieveP {
		font-size: 1.3rem;
	}

	.magna-methodTopAppAchieveSup {
		font-size: 0.85rem;
	}

	.magna-methodTopAppH2 {
		font-size: 1.6rem;
	}

	.magna-methodTopAppH2 .small {
		font-size: 1rem;
	}

	.magna-methodTopAppH2 .user {
		font-size: 1.3rem;
	}

	.magna-methodTopAward {
		gap: 0;
	}

	.magna-methodTopAward .magna-methodTopH3 {
		font-size: 0.9rem;
		margin: 5px 5px 0;
	}

	.priceTable th, .priceTable td {
		padding: 15px 5px;
	}

	.priceTable th {
		font-size: 1.1rem;
	}

	.priceTable th.ageTh {
		width: 27%;
		font-size: 1rem;
		padding: 15px 0px;
	}

	.monthTd .yen {
		font-size: 1.1rem;
	}

	.monthTd {
		font-size: 1.6rem;
	}

	.yearTd {
		font-size: 1.8rem;
	}

	.yearTd .yen, .yearTd .month {
		font-size: 1.2rem;
	}

	.magna-methodTopWBox {
		width: 95%;
	}

	.magna-methodTopWH2 {
		font-size: 1.2rem;
	}

	.magna-methodTopWH2Img {
		max-width: 130px;
		margin: 0 0 5px 10px;
	}

	.magna-methodTopWH2 .red {
		font-size: 2.4rem;
	}

	.magna-methodTopWReasonSup {
		margin: 30px 2.5%;
	}
}

/* 下層共通 */
.magna-methodCommonHeader {
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main {
	background-color: #f2f2f2;
	padding: 0 0 80px;
}

.magna-methodCommonH1 {
	text-align: center;
	color: #FFFFFF;
}

@media screen and (max-width:767px) {
	.main {
		padding: 80px 0;
	}
}

/* coach */
.coachHeader {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url(../img/coach/coach_header.webp) 0 0 no-repeat;
	background-size: cover;
}

.coachTeacherArea {
	margin: 50px auto;
}

.coachTeacherBox {
	background-color: #FFFFFF;
	border-radius: 25px;
	margin: 30px auto 0;
	width: 90%;
	max-width: 980px;
	display: flex;
	justify-content: space-between;
	padding: 30px;
	flex-wrap: wrap;
}

.coachTeacherImg img {
	width: 100%;
	max-width: 250px;
}

.coachTeacherText {
	width: 70%;
	font-size: 1.2rem;
	line-height: 1.6;
}

.coachTeacherP {
	margin: 10px 0 20px 0;
}

@media screen and (max-width:767px) {
	.coachHeaderH1 {
		font-size: 1.4rem;
	}

	.coachTeacherBox {
		width: 92%;
		margin: 30px auto 0;
	}

	.coachTeacherImg {
		text-align: center;
		width: 100%;
	}

	.coachTeacherText {
		width: 100%;
		margin: 20px 0 0;
		font-size: 1.1rem;
	}
}

/* growth */
.growthHeader {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/growth/growth_header.webp) 0 0 no-repeat;
	background-size: cover;
}

.growthVideoArea {
	margin: 50px auto;
	width: 90%;
	max-width: 980px;
}

.growthVideoH2 {
	text-align: center;
	margin: 0 auto 10px;
}

.growthVideoH2 .red {
	font-size: 2rem;
	margin: 0 3px;
	color: #e31725;
}

.growthVideoP {
	text-align: center;
	margin: 10px auto 0;
	font-size: 1.5rem;
	line-height: 1.6;
}

.growthVideoP .blue {
	color: #33a2e8;
}

.growthStudentBox {
	margin: 0 auto 30px;
	width: 90%;
	max-width: 980px;
	background-color: #FFFFFF;
	border-radius: 25px;
	padding: 30px;
	display: grid;
	align-items: center;
	row-gap: 30px;
}

.growthStudentH3 {
	text-align: center;
	font-size: 1.8rem;
	grid-row: 2 / 3;
	grid-column: 1 / 3;
}

.growthStudentH3 .big {
	text-align: center;
	font-size: 2.6rem;
}

.growthStudentH3 .red {
	color: #e31725;
}

.growthStudentImg {
	grid-row: 1 / 2;
	grid-column: 1 / 2;
}

.growthStudentImg img {
	width: 100%;
	max-width: 350px;
}

.growthStudentText {
	grid-row: 1 / 2;
	grid-column: 2 / 3;
}

.growthStudentDl {
	display: flex;
	font-size: 1.4rem;
	align-items: center;
	margin: 0;
	line-height: 2;
}

.growthStudentDt {
	color: #f17d88;
	width: 150px;
}

.growthStudentDd {
	margin: 0;
}

.growthStudentAttention {
	color: #b2b2b2;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.growthHeaderH1 {
		font-size: 1.25rem;
	}

	.growthStudentBox {
		row-gap: 20px;
	}

	.growthStudentImg {
		grid-column: 1 / 3;
	}

	.growthStudentText {
		grid-row: 2 / 3;
		grid-column: 1 / 3;
	}

	.growthStudentH3 {
		grid-row: 3 / 4;
		font-size: 1.2rem;
	}

	.growthStudentDl {
		line-height: 1.6;
		font-size: 1.15rem;
		justify-content: space-between;
	}

	.growthStudentDt {
		width: auto;
	}

	.growthStudentH3 .big {
		font-size: 1.8rem;
	}

	.growthStudentAttention {
		margin: 10px auto 0;
	}
}

/* plan */
.planHeader {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/coach/coach_header.webp) 0 0 no-repeat;
	background-size: cover;
}

.planPriceArea {
	margin: 50px auto;
}

.planPriceBox {
	width: 90%;
	max-width: 980px;
	margin: 0 auto;
}

.planPriceUl {
	max-width: 590px;
	margin: 15px auto 0;
	padding: 0px 0 0 35px;
	line-height: 1.5;
	font-size: 0.95rem;
}

.planPriceLi {
	list-style-type: disc;
}

.planPriceLi .red {
	color: #e31725;
}

.planPriceBanner {
	margin: 30px auto 50px;
	text-align: center;
}

.planPriceBanner img {
	width: 100%;
	height: auto;
	max-width: 530px;
}

.planPriceCampaign {
	margin: 0 auto;
	text-align: center;
}

.planPriceCampaignTitle {
	font-weight: bold;
	font-size: 1.2rem;
	margin: 0 auto 10px;
}

.planPriceCampaignTitle::before, .planPriceCampaignTitle::after {
	content: "▼";
}

.planPriceCampaignImg {
	margin: 0 auto 80px;
}

.planPriceCampaignImg img {
	width: 100%;
	height: auto;
	max-width: 580px;
}

.planPriceCampaignBox {
	background-color: #FFFFFF;
	margin: 50px auto 0;
	position: relative;
	padding: 40px 0;
	width: 90%;
	max-width: 650px;
}

.planPriceCampaignFlag {
	position: absolute;
	color: #FFFFFF;
	width: 120px;
	text-align: left;
	padding: 0 0 0 15px;
	font-size: 1.2rem;
	height: 50px;
	line-height: 50px;
	top: -25px;
	left: -15px;
}

.planPriceCampaignFlag.red {
	background-color: #d90d0a;
}

.planPriceCampaignFlag.blue {
	background-color: #083169;
	width: 200px;
}

.planPriceCampaignFlag::before,.planPriceCampaignFlag::after {
	position: absolute;
	content: "";
	width: 0px;
	height: 0px;
	z-index: 1;
	border-style: solid;
}

.planPriceCampaignFlag::before {
	top: 25px;
	right: 0;
	border-width: 25px 0px 25px 15px;
	border-color: #FFFFFF transparent transparent transparent;
}

.planPriceCampaignFlag::after {
	top: -25px;
	right: 0;
	border-width: 25px 0 25px 15px;
	border-color: transparent transparent #f2f2f2 transparent;
}

.planPriceCampaignDl {
	margin: 0 auto 0 30px;
	display: flex;
	gap: 15px;
}

.planPriceCampaignDt {
	font-weight: bold;
	text-decoration: underline;
	font-size: 1.8rem;
	min-width: 250px;
	text-align: left;
}

.planPriceCampaignDt.red {
	color: #fb3607;
}

.planPriceCampaignDt.blue {
	color: #14389f;
}

.planPriceCampaignDd {
	font-size: 1.4rem;
	margin: 0;
	text-align: left;
}

.planPriceCampaignDd .red {
	color: #fb3607;
	font-weight: bold;
}

.planPriceCampaignDd .big {
	font-size: 1.8rem;
}

.planPriceCampaignDd .bold {
	font-weight: bold;
}

.planPartyW {
	margin: 50px auto 30px;
}

.planPartyW img {
	width: 100%;
	height: auto;
	max-width: 600px;
}

.planTrialArea {
	margin: 80px auto;
	text-align: center;
}

.planTrialLink {
	background-color: #cb1921;
	color: #FFFFFF;
	display: block;
	width: 350px;
	margin: 0 auto;
	border-radius: 10px;
	padding: 30px 0 30px 20px;
	font-size: 1.8rem;
	font-weight: bold;
}

.planTrialLink::after {
	content: "〉";
	margin-left: 20px;
}

.planTrialLink:hover {
	background-color: #151515;
}


@media screen and (max-width: 767px) {
.planPriceBox {
	width: 92%;
}

.planHeaderH1 {
	font-size: 1.6rem;
}

	.planPriceUl {
		padding: 0px 0 0 25px;
	}

	.planPriceCampaignBox {
		width: 95%;
	}

	.planPriceCampaignDl {
		flex-wrap: wrap;
		margin: 0 20px;
	}

	.planPriceCampaignDt {
		font-size: 1.6rem;
	}

	.planPriceCampaignDd {
		font-size: 1.2rem;
	}

	.planPriceCampaignDd .big {
		font-size: 1.6rem;
	}
}

/* charm */
.charmHeader {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/charm/charm_header.webp) 0 0 no-repeat;
	background-size: cover;
}

.charmTrainingArea {
	margin: 50px auto;
}

.charmTrainingP {
	text-align: center;
	font-size: 1.4rem;
	font-weight: bold;
}

.charmTrainingImg {
	text-align: center;
	margin: 10px auto 0;
}

.charmTrainingImg img {
	width: 100%;
	height: auto;
	max-width: 600px;
}

.charmAchievementArea {
	margin: 80px auto 100px;
}

.charmWhyBox {
	margin: 0 auto;
	background-color: #FFFFFF;
	padding: 30px;
	border-radius: 25px;
	width: 90%;
	max-width: 980px;
}

.charmWhyH2 {
	text-align: center;
	font-size: 2rem;
	border-bottom: 2px solid #000000;
	width: fit-content;
	margin: 0 auto;
}

.charmWhyH2 .red {
	background-color: #ca1920;
	padding: 5px 10px;
	color: #FFFFFF;
	margin-right: 5px;
}

.charmWhyH2 .small {
	font-size: 1.5rem;
	display: block;
	margin-bottom: 5px;
}

.charmWhyContent {
	width: fit-content;
	margin: 50px auto 0;
	font-size: 1.6rem;
}

.charmWhyDl {
	display: flex;
	margin: 20px auto 0;
}

.charmWhyDt {
	color: #ca1920;
	text-decoration: underline;
	font-weight: bold;
}

.charmWhyDd {
	margin: 0 0 0 20px;
}

.charmFeaturesH3 {
	text-align: center;
	font-size: 1.8rem;
	margin: 0 auto 30px;
}

.charmFeaturesH3 .red {
	color: #ca1920;
	display: block;
	border-bottom: 1px solid #ca1920;
	width: fit-content;
	margin: 0 auto 5px;
	font-size: 1.5rem;
}

.charmFeaturesArea {
	margin: 80px auto;
	width: 90%;
	max-width: 980px;
}

.charmFeaturesBox {
	background-color: #FFFFFF;
	padding: 30px;
	margin: 0 auto 80px;
}

.charmFeaturesImg {
	text-align: center;
	width: 100%;
	height: auto;
}

.charmFeaturesImg img {
	width: 100%;
	height: auto;
	max-width: 500px;
}

.charmFeaturesText {
	margin: 20px auto;
	width: 90%;
}

.charmFeaturesText p {
	font-size: 1.2rem;
	line-height: 1.6;
}

.charmFeaturesText .red {
	color: #ff7365;
}

.charmFeaturesFlex {
	display: flex;
	width: 90%;
	margin: 50px auto 10px;
	gap: 1rem;
	align-items: center;
	flex-wrap: wrap;
}

.charmFeaturesFlexBox {
	width: 49%;
}

.charmFeaturesFlexBox .charmFeaturesText {
	margin: 0;
}

.charmFeaturesText.blue {
	color: #33a2e8;
}

.charmFeaturesText.blue .big {
	display: block;
	font-size: 2rem;
}

.charmFeaturesText .blue {
	color: #33a2e8;
}

.charmFeaturesText.mb50 {
	margin-bottom: 50px;
}

.charmFeaturesText.center {
	text-align: center;
}

.charmFeaturesText .big {
	font-size: 1.6rem;
}

.charmFeaturesImg.mb50 {
	margin-bottom: 50px;
}

.charmFeaturesImg.big img{
	max-width: fit-content;
	width: 90%;
}

.charmFeaturesImg.leftImg {
	text-align: left;
}

.charmFeaturesFlex.charmFeaturesFlex02 {
	margin-top: 0;
}

.charmFeaturesFlex02 .charmFeaturesImg {
	width: 30%;
}

.charmFeaturesFlex02 .charmFeaturesImg img {
	max-width: 200px;
}

.charmFeaturesFlex02 .charmFeaturesText {
	width: 65%;
}

.charmFeaturesFlex02 .charmFeaturesText .big {
	margin: 0 0 15px 0;
}

.charmFeaturesText .bold {
	font-weight: bold;
	font-size: 1.6rem;
}

.charmFeaturesText .bold .big {
	font-size: 2rem;
}

.charmFeaturesFlex03 {
	justify-content: center;
}


.charmFeaturesFlex03 .charmFeaturesImg {
	width: auto;
}

.charmFeaturesFlex03 .charmFeaturesImg img {
	max-width: 200px;
}

.charmFeaturesH4 {
	font-size: 1.8rem;
}

.charmFeaturesH4 .red {
	display: block;
	color: #ff7365;
	font-size: 1.5rem;
}

.charmFeaturesGreen {
	background-color: #8ac43b;
	color: #FFFFFF;
	text-align: center;
	width: fit-content;
	padding: 10px 20px;
	font-size: 1.5rem;
	border-radius: 30px;
	margin: 0 auto;
	line-height: 1.3;
	font-weight: bold;
}

.charmFeaturesTeacherBox {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.charmFeaturesTeacherImg img {
	width: 100%;
	height: auto;
	max-width: 250px;
}

.charmFeaturesTeacherName {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.8;
}

.charmFeaturesTeacherText {
	font-size: 0.95rem;
}

.charmFeaturesTeacherFlex {
	display: flex;
	align-items: end;
}

.charmFeaturesTeacherFlex .small {
	font-size: 0.85rem;
}

.charmFeaturesTeacher {
	font-size: 1.4rem;
}

@media screen and (max-width:767px) {
	.charmFeaturesArea {
		margin: 80px auto 50px;
	}

	.charmWhyDl {
		flex-wrap: wrap;
	}

	.charmWhyDt {
		width: 100%;
	}

	.charmWhyDd {
		margin: 10px 0 0 0;
		font-size: 1.35rem;
	}

	.charmFeaturesBox {
		padding: 30px 10px;
	}

	.charmFeaturesFlexBox {
		width: 100%;
		margin-bottom: 20px;
	}

	.charmFeaturesFlexBox .charmFeaturesText {
		width: 100%;
		margin-bottom: 5px;
	}

	.charmFeaturesText p {
		font-size: 1rem;
	}

	.charmFeaturesText .big {
		font-size: 1.25rem;
	}

	.charmFeaturesText.blue .big {
		font-size: 1.65rem;
	}

	.charmFeaturesFlex02 .charmFeaturesImg {
		width: 100%;
	}

	.charmFeaturesFlex02 .charmFeaturesText {
		width: 100%;
	}

	.charmFeaturesText .bold .big {
		font-size: 1.7rem;
	}

	.charmFeaturesGreen {
		font-size: 1.3rem;
	}

	.charmFeaturesText .bold {
		font-size: 1.55rem;
	}
}

/* program */
.programHeader {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/program/program_header.webp) 0 0 no-repeat;
	background-size: cover;
}

.gold {
	color: #baac29;
}

.orange {
	color: #fc9a1e;
}

.programSupportArea, .programWordArea, .programPhraseArea, .programConversationArea {
	margin: 50px auto;
}

.programBox {
	margin: 0 auto;
	width: 90%;
	max-width: 980px;
	border: 3px solid #eeebda;
	background-color: #FFFFFF;
	padding: 30px;
	text-align: center;
	background-image: url(../img/program/bg02.webp), url(../img/program/bg01.webp);
	background-position: top left, top right;
	background-repeat: repeat-y, repeat-y;
	background-size: contain, contain;
}

.programBox h2 {
	margin: 0 auto 20px;
}

h2 .gold {
	display: block;
	font-size: 2rem;
}

.programBox p {
	font-size: 1.2rem;
}

.programBox h3.box {
	font-size: 1.4rem;
	border: 3px solid #000000;
	width: fit-content;
	margin: -20px auto 0;
	padding: 15px 30px;
	background-color: #FFFFFF;
	z-index: 2;
	position: relative;
}

.programLead {
	margin: 0 auto 20px;
}

.programSupportImg img {
	width: 100%;
	height: auto;
	max-width: 350px;
}

.programSupportImg02 img {
	width: 100%;
	height: auto;
	max-width: 500px;
}

.programSupportText.box {
	width: 350px;
	margin: 0 auto 30px;
	border: 3px solid #000000;
	padding: 15px 30px;
	background-color: #FFFFFF;
}

.programSupportText.box .big {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 5px auto 0px;
}

.programInsideBox {
	border: 3px solid #eeebda;
	border-radius: 10px;
	width: fit-content;
	margin: -20px auto 0;
	padding: 30px 40px;
	line-height: 1.6;
	background-color: #FFFFFF;
}

.programAppImg {
	margin: 20px auto 0;
}

.programAppImg img {
	width: 100%;
	height: auto;
	max-width: 500px;
}

.programWordNumberList {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin: 0 auto 20px;
}

.programWordNumberBox .programWordNumberText {
	font-size: 1.4rem;
	font-weight: bold;
}

.programWordNumberText .orange {
	font-size: 2rem;
	margin: 0 5px;
}

.programWordH3.gold, .programPhraseH3.gold {
	font-size: 1.8rem;
	text-align: left;
	width: fit-content;
	margin: 30px auto 10px;
}

.programWordTestBox, .programPhraseTestBox {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-direction: row-reverse;
}

.programWordTestText {
	text-align: left;
}

.programWordTestImg img {
	width: 100%;
	height: auto;
	max-width: 250px;
}

.programConversationUl {
	list-style-type: disc;
	text-align: left;
	font-size: 1.2rem;
	padding-left: 20px;
	line-height: 1.8;
	margin: 5px auto 0;
}

.programPhraseTestImg img {
	width: 100%;
	height: auto;
	max-width: 300px;
}

.programConversationH3.gold {
	font-size: 1.8rem;
	margin: 30px auto 10px;
}

.programConversationImg img {
	width: 100%;
	height: auto;
	max-width: 500px;
}

@media screen and (max-width:767px) {
	.programHeaderH1 {
			font-size: 1.45rem;
		}

	.programBox {
		padding: 30px 10px;
	}

	.programBox p {
		font-size: 1.15rem;
		line-height: 1.6;
	}

	.programWordH3.gold, .programPhraseH3.gold {
		font-size: 1.6rem;
	}

	.programSupportText.box {
		width: 320px;
	}

	.programInsideBox {
		padding: 30px 15px;
	}

	.programWordTestBox, .programPhraseTestBox {
		flex-wrap: wrap;
	}

	.programWordNumberBox .programWordNumberText {
		font-size: 1.3rem;
	}

	.programConversationH3.gold {
		font-size: 1.6rem;
	}

	.programWordNumberList {
		flex-wrap: wrap;
		gap: 0;
	}

	.programWordLeft, .programWordRight {
		width: 100%;
	}

	.programConversationUl {
		font-size: 1.1rem;
		padding-left: 10px;
		line-height: 1.5;
	}

	.programConversationLi {
		margin-bottom: 10px;
	}
}

/* thanks */
.thanksBody {
	background: rgba(247, 247, 247, 0.8);
}

.thanksH1 {
	text-align: center;
	background: #FFFFFF;
}

.thanksH1 img {
	width: 100%;
	height: auto;
	max-width: 450px;
}

.thanksMain {
	padding: 80px 0;
}

.thanksTopP {
	text-align: center;
	font-size: 3rem;
	margin: 0 auto 20px;
}

.thanksTopImg {
	text-align: center;
}

.thanksTopImg img {
	width: 100%;
	height: auto;
	max-width: 600px;
}

.thanksText {
	text-align: center;
	margin: 100px auto 0;
	max-width: 600px;
}

.thanksH2 {
	font-size: 1.8rem;
	line-height: 1.4;
	margin: 0 auto 30px;
}

.thanksH2.small {
	font-size: 1.5rem;
}

.thanksP {
	font-size: 1.1rem;
	line-height: 1.8;
	margin: 0 auto 30px;
}

.thanksRight {
	font-size: 1.1rem;
	text-align: right;
}

@media screen and (max-width:767px) {
	.thanksMain {
		width: 90%;
		margin: 0 auto;
	}

	.thanksH2.small {
		font-size: 1.45rem;
	}
}

/* LP */
#magna-methodMain.magna-methodLPMain {
	background: #FFFFFF;
	padding: 0;
}

.magna-methodLPMain .magna-methodHeader {
	margin: 0 auto 100px;
}

.lpHeaderLead {
	text-align: center;
	padding: 30px 0 10px;
	font-size: 2rem;
	font-weight: bold;
	position: relative;
	margin: 0 auto;
	width: fit-content;
}

.lpHeaderLead::before {
	content: "";
	display: block;
	width: 3px;
	height: 100px;
	background: #000000;
	position: absolute;
	bottom: 10px;
	left: -55px;
	transform: rotate(-25deg);
}

.lpHeaderLead::after {
	content: "";
	display: block;
	width: 3px;
	height: 100px;
	background: #000000;
	position: absolute;
	bottom: 10px;
	right: -55px;
	transform: rotate(25deg);
}

.lpHeaderLead .red {
	color: #c80d16;
}

.magna-methodLPMain .magna-methodHeaderImage {
	margin: 0 auto 60px;
}

.magna-methodLPMain .magna-methodTrial {
	width: 100%;
	max-width: 980px;
	margin: 30px auto;
	text-align: center;
}

.magna-methodLPMain .magna-methodTrial img {
	width: 100%;
	height: auto;
	max-width: 700px;
}

.magna-methodLPH2 {
	font-size: 2.5rem;
	width: fit-content;
	margin: 0 auto;
	position: relative;
}

.magna-methodLPH2::before {
	content: "";
	width: 4px;
	height: 70px;
	background: #000000;
	position: absolute;
	transform: rotate(-25deg);
	bottom: 0;
	left: -15%;
}

.magna-methodLPH2::after {
	content: "";
	width: 4px;
	height: 70px;
	background: #000000;
	position: absolute;
	transform: rotate(25deg);
	bottom: 0;
	right: -12%;
}

.magna-methodLPH2 .underline {
	border-bottom: 2px solid #000000;
	font-size: 3rem;
}

.magna-methodLPTrialBox {
	width: 95%;
	max-width: 800px;
	margin: 50px auto;
	font-size: 1.1rem;
	line-height: 1.6;
}

.magna-methodLPTrialDl {
	margin: 0 0 30px 0;
}

.magna-methodLPTrialDt {
	font-size: 1.3rem;
}

.magna-methodLPTrialDt::before {
	content: "▼";
}

.magna-methodLPTrialDt .yellow {
	background: #FFF86B;
	padding: 3px;
}

.magna-methodLPTrialDd {
	margin: 0;
}

.magna-methodLPTrialArea {
	margin: 0 auto 100px;
}

.magna-methodLPMessageArea {
	padding: 80px 0;
	background: #f2f2f2;
	margin: 0 auto 100px;
}

.magna-methodLPMessageArea .magna-methodLPH2 {
	font-size: 2.2rem;
}

.magna-methodLPMessageArea .magna-methodLPH2 .underline {
	font-size: 2.7rem;
}

.magna-methodLPMessageFlex {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	width: 90%;
	max-width: 800px;
	margin: 50px auto;
}

.magna-methodLPMessageBox {
	background: #FFFFFF;
	display: flex;
	align-items: center;
	width: 49%;
	gap: 1rem;
}

.magna-methodLPMessageImg img {
	width: 120px;
	height: auto;
}

.magna-methodLPMessageText {
	width: calc(100% - 120px);
	padding: 0 15px 0 0;
}

.magna-methodLPMessageP {
	font-size: 1.2rem;
	line-height: 1.6;
	font-weight: bold;
}

.magna-methodLPMessageSmall {
	text-align: right;
	color: #999999;
	font-weight: bold;
}

.magna-methodLPMessageLead {
	text-align: center;
	font-size: 2.5rem;
	font-weight: bold;
}

.magna-methodLPMessageLead .underline {
	border-bottom: 2px solid #000000;
}

.magna-methodLPMessageLead .red {
	color: #c80d16;
}

.magna-methodLPContentArea {
	margin: 0 auto 150px;
}

.magna-methodLPContentBox {
	margin: 50px auto;
	width: 100%;
	max-width: 800px;
	display: flex;
}

.magna-methodLPContentImg {
	text-align: center;
}

.magna-methodLPContentImg img {
	width: 320px;
	height: auto;
}

.magna-methodLPContentText {
	padding: 20px;
}

.magna-methodLPContentUl {
	margin: 0;
	padding: 0;
}

.magna-methodLPContentLi {
	margin: 0 0 30px 0;
	position: relative;
}

.magna-methodLPContentLi:last-child {
	margin: 0;
}

.magna-methodLPContentH3 {
	font-size: 1.3rem;
	margin: 0 0 5px 0;
}

.magna-methodLPContentH3 .redBox {
	background: #c80d16;
	padding: 5px 8px;
	color: #FFFFFF;
	display: block;
	width: fit-content;
	margin: 0 0 5px 0;
}

.magna-methodLPContentH3 .grayBox {
	background: #8c8c8c;
	padding: 5px 8px;
	color: #FFFFFF;
	display: block;
	width: fit-content;
	margin: 0 0 5px 0;
}

.magna-methodLPContentTime {
	position: absolute;
	top: 3px;
	left: 80px;
	font-size: 1rem;
}

.magna-methodLPContentP {
	font-size: 1.15rem;
	line-height: 1.6;
	color: #6b6b6b;
}

.magna-methodLPContentLead {
	text-align: center;
	font-size: 2.2rem;
	background: #000000;
	color: #FFFFFF;
	font-weight: bold;
	padding: 5px 30px;
	width: fit-content;
	margin: 0 auto;
}

.magna-methodLPContentLead .yellow {
	color: #fdec05;
}

.magna-methodLPCoachArea {
	margin: 0 auto 150px;
}

.magna-methodLPH2 .red {
	color: #c80d16;
	font-size: 3rem;
	margin: 0 0 0 5px;
}

.magna-methodLPCoachSub {
	text-align: center;
	font-size: 1.2rem;
	margin: 5px auto 0;
}

.magna-methodLPCoachLead {
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
}

.magna-methodLPFaqBox {
	width: 95%;
	max-width: 800px;
	margin: 30px auto 0;
	border-radius: 10px;
	border: 4px solid #0051bf;
}

.magna-methodLPH3 {
	color: #FFFFFF;
	background: #0051bf;
	font-size: 1.45rem;
	padding: 10px 15px;
}

.magna-methodLPH3::before {
	content: "Q:";
}

.magna-methodLPFaqText {
	padding: 10px 20px 10px 40px;
	font-size: 1.1rem;
	line-height: 1.6;
	position: relative;
}

.magna-methodLPFaqText::before {
	content: "A:";
	position: absolute;
	left: 20px;
}

.magna-methodLPMain .magna-methodLPFaqArea .magna-methodTrial {
	margin: 60px auto 150px;
}

.footer.footerLP {
	padding: 40px 0 30px;
}

.footerLP .footerArea {
	display: block;
	text-align: center;
	max-width: 100%;
}

.footerLP .footerLogoImg {
	max-width: 300px;
}

.footerLPText {
	color: #FFFFFF;
	font-size: 1.1rem;
	margin: 0 auto;
}

.footerLPLinkArea .footerLPLink {
	color: #56E27C;
	font-size: 1.1rem;
	text-decoration: underline;
}

.footerLP .copyright {
	color: #919191;
	text-align: center;
	margin: 40px auto 0;
}

.footerLP .copyright a {
	color: #919191;
}

@media screen and (max-width:767px) {
	.magna-methodLPContentBox {
		flex-wrap: wrap;
	}

	.lpHeaderLead {
		font-size: 1.5rem;
	}

	.lpHeaderLead::before{
		height: 70px;
		left: -30px;
	}

	.lpHeaderLead::after{
		height: 70px;
		right: -30px;
	}

	.magna-methodLPH2 {
		font-size: 1.8rem;
	}

	.magna-methodLPH2::before {
		left: -11%;
		height: 60px;
	}

	.magna-methodLPH2::after {
		right: -9%;
		height: 60px;
	}

	.magna-methodLPH2 .underline {
		font-size: 2.2rem;
	}

	.magna-methodLPMessageBox {
		width: 100%;
		gap: 0;
	}

	.magna-methodLPMessageLead {
		font-size: 2rem;
	}

	.magna-methodLPContentImg {
		width: 100%;
	}

	.magna-methodLPContentLead {
		padding: 5px 10px;
		font-size: 2rem;
		width: 100%;
	}

	.magna-methodLPCoachArea .magna-methodLPH2 {
		text-align: center;
	}

	.magna-methodLPCoachSub {
		font-size: 1.1rem;
		margin: 10px auto;
	}

	.magna-methodLPCoachBox .coachTeacherBox {
		padding: 15px;
		margin: 0 auto;
	}

	.magna-methodLPFaqArea .magna-methodLPH2::before {
		left: -15%;
	}

	.magna-methodLPFaqArea .magna-methodLPH2::after {
		right: -13%;
	}
}

/* webformLink */
a.webFormLinkBtn {
	display: block;
	width: 350px;
	height: 80px;
	background-color: #cb1921;
	color: #FFFFFF;
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 80px;
	border-radius: 5px;
	margin: 150px auto 0;
	padding: 0 0 0 10px;
	position: relative;
	transition: .2s;
}

.webFormLinkBtn::after {
	content: '〉';
	margin: 0 0 0 20px;
}

.webFormLinkBtn .yellow {
	color: #ffdf2b;
}

.webFormLinkBtn:hover {
	background-color: #000000;
}

.webFormLinkBtn.lineLinkBtn {
	background-color: #11c246;
}

.campaignBannerBox {
	text-align: center;
}

.campaignBannerBox img {
	width: 100%;
	max-width: 758px;
	height: auto;
}

#magna-methodMain .campaignBannerBox {
	margin: 0 auto 120px;
}

.priceCampaignContent {
	margin: 0 auto 50px;
	padding: 20px 30px;
	max-width: 650px;
}

.priceCampaignContent01 {
	background: url(../img/plan/campaignBg01.webp) top 8px right -10px no-repeat;
	background-size: contain;
	background-color: #ffffff;
}

.priceCampaignContent02 {
	background: url(../img/plan/campaignBg02.webp) top right no-repeat;
	background-size: contain;
	background-color: #ffffff;
}

.priceCampaignContent03 {
	background: url(../img/plan/campaignBg03.webp) top 10px right -10px no-repeat;
	background-size: contain;
	background-color: #ffffff;
}

.priceCampaignContent04 {
	background: url(../img/plan/campaignBg04.webp) top 10px right -20px no-repeat;
	background-size: contain;
	background-color: #ffffff;
}

.priceCampaignContent05 {
	background: url(../img/plan/campaignBg05.webp) top 15px right -15px no-repeat;
	background-size: contain;
	background-color: #ffffff;
}

.priceCampaignContent06 {
	background: url(../img/plan/campaignBg06.webp) top 15px right -15px no-repeat;
	background-size: contain;
	background-color: #ffffff;
}

.priceCampaignRibbon {
	background-color: #da0e0d;
	color: #FFFFFF;
	padding: 0 30px 0 10px;
	font-size: 1rem;
	width: fit-content;
	height: 46px;
	line-height: 46px;
	position: relative;
	margin: -42px 0 0 -35px;
}

.priceCampaignRibbon::before {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	z-index: 1;
	top: 22px;
	right: 0;
	border-width: 23px 0 23px 15px;
	border-color: #FFFFFF transparent transparent transparent;
	border-style: solid;
}

.priceCampaignRibbon::after {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	z-index: 1;
	top: -22px;
	right: 0;
	border-width: 23px 0 23px 15px;
	border-color: transparent transparent #f2f2f2 transparent;
	border-style: solid;
}

.priceCampaignRibbon.blueRibbon {
	background-color: #07306a;
}

.priceCampaignContentFlex {
	margin: 5px 0 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.priceCampaignContentTitle {
	font-weight: bold;
	font-size: 1.8rem;
	color: #ee3e12;
	text-decoration: underline;
	width: 45%;
	text-align: left;
}

.priceCampaignContentTitle.priceCampaignContentTitleBlue {
	color: #3453be;
}

.priceCampaignContentText {
	width: 70%;
	font-size: 1.3rem;
	text-align: left;
	-webkit-text-stroke: 5px #FFFFFF;
	text-stroke: 5px #FFFFFF;
	paint-order: stroke;
}

.priceCampaignContent01 .priceCampaignContentText p {
	text-align: center;
	width: fit-content;
}

.priceCampaignContentText .bold {
	font-weight: bold;
	font-size: 1.4rem;
}

.priceCampaignContentText .red {
	color: #ee3e12;
	font-weight: bold;
	font-size: 1.4rem;
}

@media screen and (max-width:767px) {
	#magna-methodMain .campaignBannerBox {
		margin: 0 auto 40px;
	}

	.priceCampaignContent {
		padding: 20px;
	}

	.priceCampaignRibbon {
		margin: -42px 0 0 -27px;
	}

	.priceCampaignContentFlex {
		flex-wrap: wrap;
	}

	.priceCampaignContentTitle {
		width: 100%;
	}

	.priceCampaignContentText {
		width: 100%;
		margin: 20px auto 0;
	}

	.priceCampaignContent01 {
		background-size: 180px;
		background-position: bottom 5px right -10px;
	}

	.priceCampaignContent02 {
		background-size: 200px;
		background-position: bottom right;
	}

	.priceCampaignContent03 {
		background-size: 150px;
		background-position: bottom right;
	}

	.priceCampaignContent04 {
		background-size: 210px;
		background-position: bottom -10px right -36px;
	}

	.priceCampaignContent05 {
		background-size: 200px;
		background-position: bottom 11px right -15px;
	}

	.priceCampaignContent06 {
		background-size: 180px;
		background-position: bottom 5px right -10px;
	}

	a.webFormLinkBtn {
		margin-top: 80px;
	}
}