@charset "UTF-8";
/*
	登録前ページ（E-Majo）
*/

:root {
	--siteColor-main:#C79F62;				/*サイトのメインカラー*/

	--bgColor-body:#fff;					/*bodyの背景色*/
	--bgColor-header:#fff;					/*headerの背景色*/
	--bgColor-main:#fff;					/*mainの背景色*/
	--bgColor-footer:#F4F4F4;				/*footerの背景色*/

	--btnColor-main:#C79F62;				/*ボタン背景色*/
	--btnColor-sub:#fff;					/*ボタン文字*/
	--btnColor-cancel-main:#6b6b6b;		/*キャンセル系ボタンの背景色など*/
	--btnColor-cancel-sub:#ffffff;			/*キャンセル系ボタンの文字など*/

	--textColor:#4a4a4a;					/*文字色*/
	--textLinkColor:#4a4a4a;				/*テキストリンク*/

	--textColor-formBoxItemTitle:#7A5D34;	/*入力フォームの項目名*/
	--bgColor-formBoxItemTitle:#f4f4f4;	/*入力フォームの項目名の背景*/

	--mailStatusColor-main:#00B589;		/*未読*/
	--mailStatusColor-sub:#b9b9b9;			/*既読*/

	--ptColor:#ce9800;						/*Pt関連色*/
	--purchaseColor-main:#6b5408;			/*決済名・購入ボタンの文字色など*/
	--purchaseColor-sub:#ffc711;			/*決済名・購入ボタンの背景色など*/

	--headerHeight-PC:80px;
	--headerHeight-SP:64px;
}

body{
	color: var(--textColor);
	background: var(--bgColor-body);
	font-family: Arial,'メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
	font-style: normal;
	font-weight: 400;
}

p{
	font-size: 1.6rem;
	line-height: 1.75;
}

a{
	color: var(--textLinkColor);
}

/*----------------------------------------------
レイアウト
-----------------------------------------------*/
@media print, ( min-width : 1024px ){
	.container{
		width: 960px;
	}
}

header{
	width: 100%;
	height: var(--headerHeight-SP);
	position: fixed;
	top: 0;
	background: var(--bgColor-header);
	box-shadow: 0 0 8px #ddd;
	z-index: 999;
}

main{
	padding-top: var(--headerHeight-SP);
}

footer{
	width: 100%;
	padding: 64px 0 80px;
	background: var(--bgColor-footer);
}

@media print, ( min-width : 1024px ){
	header{
		height: var(--headerHeight-PC);
	}
	main{
		padding-top: var(--headerHeight-PC);
	}
}

.containerFullSize{
	padding: 56px 0;
}

.mainArea{
	width: 100%;
	background: var(--bgColor-main);
}

.mainArea_inner{
	padding:8px 16px 64px;
	min-height: 100vh;
}

.containerFullSize .mainArea{
	background: none;
}

.containerFullSize .mainArea_inner{
	min-height: auto;
}

@media print, ( min-width : 1024px ){
	.pcCentered-50percent{
		width: 50%;
		margin: 0 auto;
	}

	.pcCentered-60percent{
		width: 60%;
		margin: 0 auto;
	}

	.pcCentered-80percent{
		width: 80%;
		margin: 0 auto;
	}
}

/*-----------------------------------------------
ボタン
-----------------------------------------------*/
.btn{
	width: 90%;
	max-width: 400px;
	margin: 32px auto;
	padding: .5em;
	font-size: 1.5rem;
	position: relative;
}

@media print, ( min-width : 1024px ){
	.btn{
		font-size: 1.8rem;
	}
}

.btnHolizontalBox{
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.btnHolizontalBox .btn{
	width: 48%;
}

#scrollToTop{
	width: 40px;
	height: 40px;
	right: 12px;
	bottom: 64px;
	background: url(../img/svg-icon-arrow_circle_up.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

.btn-line-official{
	margin: 40px auto 0; 
}

@media print, ( min-width : 1024px ){
	.btn-line-official{
		margin: 48px 0 0; 
		width: 320px;
	}
}

.btn-line-official .balloon{
	position: absolute;
	top: -25px;
	right: 0;
	left: 0;
	width: 80%;
	margin: 0 auto;
}

.btn-stroke{
	color: var(--btnColor-main);
	background: var(--btnColor-sub);
	border: 2px solid var(--btnColor-main);
}

.btn-fill{
	color: var(--btnColor-sub);
	background: var(--btnColor-main);
	border: 2px solid var(--btnColor-main);
}

.btn-arrowRight-line:after{
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 10px);
	right: 25%;
	width: 20px;
	height: 20px;
	background-image: url('../img/svg-icon-arrowRight-line.svg');
	background-size: 80% 80%;
	background-position: center;
	background-repeat: no-repeat;
}

.btn-oval{
	font-size: 1.8rem;
	color: var(--btnColor-main);
	background: var(--btnColor-sub);
	border: 2px solid var(--btnColor-main);
	box-shadow: 0 3px 0 var(--btnColor-main);
	border-radius: 48px;
}

@media print, ( min-width : 1024px ){
	.btn-oval{
		font-size: 2rem;
	}
}

.btn-cancel{
	color: var(--btnColor-cancel-main);
	background: var(btnColor-cancel-sub);
	border: 2px solid var(--btnColor-cancel-main);
}

.btn-toRegistration{
	display: block;
	margin: 0 auto 32px;
}

.btn-toRegistration-topPage{
	display: block;
	margin: 0 auto 16px;
}


@media print, ( min-width : 768px ){
	.btn-toRegistration{
		display: none;
	}
}

@media print, ( min-width : 1024px ){
	.btn-toRegistration{
		width: 320px;
		margin-bottom: 64px;
	}
}

/*-----------------------------------------------
アイコン
-----------------------------------------------*/
.icon{
	display: block;
	width: 24px;
	height: 24px;
	-webkit-mask-size: cover;
	mask-size: cover;
	background-color: #fff;
}

.btnIcon{
	display: inline-block;
	margin: 0 4px 4px;
	width: 30px;
	height: 30px;
	background-size: 70% 70%;
	background-position: center;
	background-repeat: no-repeat;
	vertical-align: middle;
}

.icon-sns{
	width: 40px;
}

/* ロゴ */
.logo{
	display: block;
	background-size: contain;
	background-repeat:no-repeat;
}

.icon-heart{
	background-image: url('../img/svg-icon-heart-solid.svg');
}

.icon-catSilhouette{
	background-image: url('../img/svg-icon-cat-silhouette.svg');
}

.icon-calendar{
	background-image: url('../img/svg-icon-calendar.svg');
}

.icon-yenMark{
	background-image: url('../img/svg-icon-yenMark.svg');
}

.icon-arrowRight-circle{
	background-image: url('../img/svg-icon-arrowRight-circle.svg');
}

.icon-arrowRight-line{
	background-image: url('../img/svg-icon-arrowRight-line.svg');
}

.icon-openPage{
	background-image: url('../img/svg-icon-openPage.svg');
}

/*-----------------------------------------------
リンク
-----------------------------------------------*/
.textLink-catsIcon{
	display: inline-block;
	font-weight: bold;
	text-decoration: underline;
	color: #d86e0a;
}

.textLink-catsIcon:before{
	display: inline-block;
	content: "";
	margin-bottom: 4px;
	width: 40px;
	height: 30px;
	background: url('../img/svg-icon-cats-crystalball.svg');
	background-size: cover;
	vertical-align: middle;
}

/* ページング */
.pageCount{
	margin-bottom: 8px;
	font-weight: normal;
	font-size: 1.2rem;
	text-align: right;
	color: #e0be4d;
}

.pagination{
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 320px;
	margin: 16px auto;
}

.pagination_item{
	display: block;
	width: 56px;
	height: 40px;
	line-height: 40px;
	text-align: center;
}

.pagination_item.nowPage{
	color:#fff;
	background: #e0be4d;
}

.pagination_item_link{
	display: block;
	font-weight: normal;
	text-align: center;
	color: #a5a5a5;
	background: #f7f7f7;
}

/*----------------------------------------------
見出し系
-----------------------------------------------*/
/*コンテンツ見出し*/
.contentsTitle{
	position: relative;
	margin: 0 auto 32px;
	padding: 8px 0;
	color:var(--siteColor-main);
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

.contentsTitle-catsIcon:before{
	display: block;
	content: "";
	margin: 0 auto;
	width: 100px;
	height: 80px;
	background: url('../img/svg-icon-cats-crystalball.svg');
	background-size: cover;
}

@media print, ( min-width : 1024px ){
	.contentsTitle-catsIcon{
		text-align: left;
		padding-top: 24px;
		padding-left: 80px;
	}
	
	.contentsTitle-catsIcon:before{
		position: absolute;
		left: 0;
		top: 0;
		width: 80px;
		height: 60px;
	}
}

.contentsTitle-borderSolid{
	border-bottom: 1px solid var(--siteColor-main);
}

.contentsTitle-borderSolid:after{
	display: block;
	content: "";
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 100%;
	height: 2px;
	background:var(--siteColor-main);
}

.contentsTitle-frame{
	margin: 24px auto;
	padding: 16% 0 0 0; 
	font-size: 5vw;
	background-image: url('../img/svg-title-frame.svg');
	background-size: cover;
}

.contentsTitle-frame_inner{
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 24%;
}

.contentsTitle-frame-square{
	width: 85%;
	margin: 24px auto;
	padding: 17% 0 0 0; 
	font-size: 5vw;
	text-align: center !important;
	background-image: url('../img/svg-title-frame-square.svg');
	background-size: cover;
}

@media print, ( min-width : 1024px ){
	.contentsTitle-frame{
		width: 400px;
		height: 64px;
		line-height: 64px;
		padding: 0;
		font-size: 2.4rem;
	}
	
	.contentsTitle-frame_inner{
		position: static;
	}

	.contentsTitle-frame-square{
		width: 340px;
		height: 69px;
		line-height: 69px;
		padding: 0;
		font-size: 2.4rem !important;
	}
}

.title-fortunetellerList{
	max-width: 400px;
	margin: 0 auto;
}

/*項目の見出し*/
.headline-bordered{
	width: 60%;
	margin-bottom: 4px;
	color: var(--siteColor-main);
	border: 1px solid var(--siteColor-main);
}

.headline-leftBordered{
	margin-bottom: 16px;
	padding: .25em 0 .25em 8px;
	color: #7A5D34;
	font-weight: bold;
	border-left: 6px solid #7A5D34;
	background: #F4F4F4;
}

/*----------------------------------------------
ヘッダー
-----------------------------------------------*/
.header_inner{
	height: 100%;
}

.siteName{
	margin: 0 auto;
}

/* メニュー */
.headerBtn-nemu{
	top: 0;
	right:0;
	z-index: 999;
	padding-top: 12px;
	transition: all 1s;
}

@media print, ( min-width : 1024px ){
	.headerBtn-nemu{
		display: none;
	}	
}

.bar{
	display: block;
	width: 30px;
	height: 4px;
	margin: 6px auto;
	border-radius: 1.5px;
	transition: all .5s;
	background: var(--textColor);
}

.bar:nth-of-type(1){
	margin-top: 0;
}

/* オープン中 */
.headerBtn-nemu.is-active .bar:nth-of-type(1){
	transform: rotate(45deg) translate(5px, 7px);
}

.headerBtn-nemu.is-active .bar:nth-of-type(2),
.headerBtn-nemu.is-active .menuName{
	opacity: 0;
}

.headerBtn-nemu.is-active .bar:nth-of-type(3){
	transform: rotate(-45deg) translate(7px, -9px);
}

.logo-header{
	width: 180px;
	height: 48px;
	background-image: url(../img/img-logo-header-sp.png);
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media print, ( min-width : 1024px ){
	.logo-header{
		margin-left: 64px;
		height: 64px;
		background-image: url(../img/img-logo-header-pc.png);
	}
}

.headerBtn{
	position: fixed;
	width:50px;
	height: var(--headerHeight-SP);
	text-align: center;
	font-size: 1.1rem;
	cursor: pointer;
}

.headerBtn-reservation{
	top: 0;
	right: 50px;
	z-index: 998;
	padding-top: 12px;
	text-align: center;
	font-size: 1rem;
	color: var(--btnColor-sub);
	background: var(--btnColor-main);
}

.headerBtn-reservation .icon-phone{
	margin: 0 auto;
	background: url('../img/img-icon-phone.png');
	background-size: cover;
	width: 24px;
	height: 32px;
}

@media print, ( min-width : 1024px ){
	.headerBtn-reservation{
		top: 0;
		right:0;
		z-index: 999;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 120px;
		height: var(--headerHeight-PC);
		font-size: 1.6rem;
		color: var(--btnColor-sub);
		background: var(--btnColor-main);
	}

	.headerBtn-reservation .icon-phone{
		margin: 0px 4px 4px 0px;
	}
}

/*----------------------------------------------
ナビゲーション
-----------------------------------------------*/
#navi{
	display: none;
	background: linear-gradient(#fff,#fef8ef);
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	height: 100dvh;
	z-index: 998;
	overflow-y: scroll;
	-ms-overflow-style: none;	/* IE, Edge 対応 */
	scrollbar-width: none;	   /* Firefox 対応 */
}

#navi::-webkit-scrollbar{  /* Chrome, Safari 対応 */
	display:none;
}

.logo-navi{
	display: block;
	width: 184px;
	margin: 16px auto;
	object-fit: cover;
}

.phoneInfo{
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.25;
	padding-bottom: 16px;
}

.phoneNumber{
	font-size: 3.6rem;
}

.naviList{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 16px;
}

.naviList_item{
	width: 100%;
}

.naviList_item:nth-child(3){
	display: none;
}

.naviList_item_link{
	display: block;
	margin: 0 auto;
	padding: .75em;
	width: 70%;
	max-width: 460px;
	border-top: 1px solid #e5e5e5;
	position: relative;
}

.naviList_item:nth-child(8) .naviList_item_link{
	border-bottom: 1px solid #e5e5e5;
}

.naviList_item_link:after{
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 10px);
	right: 16px;
	width: 20px;
	height: 20px;
	background-image: url('../img/svg-icon-arrowRight-line.svg');
	background-size: 80% 80%;
	background-position: center;
	background-repeat: no-repeat;
}

.naviList_item_link.toRegistration{
	display: block;
	margin: 8px auto 0;
	width: 90%;
	max-width: 460px;
	border: none;
}

.naviList_item_link.toRegistration:after{
	display: none;
}

@media print, ( min-width : 1024px ){
	#navi{
		display: block !important;
		background: none;
		position: static;
		width: calc(100% - 171px);
		height: 100%;
	}
	
	.naviList{
		justify-content: flex-end;
		flex-direction: row;
		height: 100%;
		padding-right:120px;
	}

	.naviList_item{
		width: auto;
		padding: 0 12px;
		height: inherit;
		display: grid;
		place-items: center;
	}

	/* メニュー表示設定 */

	/* 予約する【対面鑑定】 */
	.naviList_item:nth-child(1){
		display: none;
	}

	/* ログイン【電話鑑定】 */
	.naviList_item:nth-child(2){
		display: none;
	}

	/* はじめての方へ */
	.naviList_item:nth-child(3){
		display: grid;
		order: 1;
	}

	/* 占い師一覧 */
	.naviList_item:nth-child(4){
		order: 2;
	}
	
	/* 出演スケジュール */
	.naviList_item:nth-child(5){
		order: 3;
	}
	
	/* ご利用方法 */
	.naviList_item:nth-child(6){
		order: 4;
	}
	
	/* 料金案内 */
	.naviList_item:nth-child(7){
		order: 5;
	}
	
	/* キャンペーン */
	.naviList_item:nth-child(8){
		order: 6;
	}

	.naviList_item:nth-child(8) .naviList_item_link{
		border: none;
	}
	
	/* ログイン */
	.naviList_item:nth-child(9){
		order: 7;
	}

	/* 会員登録 */
	.naviList_item:nth-child(10){
		order: 8;
	}
	
	.naviList_item_link{
		width: auto;
		padding: 0;
		color: var(--siteColor-main);
		border: none;
	}

	.naviList_item:nth-child(6) .naviList_item_link{
		border: none;
	}
	
	.naviList_item_link:after{
		display: none;
	}

	.naviList_item_link.toRegistration{
		margin: 0;
		width: 160px;
		height: 56px;
		padding: 0;
		text-align: center;
		text-indent: unset;
		line-height: 56px;
		color: var(--btnColor-sub);
		background: #F7C1DC;
		background: #e987a5;
		border-radius: 28px;
	}
}

.bnr_lineSupport{
	display: block;
	width: 70%;
	margin: 24px auto;
}

/*----------------------------------------------
フッター
-----------------------------------------------*/
.footerIcons{
	width: 100%;
}

.logo-footer{
	margin: 0 auto 40px;
	width: 192px;
	height: 68px;
	background-image: url(../img/img-logo-footer.png);
}

.snsList{
	margin: 0 auto 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.snsList_item{
	margin: 0 16px;
}

.footerMenuList{
	display: flex;
	flex-wrap: wrap;
	width: 80%;
	max-width: 300px;
	margin: 0 auto;
}

.footerMenuList_item{
	padding: .25em 0 .25em 8%;
	width: 50%;
	font-size: 1.5rem;
}

.footerMenuList_item_link{
	text-decoration: underline;
}

@media print, ( min-width : 1024px ){
	.footerIcons{
		margin: 0 auto 24px;
		width: 60%;
		display: flex;
		justify-content: end;
		align-items: center;
	}

	.footerMenuList{
		max-width: none;
		margin-bottom: 32px;
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-evenly;
	}

	.footerMenuList_item{
		width: auto;
		padding: .25em 0;
	}

	.footerMenuList:last-child .footerMenuList_item_link{
		font-size: 1.2rem;
	}
	
}

/*----------------------------------------------
テキスト系
-----------------------------------------------*/
.mincho{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/*----------------------------------------------
表示制御系
-----------------------------------------------*/
.hide-sp{
	display: none;
}

.show-sp{
	display: block;
}

@media print, ( min-width : 1024px ){
	.hide-pc{
		display: none;
	}

	.show-pc{
		display: block;
	}
	
	.hide-sp{
		display: block;
	}
}

.textOverflowEllipsis{
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.scrollBox::-webkit-scrollbar {
	width: 4px;
	height: 4px;
	border-radius: 8px;
	background: #eeeeee;
}

.scrollBox::-webkit-scrollbar-thumb {
	background: #d1d1d1;
	border-radius: 8px;
}

/*----------------------------------------------
汎用BOX
-----------------------------------------------*/
.box-bordered{
	padding: 24px 16px;
	border: 2px solid #e5e5e5;
}

/*-----------------------------------------------
テキスト主体のコンテンツ（規約など）
-----------------------------------------------*/
.textContent .contentsTitle{
	text-align: left;
	font-size: 1.8rem;
}

.textContent h4{
	margin-bottom: 16px;
	font-size: 1.5rem;
	font-weight: bold;
}

.textContent p{
	margin-bottom: 16px;
	font-size: 1.5rem;
}

.imgInTextContent{
	object-fit: cover;
}

@media print, ( min-width : 1024px ){
	.imgInTextContent{
		height: 320px;
	}
}

.definitionList{
	display: flex;
	flex-wrap: wrap;
	font-size: 1.4rem;
	margin-bottom: 24px;
}

.definitionList dt{
	font-weight: normal;
	background: #fafafa;
}

.definitionList dt,.definitionList dd{
	width: 100%;
	padding: 8px;
}

@media print, ( min-width : 1024px ){
	.definitionList dt{
		width: 30%;
		margin-bottom: 8px;
	}

	.definitionList dd{
		width: 70%;
	}
}

.definitionList-company dt{
	width: 30%;
}

.definitionList-company dd{
	width: 70%;
}

.definitionList-company,
.definitionList-company dt,
.definitionList-company dd{
	border: 1px solid #e5e5e5;
}

.definitionList-company dt{
	margin: 0;
	font-weight: bold;
}

/*-----------------------------------------------
入力フォーム
-----------------------------------------------*/
.formBox_item_title{
	margin-bottom: 8px;
	padding: .5em;
	font-size: 1.4rem;
	font-weight: bold;
	color: var(--textColor-formBoxItemTitle);
	background: var(--bgColor-formBoxItemTitle);
}

@media print, ( min-width : 1024px ){
	.formBox{
		width: 80%;
		margin: 0 auto;
	}

	.formBox_item{
		margin-bottom: 16px;
	}
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="password"],
select,
textarea{
	background: #fff;
}

input[type="checkbox"]:checked + .altCheckBox:before {
	opacity: 1;
	border-right: 3px solid var(--siteColor-main);
	border-bottom: 3px solid var(--siteColor-main);
}

input[type="checkbox"]:checked + .altCheckBox:after{
	border: 2px solid var(--siteColor-main);
}

input[type="checkbox"]:checked + .altCheckBox{
	color: var(--siteColor-main);
	font-weight: bold;
}

input[type="submit"].btn,
input[type="button"].btn,
button.btn{
	margin: 16px auto;
}

.msg p{
	font-size: 1.4rem;
}

.msg-error{
	color: #fff;
	background: #e03c36;
}

.msg-confirm{
	color: #fff;
	background: #31aeb3;
}

.msg-completed{
	background: #fdf6ea;
}

.msg-purchase{
	padding: 16px;
	font-size: 1.3rem;
	text-align: center;
	background: #ffeec3;
}

/*-----------------------------------------------
新規登録
-----------------------------------------------*/
.registrationMemo{
	text-align: center;
}


.registrationMemo-img{
	display: block;
	margin: 8px auto;
}

.textLink-toLogin{
	display: inline-block;
	margin: 0 auto;
	color:#f00;
}

.altCheckBox-agree{
	display: block;
	padding: 0;
	margin-right: 16px;
	width: 24px;
	height: 24px;
}

.formBox_item_agree .textLink{
	color: #f00;
}

/*-----------------------------------------------
占い師詳細関連
-----------------------------------------------*/
.store{
	color: #fff;
	text-align: center;
	background: var(--siteColor-main);
}

.store_nishiki1{
	background: #C1554E;
}
.store_nishiki5{
	background: #FE8A80;
}
.store_yabacho{
	background: #C89E65;
}
.store_tel{
	background: #FEC1B4;
}

.rank{
	color: #fff;
	text-align: center;
	margin-bottom: 8px;
}

.rank_view_3 {
	background: #f8b52e;
}
.rank_view_4 {
	background: #a6a6a6;
}
.rank_view_5 {
	background: #8c52ff;
}
.rank_view_7 {
	background: #5271ff;
}

.name{
	margin-bottom: 16px;
	font-size: 1.8rem;
	font-weight: bold;
}

/*ステータス*/
.status{
	display: block;
	margin-bottom: 24px;
	padding-top: 25%;
	background-size: cover;
	position: relative;
}

.status_text{
	display: block;
	position: absolute;
	top: 6vw;
	bottom: 0;
	right: 0;
	left: 0;
	margin: 0;
	text-align: center;
	color: #fff;
	font-size: 6vw;
	font-weight: bold;
	z-index: 1;
}

/*鑑定中*/
.status-active{
	background-image: url(../img/svg-status-active.svg);
}

/* 今すぐOK */
.status-enabled{
	background-image: url(../img/svg-status-enabled.svg);
}

/* 〇時からOK */
.status-almost{
	background-image: url(../img/svg-status-almost.svg);
}

/* 離席中 */
.status-unavailable{
	background-image: url(../img/svg-status-unavailable.svg);
}

.comment{
	text-align: center;
	padding: 8px;
	font-size: 1.8rem;
	color: #7A5D34;
	border: 1px solid  #7A5D34;
	border-radius: 5px;
}

.todaySchedule .headline{
	color: var(--siteColor-main);
	font-weight: bold;
}

.todaySchedule .time-faceToFace::before,
.todaySchedule .time-onLine::before,
.todaySchedule .time-faceToFaceonLine::before,
.todaySchedule .time-phone::before{
	width: 18px;
	height: 18px;
	background-size: cover;
	vertical-align: middle;
}

/*SP用レイアウト*/
@media print, ( min-width : 1024px ){
	.profileWapper-sp{
		display: none;
	}
}

.profileWapper-sp .pic{
	width: 40%;
	margin-bottom: 0;
}

.profileWapper-sp .profileDetails{
	width: 55%;
}

.profileWapper-sp .store{
	width: 150px;
}

.profileWapper-sp .rank{
	width: 150px;
}

.profileWapper-sp .statusWapper{
	width: 90%;
	margin: 0 auto;
}

.profileWapper-sp .statusWapper .status{
	margin: 16px auto;
}

.profileWapper-sp .statusWapper .todaySchedule{
	padding: 2px;
	border: 1px solid var(--siteColor-main);
}

.profileWapper-sp .statusWapper .todaySchedule_inner{
	padding: 8px 16px;
	text-align: center;
	background: url(../img/svg-ornament-left-top.svg),url(../img/svg-ornament-right-top.svg),url(../img/svg-ornament-right-bottom.svg),url(../img/svg-ornament-left-bottom.svg);
	background-repeat: no-repeat;
	background-position: left top,right top,right bottom,left bottom;
	border: 1px solid var(--siteColor-main);
}

.profileWapper-sp .statusWapper .todaySchedule_inner .time{
	width: 240px;
	margin: 0 auto;
}

.profileWapper-sp .statusWapper .todaySchedule_inner .time .time_method{
	display: inline-block;
	width: 92px;
	text-align: left;
}

.profileWapper-sp .statusWapper .todaySchedule_inner .time .time_wait{
	display: inline-block;
	width: calc(100% - 114px);
}

.profileWapper-sp .statusWapper .btn,
.profileWapper-sp .btn-toRegistration{
	margin: 16px auto;
	padding: 0;
	width: 100%;
}

/*PC用レイアウト*/
.profileWapper-pc{
	display: none;
}

@media print, ( min-width : 1024px ){
	.profileWapper-pc{
		display: block;
	}
	
	.profileWapper-pc .profileLeft{
		width: 240px;
		margin-bottom: 0;
	}

	.profileWapper-pc .profileLeft .status_text{
		top: .5vw;
		font-size: 1.5vw;
	}
	
	.profileWapper-pc .profileRight{
		width: calc(100% - 260px);
	}
	
	.profileWapper-pc .profileRight .comment{
		margin-bottom: 24px;
	}

	.profileWapper-pc .profileRight .profileRight_inner-left,
	.profileWapper-pc .profileRight .profileRight_inner-right{
		width: 50%;
	}

	.profileWapper-pc .store{
		width: 150px;
	}

	.profileWapper-pc .rank{
		width: 150px;
	}

	
	.profileWapper-pc .statusWapper .todaySchedule{
		padding: 2px;
		border: 1px solid var(--siteColor-main);
	}
	
	.profileWapper-pc .statusWapper .todaySchedule_inner{
		padding: 8px 16px;
		text-align: center;
		background: url(../img/svg-ornament-left-top.svg),url(../img/svg-ornament-right-top.svg),url(../img/svg-ornament-right-bottom.svg),url(../img/svg-ornament-left-bottom.svg);
		background-repeat: no-repeat;
		background-position: left top,right top,right bottom,left bottom;
		border: 1px solid var(--siteColor-main);
	}
	
	.profileWapper-pc .btn,
	.profileWapper-pc .btn-toRegistration{
		display: block;
		margin: 16px auto;
		padding: 0;
		width: 240px;
	}
}

.fortunetellerData .headline-leftBordered:not(:first-child){
	margin-top: 48px;
}

/* スケジュール */
.schedule_item{
	width: 100%;
	min-height: 54px;
	padding: .75em 0;
	border: 1px solid #707070;
}

.schedule_item:not(:last-child){
	margin-bottom: 16px;
}

.schedule-weekly .btn.toSchedule{
	max-width: 240px;
}

@media print, ( min-width : 1024px ){
	.schedule-today .schedule_item{
		width: 65%;
	}

	.schedule-weekly{
		display: flex;
		justify-content: space-between;
		flex-wrap: nowrap;
		align-items: flex-start;
	}

	.schedule-weekly_inner{
		width: 65%;
	}

	.schedule-weekly .btn.toSchedule{
		margin: 0;
	}
}

.schedule_item_row{
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-items: flex-start;
}

.schedule_item_row .date{
	width: 35%;
	font-size: 1.3rem;
	text-align: center;
}

.schedule_item_row .timeList{
	width: 65%;
}

.schedule_item_row  .timeList_item{
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.timeList_item .time{
	width: 50%;
	font-size: 1.4rem;
}

@media print, ( min-width : 1024px ){
	.schedule_item_row .date,.timeList_item .time{
		font-size: 1.6rem;
	}
}

.time-faceToFace::before,.time-onLine::before,.time-faceToFaceonLine::before,.time-phone::before{
	content: "";
	display: inline-block;
	width: 12px;
	height:12px;
	margin-right: 4px;
}

.time-faceToFace::before{
	background-color: #ff7373;
	mask-image: url(../img/svg-icon-home.svg);
}

.time-onLine::before{
	background-color: #B9FF73;
	mask-image: url(../img/svg-icon-home.svg);
}

.time-faceToFaceonLine::before{
	background-color: #73B9FF;
	mask-image: url(../img/svg-icon-home.svg);
}

.time-phone::before{
	background-image: url(../img/svg-icon-phone.svg);
}

/* 口コミ関連 */
.reviewList_item:not(:last-child){
	margin-bottom: 24px;
}

.reviewList_item:nth-child(even) .reviewList_item_inner{
	background: #FCECF4;
}

@media print, ( min-width : 1024px ){
	.reviewList{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap
	}

	.reviewList_item{
		width: 48%;
	}
}

.reviewList_item_inner{
	padding: 16px;
	border: 1px solid #707070;
}

.reviewList_item_inner .date,
.reviewList_item_inner .postUser{
	margin-bottom: 8px;
	font-size: 1.6rem;
}

.reviewTitle{
	margin-top: 8px;
	color: var(--siteColor-main);
	font-size: 1.8rem;
	font-weight: bold;
}

.reviewText{
	padding:8px;
	height: 180px;
	border-radius: 8px;
	overflow-y:scroll;
}

/*----------------------------------------------
コンテンツ
-----------------------------------------------*/
/*スライダー*/
.slick-slider {
	margin-bottom: 0;
}

.slick-prev{
	left: 8px;
	z-index: 1;
}

.slick-next{
	right: 8px;
}

.slick-prev:before,.slick-next:before{
	content: '';
	display: block;
	width: 12px;
	height: 24px;
	background-size: cover;
	opacity: .5 !important;
}

.slick-prev:before{
	background-image: url(../img/img-icon-arrowLeft-circle.png);
}

.slick-next:before{
	background-image: url(../img/img-icon-arrowRight-circle.png);
}

.slick-dots{
	bottom: 0;
}

.slick-dots li button:before{
	font-size:16px;
	color: #c2ad8c;
	
}

.slick-dots li.slick-active button:before{
	color: #BB965B;
}

.slider{
	opacity: 0;
	transition: opacity .2s linear;
	overflow: hidden;
}

.slider.slick-initialized {
	opacity: 1
}

.banner-side{
	display: none;
}

@media print, ( min-width : 768px ){
	#slider-top{
		margin-bottom: 48px;
	}

	.slider_item_inner{
		width: 100%;
		display: flex;
		flex-wrap: nowrap;
	}

	.banner{
		width: 960px;
		background-size:cover;
	}

	.banner-side{
		display: block;
		width: calc((100% - 960px)/2);
		opacity: .4;
	}

	.banner-side-left{
		background-position: right;
	}
	
	.banner-side-right{
		background-position: left;
	}
}

/*メニューリスト*/
.menuList_item{
	width: 32%;
	margin-bottom: 4px;
	padding: 4px;
	background: var(--btnColor-main);
}

.menuList_item_link{
	display: block;
	padding: 1em 0;
	font-size: 3.2vw;
	text-align: center;
	color: var(--btnColor-sub);
	background: var(--btnColor-main);
	border:solid 1px var(--btnColor-sub);
	border-radius: 4px;
}

@media print, ( min-width : 768px ){
	.menuList_item{
		display: none;
	}
}

/*店舗へのリンク*/
.storeLinks{
	max-width: 400px;
	margin: 0 auto;
}

.storeLinks a{
	display: block;
	padding:0 8px;
}

/*バナー*/
.bannerList{
	padding: 24px 0;
}

.bannerList_item{
	padding: 8px 0;
}

.banner-topPageCampaing-pc{
	display: none;
}

@media print, ( min-width : 768px ){
	.bannerList{
		width: 100%;
		margin: 0 auto;
		padding: 0;
		display: flex;
		justify-content: space-evenly;
		align-items: center;
	}

	.bannerList_item{
		padding: 8px;
	}

	.banner-topPageCampaing{
		object-fit: contain;
		height: 240px;
	}

	.banner-topPageCampaing-sp{
		display: none;
	}

	.banner-topPageCampaing-pc{
		display: block;
	}

	.bannerList-twoPerRow-PC{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 56px;
	}

	.bannerList-twoPerRow-PC .bannerList_item{
		width: 50%;
	}
}

@media print, ( min-width : 1024px ){
	.bannerList{
		width: 90%;
		justify-content: center;
	}
}

/*殿堂入り占い師*/
.hallOfFameWrapper{
	margin: 40px -16px;
	padding: 32px 16px;
	background: url(../img/bg-hallOfFame.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.hallOfFameList{
	margin-bottom: 24px;
}

.hallOfFameList_item{
	width: 48%;
}

.hallOfFameList_item .name{
	text-align: center;
	font-weight: bold;
}

/*占い師一覧関連*/
.fortunetellerListWrapper .btn-oval .icon-catSilhouette,
.fortunetellerListWrapper .btn-oval .icon-calendar{
	width: 40px;
	height: 40px;
}

.fortunetellerListWrapper .btn-oval{
	margin: 20px auto;
}

.fortunetellerListWrapper .btn-oval:last-child{
	margin-bottom: -24px;
}

.activeMembers{
	text-align: right;
}

.activeMembers_count{
	color: var(--siteColor-main);
	font-size: 2.4rem;
}

.fortunetellerList{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 32px 0 0;
}

.fortunetellerList_item{
	width: 33%;
	padding: 0 4px;
	margin-bottom: 32px;
}

/*占い師一覧ページ用*/
.fortunetellerListWrapper-listPage .fortunetellerList .fortunetellerList_item .pic{
	margin-bottom: 0;
}

.fortunetellerListWrapper-listPage .fortunetellerList .fortunetellerList_item .status{
	margin-bottom: 4px;
}

.fortunetellerListWrapper-listPage .fortunetellerList .fortunetellerList_item .status_text{
	top: 8%;
	font-size: 3.6vw;
	font-weight: normal;
}

@media print, ( min-width : 768px ){
	.fortunetellerListWrapper-listPage .fortunetellerList .fortunetellerList_item{
		width: 25%;
		padding: 0 16px;
	}

	.fortunetellerListWrapper-listPage .fortunetellerList .fortunetellerList_item .status_text{
		font-size: 2.4vw;
	}
}

@media print, ( min-width : 1024px ){
	.fortunetellerList_item{
		width: 20%;
	}

	.fortunetellerListWrapper-listPage .fortunetellerList .fortunetellerList_item .status_text{
		font-size: 30px;
	}
}

.fortunetellerList .rank{
	display: block;
	width: 32px;
}

.fortunetellerList_item .picWrapper,
.fortunetellerList_item .picBox{
	aspect-ratio: 1 / 1.2;
	overflow: hidden;
}

.fortunetellerList .pic{
	margin-bottom: 8px;
}

.fortunetellerList .store{
	width: 77px;
	margin-bottom: 8px;
	padding: .5em;
	font-size: 1.2rem;
	line-height: 1;
}

.fortunetellerList .name{
	margin-bottom: 0;
	font-size: 1.6rem;
	text-align: center;
}

.fortunetellerList .methods{
	font-size: 1.2rem;
}

/*口コミ(件数表示)*/
.fortunetellerList .review{
	color: var(--siteColor-main);
	font-size: 1.1rem;
	text-align: center;
}

.fortunetellerList .review .icon-comments{
	display: inline-block;
	content: "";
	margin-right: 2px;
	width: 16px;
	height: 14px;
	background: url(../img/svg-icon-comments.svg);
	background-size: cover;
	vertical-align: middle;
}

.fortunetellerList .textLink-toReview{
	font-size: 1.2rem;
	font-weight: bold;
	color: var(--siteColor-main);
}

@media print, ( min-width : 1024px ){
	.fortunetellerList .store,
	.fortunetellerList .headline-bordered,
	.fortunetellerList .methods{
		font-size: 1.4rem;
	}

	.fortunetellerList .name{
		font-size: 2rem;
	}

	.fortunetellerList .textLink-toReview{
		font-size: 1.6rem;
	}
}

.fortunetellerList .textLink-toReview:before{
	display: inline-block;
	content: "";
	margin-right: 2px;
	width: 16px;
	height: 14px;
	background: url(../img/svg-icon-comments.svg);
	background-size: cover;
	vertical-align: middle;
}

/*占い師一覧 TOPページ用*/
.fortunetellerList-topPage_item{
	width: 33.333%;
	padding: 0 4px;
	margin-bottom: 32px;
}

.fortunetellerList-topPage_item .name{
	text-align: left;
}

/*占い師一覧 スケジュールページ用*/
.fortunetellerListWrapper-schedule .formBox{
	padding: 0 8px;
}

.fortunetellerListWrapper-schedule_inner{
	padding: 0 8px;
}

@media print, ( min-width : 1024px ){
	.fortunetellerListWrapper-schedule_inner{
		width: 80%;
		margin: 0 auto;
	}
}

.fortunetellerListWrapper-schedule .btn{
	width: auto;
	margin: 8px 0 16px 0;
	padding: .5em;
	font-size: 1.2rem;
	background: #fff;
	border: 1px solid #838281;
}

.fortunetellerListWrapper-schedule .btn.active{
	background: #fffdef;
}

@media print, ( min-width : 768px ){
	.fortunetellerListWrapper-schedule .btn{
		width: 33%;
		margin-bottom: 32px;
		font-size: 1.6rem;
	}
}

.fortunetellerListWrapper-schedule .activeMembers{
	width: 100%;
	margin: 0 auto;
	padding: 0 8px;
	text-align: center;
	border: 1px solid #838281;
}

.fortunetellerListWrapper-schedule .fortunetellerList .fortunetellerList_item .picBox{
	width: 100%;
}

.fortunetellerListWrapper-schedule .fortunetellerList .fortunetellerList_item .store{
	width: 100%;
}

.fortunetellerListWrapper-schedule .fortunetellerList .fortunetellerList_item .headline-bordered{
	width: 100%;
}

.fortunetellerListWrapper-schedule .fortunetellerList .fortunetellerList_item .timeIconWrapper{
	width: 64px;
	margin: 0 auto;
}

.fortunetellerListWrapper-schedule .fortunetellerList .fortunetellerList_item .time-faceToFace::before,
.fortunetellerListWrapper-schedule .fortunetellerList .fortunetellerList_item .time-onLine::before,
.fortunetellerListWrapper-schedule .fortunetellerList .fortunetellerList_item .time-faceToFaceonLine::before,
.fortunetellerListWrapper-schedule .fortunetellerList .fortunetellerList_item .time-phone::before{
	margin: 0 2px;
	width: 16px;
	height:16px;
	margin-right: 0;
	background-size: cover;
}

/*店舗紹介/ユーザの声紹介*/
.introduction-store{
	padding: 0;
	background: #FFFAF5;
}

.introduction{
	padding: 24px;
	background: var(--bgColor-main);
}

.introduction_item{
	padding: 16px 0;
}

.introduction_item .textLink{
	display: inline-block;
	margin-top: 16px;
	color: var(--siteColor-main);
	text-decoration: none;
	font-weight: bold
}

@media print, ( min-width : 768px ){
	.introduction-store{
		padding: 56px 0;
	}
	
	.introduction{
		display: flex;
		justify-content: space-between;
	}

	.introduction_item{
		width: 48%;
	}
}

.introduction_storeName{
	margin-bottom: 16px;
	font-size: 2.2rem;
	font-weight: bold;
	border-bottom: 1px solid var(--siteColor-main);
}

.introduction_leadText{
	font-size: 2rem;
	margin: 0 0 20px;
	font-weight: 400;
	line-height: 1.5;
}

/*料金プランを詳しく見る*/
.btnIcon.icon-yenMark{
	margin-bottom: 8px;
	background-size: contain;
}

/*一歩踏み出せないあなたへ*/
.introduction-aboutUs{
	background: #033967;
}

.introduction-aboutUs .introduction_leadText{
	margin-bottom: 16px;
	color: #fff;
	text-align: right;
}

@media print, ( min-width : 768px ){
	.introduction-aboutUs .introduction_leadText{
		text-align: center;
	}
}

@media print, ( min-width : 1024px ){
	.introduction-aboutUs{
		padding: 120px 0;
	}
	
	.introduction-aboutUs .introduction_leadText{
		font-size: 3.2rem;
	}
}

.introduction_item-aboutUs{
	width: 100%;
	padding: 40px 16px 56px;
	background: #fff;
	border-radius: 8px;
	position: relative;
}

.introduction_item-aboutUs:before,
.introduction_item-aboutUs:after{
	content: "";
	display: block;
	position: absolute;
	width: 80px;
	height: 114px;
	background-size: cover;
	z-index: 998;
}

.introduction_item-aboutUs:before{
	top:-90px;
	left:16px;
	background-image: url(../img/svg-icon-cats-bk.svg);
}

.introduction_item-aboutUs:after{
	bottom:-32px;
	right:16px;
	background-image: url(../img/svg-icon-cats-wt.svg);
}

/*Access & Info*/
.accessAndInfo{
	margin-bottom: 24px;
}

.accessAndInfo_storeName{
	width:160px;
	margin: 0 auto 16px;
}

.map{
	height: 480px;
	margin: 0 auto 24px;
	overflow: hidden;
}

.map iframe{
	display: block;
	width: 100%;
	height: inherit;
	border: none;
}

.rootAndExterior{
	display: flex;
	justify-content: center;
	flex-direction: column-reverse;
}

.root{
	display: flex;
	flex-wrap: wrap;
	font-size: 1.5rem;
}

.exterior{
	margin-bottom: 16px;
}

@media print, ( min-width : 768px ){
	.rootAndExterior{
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}

	.root{
		width: 52%;
	}
	
	.exterior{
		width: 48%;
		margin-bottom: 0;
		object-fit: contain;
	}
}

.root_headline{
	width: 80px;
	padding: .5em;
	font-weight: normal;
}

.root_text{
	width: calc(100% - 80px);
	padding: .5em;
}

/*対面鑑定 ご利用方法*/
.containerFullSize.usageContentsWrapper{
	padding: 0;
	background: #FFFAF5;
}

.usageContents{
	padding: 8px 16px 24px;
}

.flowList_item{
	padding: 16px;
	background: #fff;
	border: 2px dashed var(--siteColor-main);
	border-radius: 20px;
	position: relative;
}

.flowList_item:not(:last-child){
	margin-bottom: 56px;
}

.flowList_item:not(:last-child)::before{
	position: absolute;
	left: 0;
	right: 0;
	bottom: -40px;
	margin: auto;
	content: "";
	display: block;
	width: 96px;
	height: 24px;
	clip-path: polygon(0 0, 100% 0%, 50% 100%);
	background-color: #F5BD73;
}

.flowList_item_title{
	margin-bottom: 8px;
	color: var(--siteColor-main);
	font-weight: bold;
	font-size: 2rem ;
}

.usageDescription{
	padding: 32px 0;
}

.usageDescription_title{
	font-weight: bold;
	margin-bottom: 4px;
}

.usageImage{
	display: block;
	width: 90%;
	margin: 24px auto;
}

@media print, ( min-width : 1024px ){
	.usageDescription{
		text-align: center;
	}

	.usageImage{
		width: 366px;
	}
}

/*オンライン鑑定 ご利用方法*/
table.descriptionTable{
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 24px;
	border: 1px solid #707070;
}

table.descriptionTable tr:not(:last-child){
	border-bottom: 1px solid #707070;
}

.descriptionTable th,
.descriptionTable td{
	width: 100%;
	height: 80px;
	padding: 8px;
	font-size: 1.4rem;
	vertical-align: middle;
}

.descriptionTable th{
	width: 45%;
	border-right: 1px solid #707070;
	background: #F4F4F4;
}

.usageContents-online .overview .title{
	font-weight: bold;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	color:var(--siteColor-main);
}

.usageContents-online .overview .title::before{
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	margin-right: 12px;
	transform: rotate(45deg);
	background: var(--siteColor-main);
}

.usageContents-online .contentsTitle-frame{
	margin-bottom: 0;
}

.leadText-online{
	text-align: left;
	font-weight: bold;
	padding-top: 24px;
}

.usageContents-online .toReservationPageBtnWrapper .icon{
	display: inline-block;
	width: 21px;
	vertical-align: middle;
}

.usageContents-online .toReservationPageBtnWrapper .btn{
	margin: 0 auto;
	padding: 0;
	width: 100%;
}

@media print, ( min-width : 1024px ){
	.usageDescription-online{
		text-align: left;
	}

	.usageDescription-online_inner{
		display: flex;
		justify-content: space-between;
	}

	.usageDescription-online_inner .usageImage{
		margin: 0;
	}

	.usageDescription-online .leadText{
		text-align: center;
		margin-bottom: 48px;
	}

	.descriptionTable th{
		width: 25%;
	}

	.leadText-online{
		text-align: center;
		font-size:2.1rem;
	}
}

/*料金案内*/
.courseList_item{
	width: 46%;
	margin: 0 1%;
	border-top: 1px solid #e3e1d8;
}

.courseList_item:nth-child(3),
.courseList_item:nth-child(4){
	border-bottom: 1px solid #e3e1d8;
}

.courseList_item_link{
	display: block;
	padding: .75em;
	font-size: 1.4rem;
	position: relative;
}

.courseList_item_link::after{
	display: block;
	position: absolute;
	top: calc(50% - 12px);
	right: 0;
	content: "";
	background: url(../img/svg-icon-arrowRight-line.svg);
	width: 24px;
	height: 24px;
	background-size: 70% 70%;
	background-position: center;
	background-repeat: no-repeat;
	transform: rotate(90deg);
}

@media print, ( min-width : 768px ){
	.courseList_item{
		width: 23%;
		border-bottom: 1px solid #e3e1d8;
	}
}

.courseDescription{
	margin-bottom: 64px;
}

.courseDescription_inner{
	max-width: 400px;
	margin: 0 auto;
}

.trialPrice{
	background-image: url(../img/bg-doubleBorder-topLeft.png),url(../img/bg-doubleBorder-topRight.png),url(../img/bg-doubleBorder-bottomRight.png),url(../img/bg-doubleBorder-bottomLeft.png);
	background-size: 40px 40px;
	background-position: top left,top right,bottom right, bottom left;
	background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;
}

.trialPrice_inner{
	padding: 24px;
}

.priceList{
	table-layout: fixed;
	width: 100%;
	margin: 48px auto;
	border: 1px solid #D6D6D6;
}

.priceList thead{
	color: #fff;
}

.priceList-gold thead{
	background:linear-gradient(90deg, #e0be55, #f2d375, #e0be55);
}

.priceList-platinum thead{
	background:linear-gradient(90deg, #bebebe, #e4e3e0, #bebebe);
}

.priceList-diamond thead{
	background:linear-gradient(90deg, #fcb4ff, #b8bbff, #73c2ff);
}

.priceList-star thead{
	background:linear-gradient(90deg, #133655, #2a5b88, #133655);
}

.priceList tr:not(:last-child){
	border-bottom: 1px solid #D6D6D6;
}

.priceList th,
.priceList td{
	padding:8px;
	font-weight: bold;
	border-left: 1px solid #e3e1d8;
}

.priceList-usageLimit thead{
	background: #F5BD73;
}

.courseDescription .btn{
	max-width: 400px;
	margin: 0 auto;
	font-size: 1.4rem;
}

@media print, ( min-width : 1024px ){
	.courseDescription .btn{
		font-size: 1.6rem;
	}
}

.speachBalloonWapper{
	max-width: 320px;
	margin: 16px auto;
}

.speachBalloon{
	width: 160px;
	padding: 24px 16px;
	border: 1px solid #666;
	border-radius: 50%;
	background: #fff;
	position: relative;
}

.speachBalloon::before{
	position: absolute;
	top: 43px;
	display: block;
	content: '';
	width: 14px;
	height: 14px;
	background: #fff;
}

.speachBalloon-left::before{
	right: -6px;
	transform: rotate(42deg);
	border-right: 1px solid #666;
	border-top: 1px solid #666;
}

.speachBalloon-right::before{
	left: -6px;
	transform: rotate(50deg);
	border-left: 1px solid #666;
	border-bottom: 1px solid #666;
}

.speachBalloon-center{
	margin: 24px auto;
	width: 80%;
	border-radius: 8px
}

.speachBalloon-center::before,
.speachBalloon-center::after{
	display: block;
	content: '';
	position: absolute;
	bottom: -8px;
	width: 14px;
	height: 14px;
	background: #fff;
	transform: rotate(45deg);
	border-right: 1px solid #707070;
	border-bottom: 1px solid #707070;
}

.speachBalloon-center::before{
	top: unset;
	left: 30%;
}

.speachBalloon-center::after{
	right: 30%;
}

.price-trialCourse{
	color: var(--siteColor-main);
	font-weight: bold;
	font-size: 1.8rem;
}

.icon-cat{
	width: 96px;
}

.courseDescription-pair{
	margin: 0 auto 32px;
	box-shadow: none;
}

.courseDescription-pair_inner{
	margin-bottom: 24px;
	padding: 24px;
	text-align: center;
	border-radius: 16px;
	border: 1px solid #707070;
	position: relative;
}

.courseDescription-pair_inner::before,
.courseDescription-pair_inner::after{
	display: block;
	content: '';
	position: absolute;
	bottom: -8px;
	width: 14px;
	height: 14px;
	background: #fff;
	transform: rotate(45deg);
	border-right: 1px solid #707070;
	border-bottom: 1px solid #707070;
}

.courseDescription-pair_inner::before{
	left: 36%;
}

.courseDescription-pair_inner::after{
	right: 36%;
}

.icon-catsAndCards{
	display: block;
	margin: 0 auto;
	width: 50%;
}

.courseDescription-pair_inner h3{
	display: block;
	margin: 0 auto 24px;
	width: 80%;
	max-width: 400px;
}

.courseDescription-pair_inner .memo{
	font-size: 1.6rem;
	text-align: center;
	color: var(--siteColor-main);
	background: none;
	border: none;
}


@media print, ( min-width : 1024px ){
	.courseDescription-pair{
		width: 100%;
		margin-bottom: 32px;
	}

	.courseDescription-pair_title span{
		font-size: 4rem;
	}

	.courseDescription-pair_detail{
		display: flex;
		justify-content: space-evenly;
		width: 50%;
		margin: 0 auto;
		flex: 1;
	}

	.ourseDescription-pair_detail_text{
		padding: 0 8px;
	}
}

/*はじめての方へ　イーマジョからのお約束*/
.promiseList{
	margin: 24px 0;
	padding: 24px 16px;
	background: #f9e5e9;
}

@media print, ( min-width : 1024px ){
	.promiseList{
		background: none;
	}
}

.promiseList_item:not(:last-child){
	margin-bottom: 16px;
}

.promiseList_item_number{
	color: #ff0000;
}

/*キャンペーン*/
.campaignDescription{
	padding-bottom: 64px;
}

.campaignDescription .bannerList{
	margin-bottom: 0;
}

.campaignDescription .bannerList .bannerList_item{
	width: 90%;
	margin: 0 auto;
}

.campaignDescription h3.contentsTitle{
	text-align: center;
}

.campaignDescription .contentsTitle-catsIcon{
	font-size: 2.8rem;
	margin: 0 -16px 24px;
	padding: 32px 0;
	background: #FFFAF5;
}

.campaignDescription .memo{
	padding: 16px;
	background: #fff;
	border: 1px solid #9e9e9e;
}

.campaignDescription .ptRate{
	table-layout: fixed;
	width: 100%;
	margin: 8px auto 16px;
	font-size: 1.4rem;
	border: 1px solid #9e9e9e;
}

.campaignDescription .ptRate thead{
	font-size: 1.4rem;
	background: #f4f6d2;
	border: 1px solid #9e9e9e;
}

.campaignDescription .ptRate th{
	border-right: 1px solid #9e9e9e;
}

.campaignDescription .ptRate tr:not(:last-child){
	border-bottom: 1px solid #9e9e9e;
}

.campaignDescription .ptRate th,
.campaignDescription .ptRate td{
	padding: .25em;
	text-align: center;
	border-right: 1px solid #9e9e9e;
}

.campaignDescription .ptRate td:nth-child(1){
	border-right: 1px solid #9e9e9e;
}


.campaignDescription .rankRate{
	table-layout: fixed;
	width: 100%;
	margin: 8px auto 16px;
	font-size: 1.4rem;
	border: 1px solid #9e9e9e;
}

.campaignDescription .rankRate thead{
	font-size: 1.4rem;
	background: #f4f6d2;
	border: 1px solid #9e9e9e;
}

.campaignDescription .rankRate th{
	border-right: 1px solid #9e9e9e;
}

.campaignDescription .rankRate tr:not(:last-child){
	border-bottom: 1px solid #9e9e9e;
}

.campaignDescription .rankRate th,
.campaignDescription .rankRate td{
	padding: .25em;
	text-align: center;
	border-right: 1px solid #9e9e9e;
}

.campaignDescription .rankRate td:nth-child(1){
	border-right: 1px solid #9e9e9e;
}

@media print, ( min-width : 1024px ){
	.toCampaignDescriptionBtns{
		display: flex;
		margin-bottom: 64px;
	}

	.campaignDescription .bannerList .bannerList_item{
		width: 100%;
	}
	

	.campaignDescription .contentsTitle{
		text-align: center;
	}

	.campaignDescription .contentsTitle-catsIcon{
		text-align: center;
		background: none;
	}
	
	.campaignDescription .contentsTitle-catsIcon:before{
		position: static;
	}
}

.banner-campaing{
	display: block;
	width: 480px;
	margin: 24px auto;
}

/*会社概要/ボランティア*/
.imgInTextContent-voluntee{
	width: 48%;
}

@media print, ( min-width : 1024px ){
	.rootAndillustMap{
		display: flex;
		justify-content: center;
	}
	.illustMap{
		height: 390px;
		object-fit: contain;
	}
}

.slider-access{
	padding: 32px 0;
}

@media print, ( min-width : 1024px ){
	.slider-access{
		width: 80%;
		margin: 24px auto;
	}
}