@charset "UTF-8";


/* 後々common.css に入れたい *************************************************************************/

html {
	font-size: 62.5%;
}
body {
	color: #363636;
	font-size: 1.7rem;
	line-height: 2;
	font-weight: 400;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	/*font-family: "ヒラギノ丸ゴ ProN W4","Hiragino Maru Gothic ProN","メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGothic",sans-serif;*/
}

@media screen and (max-width: 834px) {
	body {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 430px) {
	body {
		font-size: 1.5rem;
		font-family: "ryo-gothic-plusn", sans-serif;
		font-weight: 400;
		font-style: normal;
	}
}
@media screen and (max-width: 320px) {
	body {
		font-size: 1.4rem;
	}
}


/* メイン見出し ********************************** */
.mainTitle {
	text-align: center;
	margin-bottom: 90px;
	padding-bottom: 45px;
	position: relative;
	z-index: 1;
}
.mainTitle:before {
	content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) skew(20deg, 20deg);
    background: #BA9847;
    width: 10px;
    height: 10px;
}
.mainTitle span.gold {
	display: inline-block;
	position: static;
	transform: none;
	color: #c5a942;
	background: -webkit-linear-gradient(0deg, #e0c66d, #B67B03);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.mainTitle span.number {
	font-size: 1.3em;
}
.mainTitle.noBefore { /* beforeのダイヤがないバージョン */
	padding-bottom: 0;
}
.mainTitle.noBefore:before {
	content: none;
}

/* サブ見出し ********************************** */
.subTitle {
	text-align: center;
    margin-bottom: 45px;
    color: #493C1C;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 834px) {
	.mainTitle {
		margin-bottom: 75px;
	}
}
@media screen and (max-width: 560px) {
	.mainTitle {
		margin-bottom: 60px;
		padding-bottom: 30px;
	}
}
@media screen and (max-width: 430px) {
	.mainTitle {
		margin-bottom: 45px;
	}
}
@media screen and (max-width: 320px) {
	.mainTitle {
		margin-bottom: 30px;
	}
}

/* ******************************************************
 * 見出し
 * *************************************************** */

h1, h2, h3, h4, h5, h6 {
	font-family: serif;
	font-weight: 600;
	margin: 0;
	text-align: center;
	color: #BA9847;
	line-height: 1.6;
}

h2 {
	font-size: 6rem;
	margin-bottom: 60px;
}
h3 {
	font-size: 5rem;
	margin-bottom: 30px;
}
h4 {
	font-size: 5rem;
	margin-bottom: 30px;
}
h5 {
	font-size: 4rem;
	margin-bottom: 30px;
}
h6 {
	font-size: 3rem;
	margin-bottom: 30px;
}

@media screen and (max-width: 834px) {
	h2 {
		font-size: 5rem;
	}
	h3 {
		font-size: 4.2rem;
	}
	h4 {
		font-size: 3.6rem;
	}
	h5 {
		font-size: 3rem;
	}
	h6 {
		font-size: 2.8rem;
	}
}
@media screen and (max-width: 560px) {
	h2 {
		font-size: 4rem;
	}
	h3 {
		font-size: 3.6rem;
	}
	h4 {
		font-size: 3rem;
	}
	h5 {
		font-size: 2.8rem;
	}
	h6 {
		font-size: 2.2rem;
	}
}
@media screen and (max-width: 430px) {
	h2 {
		font-size: 3rem;
	}
	h3 {
		font-size: 2.6rem;
	}
	h4 {
		font-size: 2.2rem;
	}
	h5 {
		font-size: 2.2rem;
	}
	h6 {
		font-size: 2.2rem;
	}
}
@media screen and (max-width: 320px) {
	h2 {
		font-size: 2.6rem;
	}
	h3 {
		font-size: 2rem;
	}
	h4 {
		font-size: 1.8rem;
	}
	h5 {
		font-size: 1.8rem;
	}
	h6 {
		font-size: 1.8rem;
	}
}


/* 後々common.css に入れたい ここまで *************************************************************************/



/* 後々style.css に入れたい *************************************************************************/

/* フォント */
.serif {
	font-family: serif;
}
.sans-serif {
	font-family: sans-serif;
}

/* テキスト body 1.7rem */
.textS {
	font-size: 1.4rem;
}
.textL {
	font-size: 2rem;
}
.textO {
	font-size: 2.4rem;
}
.textXO {
	font-size: 2.8rem;
}
.textYO {
	font-size: 3.2rem;
}

@media screen and (max-width: 834px) {
	/* テキスト body 1.6rem */
	.textS {
		font-size: 1.4rem;
	}
	.textL {
		font-size: 2rem;
	}
	.textO {
		font-size: 2.4rem;
	}
	.textXO {
		font-size: 2.8rem;
	}
	.textYO {
		font-size: 3.2rem;
	}
}
@media screen and (max-width: 560px) {
	/* 名前や職業 */
	.name {
		margin: 3px 0 0;
	}
}
@media screen and (max-width: 430px) {
	/* テキスト body 1.5rem */
	.textS {
		font-size: 1.2rem;
	}
	.textL {
		font-size: 1.8rem;
	}
	.textO {
		font-size: 2rem;
	}
	.textXO {
		font-size: 2.2rem;
	}
	.textYO {
		font-size: 2.6rem;
	}
}
@media screen and (max-width: 380px) {
	/* テキスト body 1.5rem */
	.textS {
		font-size: 1.1rem;
	}
	.textL {
		font-size: 1.6rem;
	}
	.textO {
		font-size: 1.8rem;
	}
	.textXO {
		font-size: 2.2rem;
	}
	.textYO {
		font-size: 2.8rem;
	}
}
@media screen and (max-width: 320px) {
	/* テキスト body 1.4rem */
	.textS {
		font-size: 1rem;
	}
	.textL {
		font-size: 1.5rem;
	}
	.textO {
		font-size: 1.7rem;
	}
	.textXO {
		font-size: 2.1rem;
	}
	.textYO {
		font-size: 2.7rem;
	}
}

/* 後々style.css に入れたい ここまで *************************************************************************/




/* **********************************************
 * 覚醒プログラム
 * 悟り特別クラス（求道者クラス）
 * ******************************************* */

#seekerclass section {
	padding: 120px 0;
}


/* 悟り特別クラスとは */
#seekerclass .seekerclassFirst {
	background: url(../images/seekerclass/2025/firstBg.webp) no-repeat;
	background-size: contain;
	background-position: bottom center;
}
#seekerclass .seekerclassFirst .seekerclassFirst-text {
	margin-top: 60px;
	font-size: 2.2rem;
}
#seekerclass .seekerclassFirst .seekerclassFirst-text b {
	/*color: #ff2b73;*/
}
#seekerclass .seekerclassFirst .seekerclassFirst-text u {
	text-decoration: none !important;
	border-bottom: 1px solid;
}


/* 悟り特別クラスの経緯 */
#seekerclass .seekerBackground {
	background: url(../images/seekerclass/2025/backgroundBg.webp) no-repeat;
	background-size: cover;
	background-position: center;
	box-shadow: 0px -12px 12px -12px rgba(0, 0, 0, 10%);
}
#seekerclass .seekerBackground .seekerBackground-text {
	font-size: 2.2rem;
    width: 780px;
    margin: 0 auto;
}
#seekerclass .seekerBackground .seekerBackground-text span {
	font-weight: bold;
}
#seekerclass .seekerBackground .seekerBackground-msg {
	font-size: 2.4rem;
	font-family: serif;
	margin: 60px auto 0;
}


/* あなたが悟るために得る7つの特徴 */
#seekerclass .seekerclassFeature {
	box-shadow: 0 12px 12px -12px rgba(0, 0, 0, 10%) inset;
	padding-bottom: 0;
}

.seeker_title_box {
	text-align: center;
	font-size: 1.3em;
}
.seeker_title_box .seeker_topimage {
	margin: 0 0 30px;
	color: #745D00;
	font-size: 2.6em;
}
.seeker_title_box p.seeker_title___1 {
	color: #745D00;
	margin: 0 0 12px;
	font-weight: bold;
	text-shadow: 1px  1px 4px #FFF,
		-1px 1px 4px #FFF,
		1px -1px 4px #FFF,
		-1px -1px 4px #FFF,
		1px 0 4px #FFF,
		0 1px 4px #FFF,
		-1px 0 4px #FFF,
		0 -1px 4px #FFF;
}
.seeker_title_box p.seeker_title___2 {
	display: inline-block;
	color: #FFF;
	margin: 0 0 12px;
	padding: 8px 30px;
	background: #745D00;
	border-radius: 60px;
	font-size: .8em;
}

/* クラスの内容 */
#seekerclass .seekerclassFeature .class {
	padding: 60px 90px 90px;
	margin: 90px 0 0;
	border: 1px solid #ba9747;
	box-shadow: 0 2px 18px 1px rgb(38 37 36 / 20%);
}
#seekerclass .seekerclassFeature .class .subTitle {
	font-size: 4rem;
	position: relative;
}
#seekerclass .seekerclassFeature .class .subTitle:before {
	display: inline-block;
	position: absolute;
	top: -105px;
	left: 50%;
	transform: translateX(-50%);
	font-size: .6em;
	font-family: 'Abel-Regular', serif;
	width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 80px;
    background: #ba9747;
	color: #FFF;
	z-index: 1;
}
#seekerclass .seekerclassFeature .class1 .subTitle:before {
	content: "ONE";
}
#seekerclass .seekerclassFeature .class2 .subTitle:before {
	content: "TWO";
}
#seekerclass .seekerclassFeature .class3 .subTitle:before {
	content: "THREE";
}
#seekerclass .seekerclassFeature .class4 .subTitle:before {
	content: "FOUR";
}
#seekerclass .seekerclassFeature .class5 .subTitle:before {
	content: "FIVE";
}
#seekerclass .seekerclassFeature .class6 .subTitle:before {
	content: "SIX";
}
#seekerclass .seekerclassFeature .class7 .subTitle:before {
	content: "SEVEN";
}
#seekerclass .seekerclassFeature .class .subTitle span {
	display: block;
	font-size: .6em;
	margin: 30px 0 0;
}
#seekerclass .seekerclassFeature .class .mini_title {
	margin: 60px 0 0;
}
#seekerclass .seekerclassFeature .class .class_box {
	text-align: center;
    width: 800px;
    margin: 45px auto 0;
}
#seekerclass .seekerclassFeature .class .class_box u {
	text-decoration: none;
	border-bottom: 1px solid;
}
#seekerclass .seekerclassFeature .class .class_img {
	width: 800px;
	margin: 45px auto 0;
	position:relative;
	box-shadow: 0 0 14px rgba(102, 102, 102, .3);
}
#seekerclass .seekerclassFeature .class ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 30px 0 0;
}
#seekerclass .seekerclassFeature .class ul li {
	width: calc(100%/3);
	margin: 12px 0 0;
	padding: 0 0 0 18px;
	font-weight: bold;
	text-align: left;
	position: relative;
}
#seekerclass .seekerclassFeature .class ul li:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg) skew(20deg, 20deg);
	background: #BA9847;
	width: 6px;
	height: 6px;
}

/* スケジュール */
#seekerclass .seekerclassSchedule p.times {
	color: #1b3f8d;
	font-weight: bold;
	margin: 0;
}
#seekerclass .seekerclassSchedule p.times span.week {
	display: inline-block;
	margin: 0 22px;
}
#seekerclass .seekerclassSchedule p.times span.time {
	display: inline-block;
	margin: 0;
}
#seekerclass .seekerclassSchedule p.memo {
	color: red;
	font-size: 1.1rem;
	font-weight: bold;
}

#seekerclass .seekerclassSchedule .seekerclassSchedule-box {
	width: 880px;
	margin: 60px auto 0;
	padding: 45px 60px 0;
	position: relative;
}
#seekerclass .seekerclassSchedule p.year {
	text-align: center;
	font-size: 2em;
	font-family: serif;
	margin: 0;
	padding: 0 12px;
	background: #FFF;
	position: absolute;
	top: -28px;
}
#seekerclass .seekerclassSchedule p.year span {
	font-size: .8em;
	margin-left: 6px;
}
#seekerclass .seekerclassSchedule dl.month {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
#seekerclass .seekerclassSchedule dl.month div{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 30px 0 0;
	padding: 0;
	width: 100%;
}
#seekerclass .seekerclassSchedule dl.month div::after{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	z-index: 1;
	width: 100%;
	border-bottom: dotted 1px #000;
}
#seekerclass .seekerclassSchedule dl.month dt {
	margin:0;
	padding: 0;
	background: #f0f1ec;
	border-radius: 55px;
	line-height: 55px;
	width: 55px;
	height: 55px;
	z-index: 2;
	text-align: center;
}
#seekerclass .seekerclassSchedule dl.month dd {
	margin:0;
	padding: 0 0 0 5px;
	background: #FFF;
	text-align: right;
	font-size: 1.8rem;
	color: #1b3f8d;
	font-weight: bold;
	z-index: 2;
}
#seekerclass p.schedule_caution {
	margin-top: 30px;
}
#seekerclass p.schedule_caution a {
	color: #BA9747;
	border-bottom: 1px solid #BA9747;
}


/* 特典 */
#seekerclass .seekerclassTokuten {
	padding-bottom: 0;
}
#seekerclass .seekerclassTokuten span.seekerclassTokuten-title {
	padding-right: 148px;
	position: relative;
}
#seekerclass .seekerclassTokuten span.seekerclassTokuten-title:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	background: url(../images/program/p3_gift.jpg) no-repeat;
	background-size: 100%;
	width: 120px;
	height: 120px;
}
#seekerclass .seekerclassTokuten .seeker_tokuten_box {
	background: #FFF;
	width: 900px;
	margin: -90px auto 0;
	padding: 60px;
	position: relative;
}

/* 参加費・申し込み */
#seekerclass .seekerclassEntry .seekerclassEntry-box {
	position: relative;
	margin-bottom: 60px;
	display: flex;
	align-items: flex-start;
}
#seekerclass .seekerclassEntry .seekerclassEntry-box img.pair {
	width: 67%;
	max-width: 800px;
}
#seekerclass .seekerclassEntry .seekerclassEntry-inbox {
	max-width: 660px;
    width: 100%;
	height: auto;
	background: #b74696;
	color: #FFF;
	padding: 0 45px 45px;
	margin-left: -260px;
	margin-top: 150px;
}
#seekerclass .seekerclassEntry p.pairDiscount-title {
	position: relative;
	top: -45px;
	padding: 12px 0;
	margin: 0;
	color: #FFF;
	font-weight: bold;
	text-align: center;
	z-index: 5;
}
#seekerclass .seekerclassEntry p.pairDiscount-title::before,
#seekerclass .seekerclassEntry p.pairDiscount-title::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    z-index: 0;
}
#seekerclass .seekerclassEntry p.pairDiscount-title::before {
	background: #8E3766;
	transform: skew(15deg);
	z-index: -3;
}
#seekerclass .seekerclassEntry p.pairDiscount-title::after {
	background: #B52B74;
	transform: skew(-25deg);
	z-index: -3;
}
#seekerclass .seekerclassEntry p.seeker_entry_title_bottom {
	font-weight: bold;
	font-size: 1.3em;
	line-height: 1.4;
	margin: -12px 0 12px;
}
#seekerclass .seekerclassEntry dl.pairDiscount {
	font-size: 1.3em;
	font-weight: bold;
	margin: 0 0 12px;
	padding: 18px;
	color: red;
	background: #FFF;
	border-radius: 4px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	text-align: center;
}
#seekerclass .seekerclassEntry dl.pairDiscount dt {
	width: 50%;
	position: relative;
	line-height: 1;
}
#seekerclass .seekerclassEntry dl.pairDiscount dt:before {
	content: '';
	position: absolute;
	top: 50%;
	right: -1em;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 18px 0 18px 20px;
	border-color: transparent transparent transparent #B52B74;
}
#seekerclass .seekerclassEntry dl.pairDiscount dd {
	width: 50%;
	line-height: 1;
}
#seekerclass .seekerclassEntry dl.pairDiscount dt span.one {
	display: block;
}
#seekerclass .seekerclassEntry dl.pairDiscount dd span.two {
	display: block;
}
#seekerclass .seekerclassEntry dl.pairDiscount span.price {
	display: block;
	margin-top: 12px;
}
#seekerclass .seekerclassEntry .pairDiscount-text {
	margin-top: 18px;
	line-height: 1.6;
}

#seekerclass .seekerclassEntry table.seekerclassEntry-table {
	margin: 60px auto 0;
}
#seekerclass .seekerclassEntry table.seekerclassEntry-table th {
	width: 120px;
}
#seekerclass .seekerclassEntry table.seekerclassEntry-table td {
	width: 260px;
}
#seekerclass .seekerclassEntry table.seekerclassEntry-table td span.times {
	font-size: .9em;
}

#seekerclass .seekerclassEntry table.seekerclassEntry-table td.addtd {
	width: 380px;
}
#seekerclass .seekerclassEntry table.seekerclassEntry-table td.addtd a:nth-of-type(2) {
	margin: 3px 0 0;
}
#seekerclass .seekerclassEntry .entryTerm {
	margin: 30px 0 0;
	font-weight: bold;
}
#seekerclass .seekerclassEntry span.total {
	display: block;
}
#seekerclass .seekerclassEntry .seeker_entryadd {
	text-align: center;
	font-family: serif;
	font-size: 1.6em;
	margin: 60px 0 0;
}


@media screen and (max-width: 1194px) {
	#seekerclass .seekerclassFeature .class .class_img {
		width: 100%;
	}
}
@media screen and (max-width: 960px) {
	/* 悟り特別クラスとは */
	#seekerclass .seekerclassFirst .seekerclassFirst-text {
		font-size: 2rem;
	}
	#seekerclass .seekerBackground .seekerBackground-text {
		width: 100%;
		font-size: 2rem;
	}
	#seekerclass .seekerBackground .seekerBackground-msg {
		font-size: 2rem;
	}
	
	/* クラスの内容 */
	#seekerclass .seekerclassFeature .class .class_box {
		padding: 0;
	}
	#seekerclass .seekerclassFeature .class ul li {
		width: calc(100% / 2);
	}
	
	/* スケジュール */
	#seekerclass .seekerclassSchedule .seekerclassSchedule-box {
		width: 100%;
	}
	
	/* 特典 */
	#seekerclass .seekerclassTokuten .seeker_tokuten_box {
		width: 780px;
	}
}
@media screen and (max-width: 834px) {
	#seekerclass section {
		padding: 90px 0;
	}
	
	/* クラスの内容 */
	#seekerclass .seekerclassFeature .class .subTitle {
		font-size: 3rem;
	}
	#seekerclass .seekerclassFeature .class .class_box {
		width: 100%;
	}

	/* スケジュール */
	#seekerclass .seekerclassSchedule p.times span.week {
		margin: 0 12px;
	}
	#seekerclass .seekerclassSchedule .seekerclassSchedule-box {
		padding: 45px 30px 0;
	}
	
	/* 特典 */
	#seekerclass .seekerclassTokuten .seeker_tokuten_box {
		width: 560px;
		padding: 30px;
	}
	
	/* ペア割引 */
	#seekerclass .seekerclassEntry .seekerclassEntry-box {
		    flex-direction: column;
	}
	#seekerclass .seekerclassEntry .seekerclassEntry-box img.pair,
	#seekerclass .seekerclassEntry .seekerclassEntry-inbox {
		width: 100%;
		max-width: 100%;
		margin: 0;
	}
}
@media screen and (max-width: 560px) {
	#seekerclass section {
		padding: 75px 0;
	}
	
	/* 悟り特別クラスとは */
	#seekerclass .seekerclassFirst {
	background: url(../images/seekerclass/2025/firstBg_sp.webp) no-repeat;
	background-size: contain;
	background-position: bottom center;
}
	#seekerclass .seekerclassFirst .seekerclassFirst-text {
		font-size:1.8rem;
	}
	#seekerclass .seekerBackground {
		background: url(../images/seekerclass/2025/backgroundBg_sp.webp) no-repeat;
		background-size: cover;
		background-position: center;
	}
	#seekerclass .seekerBackground .seekerBackground-text {
		font-size:1.8rem;
	}
	#seekerclass .seekerBackground .seekerBackground-msg {
		font-size:1.8rem;
	}
	
	/* クラスの内容 */
	#seekerclass .seekerclassFeature .class {
		padding: 30px;
	}
	#seekerclass .seekerclassFeature .class .subTitle {
		font-size: 2.2rem;
	}
	#seekerclass .seekerclassFeature .class .subTitle span {
		font-size: .8em;
	}
	#seekerclass .seekerclassFeature .class ul li {
		width: 100%;
	}
	
	/* スケジュール */
	#seekerclass .seekerclassSchedule p.times {
		
	}
	#seekerclass .seekerclassSchedule p.times span.week {
		margin: 0 12px;
	}
	#seekerclass .seekerclassSchedule p.times span.time {
		display: block;
	}
	#seekerclass .seekerclassSchedule .seekerclassSchedule-box {
		padding: 45px 0 0;
	}
	#seekerclass .seekerclassSchedule p.year {
		width: 100%;
		text-align: center;
	}
	#seekerclass .seekerclassSchedule dl.month div {
		width: 100%;
		margin: 12px 0 0;
		flex-direction: column;
	}
	#seekerclass .seekerclassSchedule dl.month div::after {
		top: 23px;
	}
	#seekerclass .seekerclassSchedule dl.month dt {
		line-height: 45px;
		width: 45px;
		height: 45px;
	}
	#seekerclass .seekerclassSchedule dl.month dd {
		font-size: 1.6rem;
		text-align: center;
		padding: 0;
		margin-top: 12px;
	}
	
	/* 特典 */
	#seekerclass .seekerclassTokuten span.seekerclassTokuten-title {
		padding-right: 108px;
	}
	#seekerclass .seekerclassTokuten span.seekerclassTokuten-title:before {
		width: 90px;
		height: 90px;
	}
	#seekerclass .seekerclassTokuten .seeker_tokuten_box {
		width: 100%;
		padding: 30px 0 0;
	}
	
	/* ペア割引 */
	#seekerclass .seekerclassEntry p.pairDiscount-title {
		font-size: 1.8rem;
	}
	#seekerclass .seekerclassEntry .seekerclassEntry-inbox {
		padding: 0 30px 30px;
	}
	#seekerclass .seekerclassEntry p.seeker_entry_title_bottom {
		font-size: 1.7rem !important;
		text-align: center;
	}
	#seekerclass .seekerclassEntry dl.pairDiscount dt:before {
		right: -0.5em;
		border-width: 12px 0 12px 12px;
	}
	
	/* 参加費・申込 */
	#seekerclass .seekerclassEntry table.seekerclassEntry-table th {
		display: block;
		width: 100%;
		padding: 18px 0 0;
	}
	#seekerclass .seekerclassEntry table.seekerclassEntry-table td {
		display: block;
		width: 100%;
		padding: 9px 0 18px;
	}
}
@media screen and (max-width: 430px) {
	#seekerclass section {
		padding: 60px 0;
	}
	
	/* 悟り特別クラスとは */
	#seekerclass .seekerclassFirst .seekerclassFirst-text {
		font-size: 1.6rem;
	}
	#seekerclass .seekerBackground .seekerBackground-text {
		font-size: 1.6rem;
	}
	#seekerclass .seekerBackground .seekerBackground-msg {
		font-size: 1.8rem;
	}
	
	/* 特典 */
	#seekerclass .seekerclassTokuten {
		margin-top: 60px;
	}
	#seekerclass .seekerclassTokuten span.seekerclassTokuten-title {
		padding-top: 75px;
		padding-right: 0;
	}
	#seekerclass .seekerclassTokuten span.seekerclassTokuten-title:before {
		width: 60px;
        height: 60px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
	}
}
@media screen and (max-width: 320px) {
	#seekerclass section {
		padding: 45px 0;
	}
	
	/* 悟り特別クラスとは */
	#seekerclass .seekerclassFirst .seekerclassFirst-text {
		font-size: 100%;
	}
	#seekerclass .seekerBackground .seekerBackground-text {
		font-size: 100%;
	}
	#seekerclass .seekerBackground .seekerBackground-msg {
		font-size: 1.6rem;
	}
	
	/* クラスの内容 */
	#seekerclass .seekerclassFeature .class {
		padding: 20px;
	}
	#seekerclass .seekerclassFeature .class .subTitle {
		font-size: 2rem;
	}
	#seekerclass .seekerclassFeature .class .subTitle:before {
		top: -80px;
		width: 60px;
		height: 60px;
		line-height: 60px;
	}
	
	/* 特典 */
	#seekerclass .seekerclassTokuten {
		margin-top: 45px;
	}
}





