@charset "shift-jis";

:root {
	--primaryColor:#ca55b1;			/*ヘッダー/フッターなど*/
	--secondaryColor:#e567ca;			/*サブ要素*/

	--bodyColor:#fafafa;				/*bodyの背景色*/
	--mainBgColor:#fff5fd;				/*メインエリアの背景色*/

	--gradientColor:#ca55b1,#c4a2e6;/*メインエリアの背景色*/

	--textColor-main:#595457;			/*文字色*/
	--textLinkColor-main:#595457;		/*テキストリンク*/

	--btnColor-main:#ff347f;			/*ボタンの背景色など*/
	--btnColor-sub:#fff;				/*ボタンの文字など*/

	--mincho:"ヒラギノ明朝 ProN","Hiragino Mincho ProN","Hiragino Mincho","Yu Mincho", "游明朝","Noto Serif JP",serif;
	--gothic:"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic", sans-serif;
}

body{
	color: var(--textColor-main);
	background: var(--bodyColor);
	font-family: 'Zen Maru Gothic', sans-serif;
	overflow-y: scroll; /* スクロールは可能 */
	scrollbar-width: none;/* Firefox */
}

body::-webkit-scrollbar {
	display: none; /* Chrome, Safari */
}

p{
	font-size: 1.5rem;
	line-height: 1.5;
	color: #343a40;
}

a{
	color: #343a40;
}

/*レイアウト*/
.container{
	width: 100%;
	padding: 0;
}

@media (min-width: 768px){
	.container{
		width: 460px;
		margin: 0 auto;
	}
}

.mincho{
	font-family: var(--mincho);
}

.gothic{
	font-family: var(--gothic);
}

/*----------------------------------------------
見出し/テキスト系
-----------------------------------------------*/
/*ページタイトル*/
.pageTitle{
	display: grid;
	align-content: center;
	width: 100%;
	height: 60px;
	line-height: 1;
	padding-left: 32px;
	font-size: 2rem;
	font-family: var(--gothic);
	background: #f5f5f5;
	position: relative;
}

.pageTitle::before{
	position: absolute;
	top: 20%;
	left: 16px;
	display: block;
	content: "";
	width: 3px;
	height: 60%;
	background: var(--secondaryColor);
}

.pageTitle:first-child{
	/* margin: 0 auto 16px; */
}

.pageTitle .subText{
	margin-top: 4px;
	font-size: 1.4rem;
}

/*コンテンツタイトル*/
.contentsTitle{
	width: 100%;
	margin-bottom: 16px;
	padding: .75rem 0;
	font-size: 2.2rem;
	line-height: 1.25;
	font-weight: bold;
	text-align: center;
	color: #fff;
	background: linear-gradient(var(--gradientColor));
	font-family: var(--mincho);
}

.contentsTitle .siteName{
	font-size: 1.5rem;
}

.borderLeftBottomTitle{
	width: 100%;
	margin: 16px auto;
	padding: 0 0 4px 16px;
	border-bottom: 1px dotted #e567ca;
	position: relative;
	font-family: var(--gothic);
}

.borderLeftBottomTitle:before{
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 12px);
	left: 0;
	width: 3px;
	height: 20px;
	background: #e567ca;
}

/*注釈*/
.memoBox{
	padding: 24px;
}

.memo{
	background: #fafafa;
	border: 1px solid #e5e5e5;
}

/*丸付きリスト*/
.discList{
	padding-left: 16px;
	list-style: disc;
}

/*----------------------------------------------
アイコン
-----------------------------------------------*/
.icon{
	display: block;
	width: 32px;
	height: 32px;
	-webkit-mask-size: cover;
	mask-size: cover;
	background-color: #595457;
}

.icon-line{
	background: url(../img/svg-line.svg);
	background-size: cover;
}

.icon-google{
	background: url(../img/svg-google.svg);
	background-size: cover;
}

.icon-mail-circle{
	background:url(../img/svg-mail-circle.svg);
	background-size: cover;
}

.icon-crossmark{
	-webkit-mask-image: url('../img/svg-crossmark.svg');
	mask-image: url('../img/svg-crossmark.svg');
}

.icon-crossmark-thin{
	-webkit-mask-image: url('../img/svg-crossmark-thin.svg');
	mask-image: url('../img/svg-crossmark-thin.svg');
}

.icon-phoneBalloon{
	-webkit-mask-image: url('../img/svg-phoneBalloon.svg');
	mask-image: url('../img/svg-phoneBalloon.svg');
}

.icon-balloon{
	-webkit-mask-image: url('../img/svg-balloon.svg');
	mask-image: url('../img/svg-balloon.svg');
}

.icon-beginner{
	background:url(../img/svg-beginnerMark.svg);
	background-size: cover;
}

.icon-history{
	-webkit-mask-image: url('../img/svg-history.svg');
	mask-image: url('../img/svg-history.svg');
}

.icon-pt{
	-webkit-mask-image: url('../img/svg-pt.svg');
	mask-image: url('../img/svg-pt.svg');
}

.icon-edit{
	-webkit-mask-image: url('../img/svg-edit.svg');
	mask-image: url('../img/svg-edit.svg');
}

.icon-question{
	background-image: url(../img/img-q.png);
}

.icon-answer{
	background-image: url(../img/img-a.png);
}

.icon-clock-sm{
	-webkit-mask-image: url('../img/svg-clock-sm.svg');
	mask-image: url('../img/svg-clock-sm.svg');
}

.icon-volume{
	-webkit-mask-image: url('../img/svg-volume.svg');
	mask-image: url('../img/svg-volume.svg');
}

.icon-play{
	-webkit-mask-image: url('../img/svg-play.svg');
	mask-image: url('../img/svg-play.svg');
}

.icon-heart-plus{
	-webkit-mask-image: url('../img/svg-heart-plus.svg');
	mask-image: url('../img/svg-heart-plus.svg');
}

.icon-heart-minus{
	-webkit-mask-image: url('../img/svg-heart-minus.svg');
	mask-image: url('../img/svg-heart-minus.svg');
}


/*-----------------------------------------------
スライダー（swiper）
-----------------------------------------------*/
.area-swiper{
	position: relative;
	margin-bottom: 32px;
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-pagination {
	bottom: -24px !important;
}

/*-----------------------------------------------
待機ステータス
-----------------------------------------------*/
/*ステータス 丸形*/
.status{
	margin: 16px auto;
	width: 40%;
	padding: .15em;
	font-size: 2rem;
	text-align: center;
	font-family: 'Zen Maru Gothic', sans-serif;
	color: #fff;
	border-radius: 128px;
}

.is-waiting{
	background: linear-gradient(#a9e9e8,#2d79b9) !important;
	border-color:#5ca3cc !important;
}

.is-reading{
	background: linear-gradient(#fb91a5,#8c011b) !important;
	border-color:#c4535f !important;
}

.is-full{
	background: linear-gradient(#f1deaa,#b97d49) !important;
	border-color:#cfa16d !important;
}

.is-away{
	background: linear-gradient(#c5caca,#737c83) !important;
	border-color:#979ea3 !important;
}

.is-request{
	background: linear-gradient(#37df91,#219b76) !important;
	border-color:#22ca7c !important;
}

.is-now{
	background: linear-gradient(#68c386, #018c86) !important;
	border-color:#22ca7c !important;
}

/*ステータス テキスト*/
.status-text{
	display: flex;
	gap: 6px;
	margin: 8px auto;
	padding: .15em;
	font-size: 1.8rem;
	font-family: 'Zen Maru Gothic', sans-serif;
	color: #c0c0c0;
	background: none !important;
	border-color:none !important;
}

.status-text span{
	display: grid;
	place-items: center;
	padding: 0 .5rem;
	font-size: 1.3rem;
	color: #a9a6a8;
	background: #f5f5f5;
}

.status-text.is-waiting{
	color: #2d79b9;
}

.status-text.is-reading{
	color: #8c011b;
}

.status-text.is-full{
	color: #b97d49;
}

.status-text.is-away{
	color: #737c83;
}

.status-text.is-request{
	color: #219b76;
}

.status-textis-now{
	color: #018c86;
}

/*----------------------------------------------
ボタン/リンク
-----------------------------------------------*/
.btn{
	width: 100%;
	margin: 16px auto;
	padding: .65em .5em;
	font-weight: normal;
	font-size: 1.7rem;
	color: #595457;
	background: #efefef;
	background: linear-gradient(#efefef, #ffffff);
	border: 1px solid #a6a3a5;
	border-radius: 128px;
	font-family: var(--gothic);
}

@media (min-width: 768px){
	.btn:hover{
		transform:scale(98%);
	}
}

.btn-arrowRight{
	position: relative;
	margin: 16px auto 8px;
}

.btn-arrowRight::after{
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 4px);
	right: 8%;
	width: 8px;
	height: 8px;
	border-top: 1px solid #6a6568;
	border-right: 1px solid #6a6568;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*新規登録ボタン*/
.btn-regist-large{
	position: relative;
	width: 86%;
	font-size: 2.4rem;
	color: #fff;
	background: linear-gradient(#68c386, #018c86);
	border: none;
}

.btn-regist-large::after{
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 8px);
	right: 12%;
	width: 16px;
	height: 16px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btnRegistTitle{
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60%;
	font-size: 1.5rem;
	color: #595457;
	background: #fff;
	border: 2px solid #56b688;
	border-radius: 128px;
}

/*はじめての方へボタン*/
.btn-beginner{
	display: flex;
	justify-content: center;
	width: 90%;
	font-size: 1.4rem;
	border-radius: 8px;
}

.btn-beginner .icon{
	width: 14px;
	height: auto;
	margin-right: 8px;
}

/*キャンセルボタン*/
.btn-cancel{
	background: #bbb;
}

/*待機ステータスボタン*/
.btn.status{
	margin: 0 auto;
	width: 100%;
	padding: 1px;
	font-size: 1.4rem;
	color: #fff;
	border-radius: 128px;
}

.btn.status::after{
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 4px);
	right: 12%;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.btn .statu_inner{
	display: block;
	width: 100%;
	padding: .25rem;
	border: 1px solid #fff;
	border-radius: 128px;
}

.btn.status.is-request::after{
	display: none;
}

/*お気に入りボタン*/
.btn-favo{
	margin: 8px auto;
	width: 100%;
	padding: 1px;
	font-size: 1.8rem;
	font-family: 'Zen Maru Gothic', sans-serif;
	color: #fff;
	background: linear-gradient(#daa9e9,#982db9);
	border: 1px solid #982db9;
	border-radius: 128px;
}

.btn-favo_inner{
	display: block;
	width: 100%;
	padding: .25rem;
	border: 1px solid #fff;
	border-radius: 128px;
}

.btn-favo.is-avtive{
	background: linear-gradient(#d6ced8,#a39ca5);
	border: 1px solid #a39ca5;
}


/*もっと見るボタン*/
.btn-more{
	position: relative;
}

.btn-more::after{
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 4px);
	right: 8%;
	width: 8px;
	height: 8px;
	border-top: 1px solid #6a6568;
	border-right: 1px solid #6a6568;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.btn-more.active::after {
	transform: rotate(-45deg);
}

/*ページ内リンクボタン*/
.inPageLinkBtns{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 16px 0 0;
}

.btn-inPage{
	width: 48%;
	margin: 8px 0;
	padding: .25em;
	text-align: center;
	font-size: 1.3rem;
	font-weight: bold;
	color: #af7c96;
	border: 1px solid #af7c96;
	border-radius: 128px;
	position: relative;
}

.btn-inPage::after{
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 6px);
	right: 8%;
	width: 8px;
	height: 8px;
	border-top: 1px solid #af7c96;
	border-right: 1px solid #af7c96;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.horizontalBtnBox{
	display: flex;
	justify-content: space-between;
}

.horizontalBtnBox .btn{
	width: 49%;
	margin: 0;
	padding: 0;
	background: none;
}

/* 電話発信ボタン */
.btn-call{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 90%;
	margin: 16px auto;
	padding: 8px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	background: #00c134;
	border-radius: 5px;
}

.btn-call .icon{
	margin-right: 16px;
	background-color: #fff;
}

#scrollToTop{
	color: #5d4297;
	opacity: .75;
	right: 12px;
	bottom: 56px;
}

/*パンくず*/
.breadcrumbList{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	padding: 8px 16px;
	font-size: 1.2rem;
	font-family: var(--gothic);
	color: #595457;
	background: #fff;
}

.breadcrumbList_item_link{
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}

.breadcrumbList_item_link::after {
	content: "";
	display: inline-block;
	margin: 0 .6em;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 8px solid #595457;
}

/*ページネーション*/
.pagination{
	margin: 24px auto;
	width: 90%;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.pagination_item{
	width: 12%;
}

.pagination_item_link{
	display: grid;
	place-items: center;
	aspect-ratio: 1 / 1;
	width: 40px;
	padding: .25rem;
	font-weight: bold;
	text-align: center;
	color: #595457;
	border-radius: 50%;
}

.pagination_item:first-child .pagination_item_link::after,
.pagination_item:last-child .pagination_item_link::after{
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: 2px solid #ea83d4;
	border-right: 2px solid #ea83d4;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}

.pagination_item:last-child .pagination_item_link::after{
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.pagination_item_link.is-current{
	color: #fff;
	background: #ea83d4; 
}

/*タブ切り替え*/
.tabMenu{
	display: flex;
	justify-content: space-evenly;
	margin-bottom: 16px;
}

.tab{
	padding: .5em;
	font-size: 1.8rem;
	font-family: var(--gothic);
	color: #fff;
	background: #e4a5d7;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	cursor: pointer;
}

.tab.active{
	background: #ca55b1;
}

.tabPanel{
	display: none;
}

.tabPanel.active {
	display: block;
}

/*----------------------------------------------
もっと見る系コンテンツ
-----------------------------------------------*/
.expandContents{
	overflow: hidden;
	transition: height 0.3s;
}

.expandContents.is-open {
	height: auto;
}

/*----------------------------------------------
ヘッダー
-----------------------------------------------*/
header{
	width: 100%;
}

.container-header{
	position: fixed;
	top: 0;
	left: 0;
	color: #fff;
	background: var(--primaryColor);
	z-index: 996;
}

@media (min-width: 768px){
	.container-header{
		left: 50%;
		transform: translate(-50%, 0);
	}
}

.headerTitle{
	width: 100%;
	height: 24px;
	line-height: 24px;
	font-size: 1.2rem;
	text-align: center;
	background: var(--secondaryColor);
}

.container-header_inner{
	width: 100%;
	padding: 0 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.container-header_inner .logo{
	display: block;
	max-width: 196px;
	height: 32px; 
	flex-grow: 1; 
	object-fit: contain;
}

.btn-header-login{
	display: block;
	width: 80px;
	height: 36px;
}

.btn-header-mypage{
	display: block;
	width: 80px;
	height: 36px;
}

/*-----------------------------------------------
メニューハンバーガーメニュ
-----------------------------------------------*/
#hamburger {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	cursor: pointer;
	z-index: 10000;
	user-select: none;
	color: #fff;
}

#hamburger .bars {
	position: relative;
	width: 30px;
	height: 2px;
	margin-top: 12px;
}

#hamburger .bars .bar {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: transform 0.5s, opacity 0.5s, top 0.5s;
	transform-origin: center;
}

#hamburger .bar:nth-of-type(1) {
	top: -8px;
}

#hamburger .bar:nth-of-type(2) {
	top: 0;
}

#hamburger .bar:nth-of-type(3) {
	top: 8px;
}

#hamburger.is-active .bar:nth-of-type(1) {
	transform: rotate(45deg);
	top: 0;
}

#hamburger.is-active .bar:nth-of-type(2) {
	opacity: 0;
}

#hamburger.is-active .bar:nth-of-type(3) {
	transform: rotate(-45deg);
	top: 0;
}

#hamburger .menuLabel{
	color: #fff;
}

/*-----------------------------------------------
メイン
-----------------------------------------------*/
.container-main{
	padding-top: 80px;
	min-height: 100vh;
	background: var(--mainBgColor);
}

/*-----------------------------------------------
ナビゲーション
-----------------------------------------------*/
@media (min-width: 768px){
	.pcNaviHider{
		position: fixed;
		top: 0;
		left: 0;
		width: calc((100vw - 474px)/2);
		height: 100vh;
		background: rgba(255,255,255,1);
		z-index: 999;
	}
}

#navi{
	position: fixed;
	top: 80px; 
	left: 0;
	z-index: 998;
	width: 300px;
	height: calc(100vh - 80px);
	padding-bottom:80px;
	background:#fff;
	transform: translateX(-100%);
	transition: transform 0.3s ease-in-out;
	overflow-y:scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

#navi.is-open {
	transform: translateX(0);
}

@media (min-width: 768px) {
	#navi{
		height: 100vh;
	}

	#navi.is-open {
		left: calc(50% - 230px);
	}
}

#navi::-webkit-scrollbar {
	display:none;/* Chrome, Safari 対応 */
}

#navi .bannerLink{
	display: block;
	padding: 16px;
}

#navi .banner-campaign{
	box-shadow: 0 0 8px #9c9c9c;
}

.naviGroupTitle{
	padding: 8px;
	font-size: 1.6rem;
	color: #fff;
	background: linear-gradient(var(--gradientColor));
	font-family: var(--mincho);
}

.naviList_item{
	width: 100%;
}

.naviList_item_link{
	display: block;
	padding: 12px;
	font-weight: bold;
	color: #595457;
}

.naviList_item:not(:last-child) .naviList_item_link{
	border-bottom: 1px dashed #8b888a;
}

.naviList_item_link.link-rightArrow:after{
	right: 16px;
	border-color: #d372be;
}

/*コンテンツ配置用*/
.contentsWrapper{
	padding: 8px 16px 24px;
}

/*-----------------------------------------------
モーダルウィンドウ
-----------------------------------------------*/
#modal{
	/* display: none; */
}

#modalwindow{
	position: fixed;
	top:0; 
	left:0; 
	width:100%; 
	height:100%;
	height:100vh;
	background:rgba(0,0,0,.75);
	z-index: 9998;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin: 0 auto;
}

#close{
	cursor: pointer;
}

#modal.forNotification .modalwindowContents{
	width: 90%;
	max-width: 480px;
	max-height: 80vh;
	overflow-y: scroll;
	margin: 0 auto;
	padding: 16px;
	background:#fff;
	border-radius: 8px;
	position: relative;
	-ms-overflow-style: none;/*スクロールバー非表示（IE・Edge）*/
	scrollbar-width: none; /*スクロールバー非表示（Firefox）*/
}

/*スクロールバー非表示（Chrome・Safari）*/
#modal.forNotification .modalwindowContents::-webkit-scrollbar{
	display:none;
}

#modal.forNotification .modalwindowContents .contentsTitle{
	margin-bottom: 0;
	color: #00c134;
	font-family: var(--gothic);
	background: none;
}

#modal.forNotification .modalwindowContents .btn-line{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 60%;
	font-weight: bold;
	color: #fff;
	background: #00b900;
	border: 2px solid #00c134;
}

#modal.forNotification .modalwindowContents .icon-crossmark{
	position: absolute;
	right: 4px;
	top: 4px;
	width: 32px;
	height: 32px;
	background-color: #d4d3d4;
}

/*-----------------------------------------------
入力フォーム
-----------------------------------------------*/
.formBox{
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 16px;
	background: #fff;
	border-radius: 16px;
	font-family: var(--gothic);
}

.formBox_item_title{
	border: none;
}

.formBox-confirm .formBox_item_title{
	border-bottom: 1px solid #e5e5e5;
}

.msg{
	margin: 16px auto;
	padding: 16px;
	font-weight: bold;
	text-align: center;
	color: #343a40;
	background: #fafafa;
	border-radius: 8px;
}

.msg-confirm{
	background: #edffe8;
}

.msg-completed{
	background: #edf7fd;
}

.msg-error{
	margin: 16px auto;
	padding: 8px;
	font-weight: bold;
	font-family: var(--gothic);
	background: #db312b;
	border-radius: 8px;
}

.msg-error_text{
	color: #fff;
}

/*トグルボタン*/
.toggleButton {
	width: 48px;
	height: 24px;
	background: #ccc;
	position: relative;
	display: inline-block;
	border-radius: 40px;
	transition: 0.4s;
	box-sizing: border-box;
}

.toggleButton:after {
	content: "";
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 100%;
	left: 0;
	top: 0;
	z-index: 2;
	background: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	transition: 0.4s;
}

.toggle_input:checked + .toggleButton {
	background-color: #4BD865;
}

.toggle_input:checked + .toggleButton:after {
	left: 24px;
}

/*-----------------------------------------------
登録方法選択
-----------------------------------------------*/
.accountSelectBtnsWrapper .title{
	text-align: center;
	font-weight: bold;
	font-size: 2.1rem;
	color: #af7c96;
	font-family: var(--gothic);
}

.accountSelectBtnsWrapper .btn{
	text-align: center;
	position: relative;
}

.accountSelectBtnsWrapper .btn .icon{
	position: absolute;
	top: calc(50% - 16px);
	left: 32px;
}

.accountSelectBtnsWrapper .btn.btn-login{
	text-align: center;
	color: #af7c96;
	background: linear-gradient(#fff,#fceaff);
	border-color: #d1b6c4;
}

/*-----------------------------------------------
新規登録
-----------------------------------------------*/
/*女性選択色*/
input[type="radio"]#female:checked + .altRadioBtn{
	background-color: #ff80ab;
}

/*男性選択色*/
input[type="radio"]#male:checked + .altRadioBtn{
	background-color: #80a7ff;
}

/*-----------------------------------------------
占い師検索フォーム
-----------------------------------------------*/
.searchForm{
	width: 90%;
	margin: 0 auto;
	padding: 16px 0 8px;
}

.searchForm .btn{
	width: 80%;
}

.searchForm_inner{
	position: relative;
}

.searchForm_item{
	display: flex;
	width: 100%;
	background: #fff;
	border: 1px solid #e694d5;
	border-radius: 5px;
	overflow: hidden;
}

.searchForm_item .inputFortunetellerNameWrapper{
	position: relative;
	display: flex;
	align-items: center;
	flex: 1;
	padding: 0 4px 0 8px;
}

.searchForm_item .inputFortunetellerNameWrapper::before{
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background: url(../img/svg-search.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

.searchForm_item .inputFortunetellerNameWrapper input[name="SFN"]{
	display: block;
	border-radius: 0;
	background: none;
	border: none;
}

.searchForm_item .inputFortunetellerNameWrapper input[name="SFN"]:focus {
	outline: none;
	border: none;
}

.searchForm_item .btn-settingCondition{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30%;
	font-size: 1.3rem;
	border-left: 1px dotted #e694d5;
}

.searchForm_item .btn-settingCondition::after{
	content: "";
	width: 12px;
	height: 8px;
	margin-left: 4px;
	background: #7a7679;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.settingConditionWapper{
	display: none;
	position: absolute;
	right: 1px;
	width: 90%;
	padding: 8px;
	background: rgb(255, 255, 255,.9);
	border: 1px solid #f1d2eb;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	z-index: 100;
}

.conditionItemWrapper{
	display: flex;
	flex-wrap: wrap;
}

.settingCondition_items_title{
	font-weight: bold;
	color: #ec8dd7;
}

.condition_item{
	min-width: 30%;
	margin:8px 2% 4px 0;
}

.btn-condition{
	display: block;
	padding: .5rem;
	text-align: center;
	color: #ec8dd7;
	background: #fff;
	border:1px solid #ec8dd7;
	border-radius: 128px;
}

.condition_item input[type="checkbox"]{
	display: none;
}

.condition_item input[type="checkbox"]:checked + .btn-condition {
	color: #fff;
	background: #ec8dd7;
	border-color: #ec8dd7;
}
/*-----------------------------------------------
占い師募集バナー
-----------------------------------------------*/
.bannerWrapper{
	position: relative;
	margin-top: 16px;
	margin-left: -16px;
	margin-right: -16px;
}

.btn-viewRecruitDetails{
	display: block;
	position: absolute;
	left: 8px;
	bottom: 8px;
	width: 65%;
}

/*-----------------------------------------------
サポート情報
-----------------------------------------------*/
.area-siteSupport{
	position: sticky;
	top: 100%;
	padding: 24px 16px 0 16px;
	text-align: center;
	color: #fff;
	background: var(--primaryColor);
}

.supportTime{
	margin: 24px 0;
	font-family: var(--gothic);
	color: #fff;
}

.mailContactLink{
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 320px;
	margin: 24px auto;
	font-weight: bold;
	font-size: 1.6rem;
	color: #fff;
	cursor: pointer;
}

.mailContactLink .icon{
	margin-right: 13px;
}

/* 登録/ログイン */
.entryBtnsWrapper{
	display: flex;
	justify-content: space-between;
	margin: 24px auto;
	gap: 8px;
}

.entryBtnsWrapper .btn{
	margin: 0;
	padding: 0;
	background: none;
	border: none;
}

/*サポートメニュー*/
.supportMenuList{
	display: flex;
	flex-wrap: wrap;
	margin-left: -16px;
	margin-right: -16px;
	background: var(--mainBgColor);
}

.supportMenuList_item{
	width: 50%;
	border-bottom: 1px dotted #8b888a;
}

.supportMenuList_item:nth-child(11){
	border-bottom: none;
}

.supportMenuList_item:nth-child(even){
	border-left: 1px dotted #8b888a;
}

.supportMenuList_item_link{
	padding: 12px 12px 12px 32px;
	text-align: left;
	font-size: 1.4rem;
}

.supportMenuList_item_link.link-leftArrow:after{
	left: 16px;
	border-color: #d372be;
}

.copyright{
	color: #fff;
	font-family: var(--gothic);
}

/*-----------------------------------------------
汎用レイアウト
-----------------------------------------------*/
.fullWidthLayout{
	margin-left: -16px;
	margin-right: -16px;
}

/* カード型 */
.card{
	display: flex;
	flex-wrap: wrap;
}

.card_item{
	width: 48%;
	margin:0 1% 8px;
}

.card_item .tmb{
	display: block;
	margin-bottom: 8px;
}

/*水平スクロール*/
.scrollable-horizontal{
	padding-bottom: 16px;
	overflow-x: scroll;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
}

.scrollable-horizontal::-webkit-scrollbar {
	height: 8px;
	border-radius: 8px;
	background: #ebe9ea;
}

.scrollable-horizontal::-webkit-scrollbar-thumb {
	background: #aca4aa;
	border-radius: 8px;
}

/*アイキャッチ*/
.eyeCatchWrapper{
	display: grid;
	align-content: center;
	aspect-ratio: 3 / 1;
	overflow: hidden;
	margin-bottom: 24px;
}

.eyeCatch{
	width: 100%;
	object-fit: cover;
}

/*-----------------------------------------------
占い師一覧共通
-----------------------------------------------*/
.fortunetellerList{
	display: flex;
	flex-wrap: wrap;
	margin-left: -16px;
	margin-right: -16px;
}

.fortunetellerList_item{
	margin:0 1% 16px;
}

.fortunetellerList_item .btn{
	margin-top: 4%;
}

/*-----------------------------------------------
占い師基本情報
-----------------------------------------------*/
.fortunetellerProfile{
	display: flex;
	flex-direction: column;
	width: 100%;
	font-weight: bold;
	user-select: none;
	color: #af7c96;
}

/*写真*/
.fortunetellerProfile .picWrapper{
	position: relative;
	aspect-ratio: 1 / 1;
}

.fortunetellerProfile .picWrapper::before{
	content: "";
	display: block;
	aspect-ratio: 1 / 1;
	background: url(../img/picFrame.png);
	background-size: cover;
	position: relative;
	z-index: 1;
}

.fortunetellerProfile .pic{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 10%);
	aspect-ratio: 1 / 1;
	width: 84%;
	margin: 0 auto;
	object-fit: cover;
	border-radius: 50%;
}

.fortunetellerProfile .readingType{
	width: 90%;
	margin: 8px auto;
	padding: .25rem 0;
	text-align: center;
	color: #fff;
	background: #af7c96;
	border-radius: 128px;
}

/*ルビ*/
.fortunetellerProfile .rubi{
	width: 100%;
	font-size: 1rem;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	color: #af7c96;
}

/*名前*/
.fortunetellerProfile .name{
	display: inline-block;
	width: auto;
	color: #af7c96;
	text-align: center;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.fortunetellerProfile .name span{
	font-size: 1.2rem;
}

/*料金*/
.fortunetellerProfile .price{
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	color: #af7c96;
	gap:4px;
}

.fortunetellerProfile .price .icon{
	width: 16px;
	height: 16px;
	background-color: #e3a7d6;
}

/*口コミリンク*/
.fortunetellerProfile .reviewLink{
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	gap:4px;
	color: #af7c96;
}

.fortunetellerProfile .reviewLink .icon{
	width: 16px;
	height: 16px;
	background-color: #e3a7d6;
}

/*占術・得意*/
.fortunetellerProfile .sex,
.fortunetellerProfile .career,
.fortunetellerProfile .method,
.fortunetellerProfile .strong{
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	padding: 0 8px;
	color: #af7c96;
}

/*その他テキスト*/
.fortunetellerProfile .text{
	color: #af7c96;
}

/*占い師情報　水平配置*/
.fortunetellerProfile-horizontal{
	flex-direction: row;
	justify-content: center;
	gap: 5%;
}

.fortunetellerProfile-horizontal .picWrapper{
	width: 30%;
}

.fortunetellerProfile-horizontal .fortunetellerProfile_items{
	width: 60%;
}

.fortunetellerProfile_items .nameWrapper{
	padding-left: 8px;
	border-left: 2px solid #af7c96;
}

.fortunetellerProfile_items .nameWrapper .rubi{
	font-size: 1.2rem;
}

.fortunetellerProfile_items .nameWrapper .name{
	font-size: 2.1rem;
}

.fortunetellerProfile_items .nameWrapper .rubi,
.fortunetellerProfile_items .nameWrapper .name{
	text-align: left;
}

/*-----------------------------------------------
各ページ内の占い師表示
-----------------------------------------------*/
/*横幅フル*/
.fullWidthFortuneteller{
	margin-left: -16px;
	margin-right: -16px;
	padding:16px;
	background: #fff;
}

.fullWidthFortuneteller .fortunetellerProfile .price,
.fullWidthFortuneteller .fortunetellerProfile .reviewLink{
	justify-content:flex-start;
}

.fullWidthFortuneteller .fortunetellerProfile .method, 
.fullWidthFortuneteller .fortunetellerProfile .strong{
	padding: 0;
}

.fullWidthFortuneteller .btn.status{
	width: 90%;
	margin-top: 16px;
	font-size: 2rem;
}

/*ボーダー付き*/
.inPageRecomentedFortunetellerList_item{
	padding: 16px;
	background: #fff;
	border: 1px solid #a7a4a6;
	border-radius: 12px;
	overflow: hidden;
}

.inPageRecomentedFortunetellerList_item:not(:last-child){
	margin-bottom: 24px;
}

.inPageRecomentedFortunetellerList_item .fortunetellerProfile .price,
.inPageRecomentedFortunetellerList_item .fortunetellerProfile .reviewLink{
	justify-content:flex-start;
}

.inPageRecomentedFortunetellerList_item .status{
	margin-top: 16px;
	font-size: 2rem;
}

/*-----------------------------------------------
TOP
-----------------------------------------------*/
.mainVisual{
	position: relative;
	margin-bottom: 32px;
}

.btnRegistLargenWrapper{
	position: absolute;
	width: 100%;
	top: 100%;
	left: 50%;
	transform: translate(-50%, -60%);
}

/*スライドアップ*/
.slineUpContents{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	transform: translateY(100%);
	transition: transform 0.5s ease;
	z-index: 200;
}

.slineUpContents.is-show {
	transform: translateY(0);
}

.slineUpContents .container{
	padding: 32px 0 16px 0;
	background: rgba(0,0,0,.5);
}

.slineUpContents .btn{
	margin: 0 auto;
}

/*はじめての方におすすめ*/
.fortunetellerList-forBeginner .fortunetellerList_item{
	width: 31%;
}

/*待機中のおすすめ占い師*/
.fortunetellerList-waiting .fortunetellerList_item{
	width: 31%;
}

/*ご利用者様の喜びの声（口コミ）*/
.userVoiceList-topPage{
	display: flex;
	width: max-content;
}

.userVoiceList-topPage .userVoiceList_item{
	width: 340px;
	background: #fff;
	border: 1px solid #a7a4a6;
	border-radius: 12px;
	scroll-snap-align: start;
}

.userVoiceList-topPage .userVoiceList_item:not(:first-child){
	margin-left: 16px;
}

.userVoiceList-topPage .fortunetellerProfile{
	padding: 16px;
	border-bottom: 1px dashed #d68ab0;
}

.userVoiceList-topPage .userVoiceWrapper{
	padding: 16px;
	color: #af7c96;
}

.userVoiceList-topPage .userVoiceHeader{
	display: flex;
	gap: 16px;
}

.userVoiceList-topPage .userVoiceText{
	padding: 8px 0;
}

.userVoiceList-topPage .fortunetellerProfile_items .status{
	margin: 8px 0 0;
	width: 80%;
}

.userVoiceList-topPage .userVoiceWrapper .btn-viewMoreVoice{
	font-size:1.2rem;
	color: #ca55b1;
	background: #fff;
	border: 1px solid #edc4e4;
	border-radius: 6px;
	box-shadow: 0 2px 4px #ebebeb;
}

.userVoiceList-topPage .userVoiceWrapper .btn-arrowRight::after{
	border-color: #ca55b1;
}

/* 鑑定料別占い師 */
.byPriceList_item{
	padding: 16px 0;
}

.byPriceList_item:not(:last-child){
	border-bottom: 1px dashed #d68ab0;
}

.byPriceList_item .fortunetellerProfile .price{
	justify-content: flex-start;
	padding-left: 8px;
	margin-bottom: 8px;
}

.byPriceList_item .fortunetellerProfile_items .btn{
	margin: 0;
	width: 60%;
}

/*占い師一覧*/
.fortunetellerList-inHouse .fortunetellerList_item{
	width: 48%;
}

.fortunetellerList-inHouse .fortunetellerList_item .rubi{
	font-size: 1.4rem;
}

.fortunetellerList-inHouse .fortunetellerList_item .name{
	font-size: 2.2rem;
	line-height: 1.25;
}

.fortunetellerList-inHouse .fortunetellerList_item .price,
.fortunetellerList-inHouse .fortunetellerList_item .reviewLink{
	font-size: 1.8rem;
	line-height: 1.25;
}

.fortunetellerList-inHouse .fortunetellerProfile .btn{
	width: 90%;
}

/*相談内容別おすすめ占い師*/
.byTypeList{
	display: flex;
	flex-wrap: wrap;
}

.byTypeList_item{
	width: 31%;
	margin:0 1% 8px;
}

.byTypeList_item .tmb{
	display: block;
	margin-bottom: 8px;
}

.byTypeList_item .typeName{
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	color: #af7c96;
}

/*占術別おすすめ占い師一覧*/
.byMethodFortunetellerWrapper{
	display: flex;
	width: max-content;
}

.byMethodFortunetellerListWrapper{
	width: 340px;
	padding: 4px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 2px 2px 8px #e4e4e4;
	scroll-snap-align: start;
	overflow: hidden;
}

.byMethodFortunetellerListWrapper:not(:first-child){
	margin-left: 16px;
}

.byMethodFortunetellerListWrapper .title{
	margin-top: -4px;
	margin-left:-4px;
	margin-right: -4px;
	padding: 8px;
	font-size: 1.6rem;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 4px #5b1fa3;
	background: url(../img/bg-fortunetellerList-methodTtitle.jpg);
	background-size: 120%;
	background-position: center 35%;
	background-repeat: no-repeat;
}

.byMethodFortunetellerList_item{
	padding: 16px 0;
}

.byMethodFortunetellerList_item:not(:last-child){
	border-bottom: 1px dashed #d68ab0;
}

.byMethodFortunetellerList_item .fortunetellerProfile{
	padding: 8px;
}

.byMethodFortunetellerList_item .fortunetellerProfile .picWrapper{
	width: 35%;
}

.byMethodFortunetellerList_item .fortunetellerProfile .price {
	justify-content: flex-start;
	padding-left: 8px;
	margin-bottom: 4px;
}

.byMethodFortunetellerList_item .fortunetellerProfile .status {
	margin: 0;
	width: 60%;
}

/* 占術紹介（占術一覧画面共通） */
.methodList_item{
	width: 48%;
	padding: 4px;
}

.methodList_item .methodName{
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	color: #af7c96;
}

/* メディア出演情報 （メディア出演情報一覧画面共通）*/
.mediaList_item{
	padding: 8px 0;
	border-bottom: 1px dashed #9a9398;
}

.mediaList_item:last-child{
	border-bottom: none;
}

.mediaList_item .bannerLink{
	display: block;
	margin: 8px auto 0;
}

.mediaItemHeader{
	display: flex;
	align-items: center;
	gap: 16px;
}

.category{
	padding: .1rem .5em;
	font-size: 1.3rem;
	font-weight: bold;
	color: #595457;
}

.category.tv{
	background: #c5ddec;
}

.category.youtube{
	background: #edbec4;
}

.category.other{
	background: #c5ceec;
}

/* お知らせ一覧（お知らせ一覧画面共通） */
.informationList_item{
	padding: 8px 0;
	border-bottom: 1px dashed #9a9398;
}

.informationList_item:last-child{
	border-bottom: none;
}

.infomationItemHeader{
	display: flex;
	align-items: center;
	gap:8px;
}

.infomationItemHeader .new{
	font-size: 1.8rem;
	color: #ff1d1d;
	font-weight: bold;
}

.infomationTitle{
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

/*おすすめコラム*/
.recommendedColumnWrapper{
	padding: 8px 0;
}

.recommendedColumnCategoryTtitle{
	margin-bottom: 8px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #af7c96;
}

.recommendedColumnList_item{
	padding: 8px 0;
	border-bottom: 1px dashed #9a9398;
}

.recommendedColumnList_item:last-child{
	border-bottom: none;
}

.recommendedColumnList_item .eyecatch{
	width: 48px;
	height: 48px;
	margin-right: 8px;
	object-fit: cover;
	border-radius: 8px;
}

.recommendedColumnTitleWrapper .date{
	font-size: 1.4rem;
}

.recommendedColumnTitleWrapper .recommendedColumnTitle{
	font-size: 1.4rem;
}

/* よくある質問 */
.topPageFaqList_item{
	width: 100%;
	padding: 24px;
	font-weight: 600;
	background: #fff;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
}

.topPageFaqList_item:not(:last-child){
	margin-bottom: 24px;
}

.topPageFaqList_item_inner{
	display: flex;
	gap: 8px;
}

.topPageFaqList_item_inner:first-child{
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom:  1px dashed #878385;
}

.topPageFaqList_item_inner .icon{
	display: block;
	width: 24px;
	height: 24px;
	background-size: cover;
	background-color: unset;
}

.topPageFaqList_item_inner .question_text{
	font-size: 1.6rem;
	font-weight: bold;
}

.topPageFaqList_item_inner .answer_text{
	width: calc(100% - 32px);
	font-size: 1.4rem;
	letter-spacing: -0.04em;
}

/*-----------------------------------------------
在籍占い師一覧
-----------------------------------------------*/
.inHouseFortunetellerList_item{
	padding: 16px;
	background: #fff;
	border: 1px solid #a7a4a6;
	border-radius: 12px;
	overflow: hidden;
}

.inHouseFortunetellerList_item:not(:last-child){
	margin-bottom: 24px;
}

.inHouseFortunetellerList_item .catchCopy{
	margin-top: -16px;
	margin-left: -16px;
	margin-right: -16px;
	margin-bottom: 16px;
	padding: 8px;
	color: #fff;
	background: #ec8dd7;
}

.inHouseFortunetellerList_item .fortunetellerProfile_items-primary{
	width: 40%;
}

.inHouseFortunetellerList_item .fortunetellerProfile-horizontal .picWrapper{
	width: 100%;
}

.inHouseFortunetellerList_item .fortunetellerProfile .price,
.inHouseFortunetellerList_item .fortunetellerProfile .reviewLink{
	justify-content:flex-start;
}

.inHouseFortunetellerList_item .fortunetellerProfile .method, 
.inHouseFortunetellerList_item .fortunetellerProfile .strong{
	padding: 0;
}

.inHouseFortunetellerList_item .status{
	margin-top: 16px;
	font-size: 2rem;
}

/*-----------------------------------------------
相談内容別占い師一覧
-----------------------------------------------*/
.typeFortunetellerList_item{
	padding: 16px;
	background: #fff;
	border: 1px solid #a7a4a6;
	border-radius: 12px;
	overflow: hidden;
}

.typeFortunetellerList_item:not(:last-child){
	margin-bottom: 24px;
}

.typeFortunetellerList_item .catchCopy{
	margin-top: -16px;
	margin-left: -16px;
	margin-right: -16px;
	margin-bottom: 16px;
	padding: 8px;
	color: #fff;
	background: #ec8dd7;
}

.typeFortunetellerList_item .fortunetellerProfile-horizontal .picWrapper{
	width: 40%;
}

.typeFortunetellerList_item .fortunetellerProfile .price,
.typeFortunetellerList_item .fortunetellerProfile .reviewLink{
	justify-content:flex-start;
}

.typeFortunetellerList_item .fortunetellerProfile .method, 
.typeFortunetellerList_item .fortunetellerProfile .strong{
	padding: 0;
}

.typeFortunetellerList_item .status{
	margin-top: 16px;
	font-size: 2rem;
}

/*-----------------------------------------------
占術一覧
-----------------------------------------------*/
.methodListTtitle{
	margin-bottom: 16px;
	text-align: center;
	font-weight: bold;
	font-size: 2.4rem;
	color: #af7c96;
	font-family: var(--gothic);
}

.methodDescription {
	height: 400px;
}

/*-----------------------------------------------
占い師詳細
-----------------------------------------------*/
.profileDetailsPage .fullWidthFortuneteller{
	margin: 0;
	padding: 16px 16px 24px;
	background: #ffffff;
}

.profileDetailsPage .fullWidthFortuneteller .fortunetellerProfile_items-primary{
	width: 40%;
}

.profileDetailsPage .fullWidthFortuneteller .fortunetellerProfile-horizontal{
	align-items: center;
}

.profileDetailsPage .fullWidthFortuneteller .fortunetellerProfile-horizontal .picWrapper{
	width: 100%;
}

.profileDetailsPage .subMenuBtns{
	margin: 16px auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	border: 1px solid #ec8dd7;
	border-radius: 5px;
	overflow: hidden;
}

.profileDetailsPage .subMenuBtns .btn-subMenu{
	display: grid;
	place-items: center;
	gap: 4px;
	width: 100%;
	padding: 8px 0;
	font-size: 1.2rem;
    font-weight: bold;
    color:#ec8dd7;
    background: #fff;
	font-family: var(--gothic);
	
}

.profileDetailsPage .btn-subMenu .icon{
	width: 24px;
	height: 24px;
	margin-bottom: 4px;
	background-color: #ec8dd7;
}

.profileDetailsPage .subMenuBtns .btn-subMenu:not(:last-child){
	position: relative;
}

.profileDetailsPage .subMenuBtns .btn-subMenu:not(:last-child)::before{
	content: "";
	position: absolute;
	top: 10%;
	right: 0;
	width: 1px;
	height: 80%;
	background: #fad0f1;
}

.profileDetailsPage .btn-inPage{
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 1.5rem;
	color: #595457;
	background: #efefef;
	background: linear-gradient(#efefef, #ffffff);
	border: 1px solid #a6a3a5;
	border-radius: 5px;
	font-family: var(--gothic);
}

.profileDetailsPage .btn-inPage::after{
	border-color: #595457;
}

.profileDetailsPage .btn-inPage .icon{
	width: 18px;
	height: 18px;
}

.profileDetailsPage .btn .statu_inner{
	padding: 1.5rem;
}

.introduceWrapper,
.messageWrapper{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 7;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.3s ease;
	line-height: 1.6;
}

.introduceWrapper.is-open,
.messageWrapper.is-open {
	-webkit-line-clamp: unset;
}

/*スケジュール表*/
.scheduleTableWrappwer{
	width: 100%;
	height: 350px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.scheduleTable{
	width: max-content;
	table-layout: fixed;
	font-family: var(--gothic);
	font-size: 1.3rem;
	background: #fff;
	border-collapse: collapse;
}

.scheduleTable th,
.scheduleTable td {
	border: 1px solid #ddd;
	width: 40px;
	height: 40px;
	text-align: center;
	vertical-align: middle;
}

/* 左上（空白） */
.scheduleTable th.corner {
	position: sticky;
	top: 0;
	left: 0;
	background: #f9f9f9;
	z-index: 30;
}

/* 時間軸（横スクロール） */
.scheduleTable th.sticky-top {
	position: sticky;
	top: 0;
	background: #f9f9f9;
	z-index: 20;
}

/* 日付列（縦スクロール） */
.scheduleTable th.sticky-left {
	position: sticky;
	left: 0;
	width: 90px;
	background: #f9f9f9;
	z-index: 10;
}

/*スケジュールあり*/
.scheduleTable .has-schedule{
	display: block;
	width: 100%;
	height: inherit;
	background: #c88bd5;
}

/*-----------------------------------------------
アンケート
-----------------------------------------------*/
.formBox-survey .altCheckBoxWrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-left: 2px;
}

.formBox-survey .methods .altCheckBox{
	width: 50%;
	max-width: 420px;
	margin: 8px 0 8px;
	padding-left: 22px;
	text-align: left;
}

/*-----------------------------------------------
マイページ
-----------------------------------------------*/
/*マイページメニュー*/
.myPageMenuListWrapper{
	padding:16px 0;
}

.myPageMenuList{
	display: flex;
	justify-content: space-evenly;
}

.myPageMenuList_item{
	width: 48%;
}

.myPageMenuList_item_link{
	display: flex;
	align-items: center;
	margin: 0 auto;
	font-size: 1.5rem;
}

.myPageMenuList_item_link .icon{
	width: 24px;
	height: 24px;
	margin-right: 8px;
}

/*登録情報*/
.userDataListWrapper{
	padding-bottom:16px;
}

.userDataList_item{
	display: flex;
	padding: 1rem;
	border-bottom: 1px solid #e5e5e5;
	font-family: var(--gothic);
}

.userDataList_item_headline{
	width: 40%;
	font-size: 1.2rem;
	color: #888;
}

.userDataList_item_detail{
	width: 60%;
}

/*登録情報編集*/
.editMenuList_item{
	padding: 1rem;
	border-bottom: 1px solid #e5e5e5;
	font-family: var(--gothic);
}

.editMenuList_item_link{
	display: flex;
	align-items: center;
}

.editMenuList_item_link .icon{
	width: 24px;
	height: 24px;
	margin-right: 8px;
}

/*-----------------------------------------------
メールアドレス変更
-----------------------------------------------*/


/*-----------------------------------------------
電話鑑定履歴
-----------------------------------------------*/
.historyTable{
	width: 100%;
	table-layout: fixed;
	background: #fff;
	border: 1px solid #e5e5e5;
	font-family: var(--gothic);
}

.historyTable th,
.historyTable td{
	padding: 0 2px;
	height: 56px;
	font-size: 1.3rem;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #e5e5e5;
}

.historyTable .time{
	width: 30%;
}


.historyTable thead{
	background: #f4f4f4;
}

.historyTable .name{
	font-size: 1.3rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.historyTable span{
	font-size: 1.1rem;
}

.historyTable .btn-cancel{
	display: block;
	margin: 0 auto;
	padding: 4px;
	border-radius: 4px;
	color: #fff;
	background: #7d8397;
}

/*-----------------------------------------------
ポイント購入ページ
-----------------------------------------------*/

/*-----------------------------------------------
銀行振込
-----------------------------------------------*/
.price_table,
.point_table{
	width: 100%;
	margin: 16px auto;
	background: #fff;
	font-family: var(--gothic);
}

.price_table th,
.point_table th{
	padding: .2em;
	font-size: 1.5rem;
	text-align: center;
	border: 1px solid #d0d0d0;
	font-weight: lighter;
	background: #fbf8ec;
}

.price_table td,
.point_table td {
	padding: .2em;
	font-size: 1.4rem;
	text-align: center;
	border: 1px solid #d0d0d0;
	font-weight: lighter;
}

.point_table td span{
	color: #f00;
	font-weight: bold;
}

/*-----------------------------------------------
キャンペーン一覧
-----------------------------------------------*/
.campaignList_item{
	padding: 16px;
	background: #fff;
	border: 1px solid #a7a4a6;
	border-radius: 12px;
	font-family: var(--gothic);
}

.campaignList_item:not(:last-child){
	margin-bottom: 24px;
}

.campainTitle{
	padding: 8px 0;
	font-size: 1.6rem;
	font-weight: bold;
}

.campaignText{
	font-size: 1.2rem;
}

/*-----------------------------------------------
インタビュー一覧
-----------------------------------------------*/
.interviewList{
	margin-left: -16px;
	margin-right: -16px;
	background: #fff;
}

.interviewList_item{
	padding: 16px;
}

.interviewList_item:not(:last-child){
	border-bottom: 1px dashed #d68ab0;
}

.interviewList_item .fortunetellerProfile-horizontal{
	justify-content: flex-start;
}

.interviewList_item .link-rightArrow::after{
	right: 4px;
}

/*-----------------------------------------------
コラム一覧
-----------------------------------------------*/
/* 相談別カテゴリ */
.categoryListWrapper .title{
	margin-bottom: 16px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #af7c96;
	font-family: var(--gothic);
}

.categoryList{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 32px;
	gap: 8px;
}

.categoryList_item_link{
	padding: .25rem;
	font-size: 1.4rem;
	color: #595457;
	border: 1px solid #595457;
}

.categoryList_item_link.is-active{
	color: #fff;
	background: #af7c96;
	border:none;
}

.columnList_item{
	background: #fff;
	border: 1px solid #a7a4a6;
	border-radius: 8px;
	overflow: hidden;
}

.columnList_item:not(:last-child){
	margin-bottom: 24px;
}

.columnList_item_inner{
	padding: 16px;
}

.columnTitle,.columnText{
	font-family: var(--gothic);
}

.columnTitle{
	margin-bottom: 8px;
	font-size: 1.6rem;
	font-weight: bold;
}

.columnText{
	font-size: 1.2rem;
}

.postDate{
	margin-top: 4px;
	text-align: right;
}

/*-----------------------------------------------
よくある質問
-----------------------------------------------*/
.faqWrapper{
	padding: 16px 0;
}

.faqList{
	background: #fff;
	border: 1px solid #f3c9e2;
	border-radius: 8px;
	overflow: hidden;
}

.faqList_item:not(:last-child){
	border-bottom: 1px solid #f3c9e2;
}

.faqList_item .icon{
	content: "";
	display: block;
	margin-top: 4px;
	width: 16px;
	height: 16px;
	background-size: cover;
	background-color: unset;
}

.faqList_item .question{
	display: flex;
	padding: 16px;
	gap: 8px;
	font-weight: 600;
	position: relative;
}

.faqList_item .question::after{
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background-image: url(../img/svg-plus.svg);
	background-size: cover;
}

.faqList_item .question.is-open{
	background: #fdeaff;
}

.faqList_item .question.is-open::after{
	background-image: url(../img/svg-minus.svg);
}

.faqList_item .question_text{
	width: calc(100% - 48px);
	font-size: 1.4rem;
	font-weight: bold;
	cursor: pointer;
}

.faqList_item .answer{
	display: none;
	border-top: 1px solid #f3c9e2;
	cursor: pointer;
}

.faqList_item .answer_inner{
	display: flex;
	align-items: flex-start;
	padding: 16px;
	gap: 8px;
	font-weight: 600;
	position: relative;
}

.faqList_item .answer_text{
	width: calc(100% - 48px);
	font-size: 1.4rem;
	letter-spacing: -0.04em; 
}

/*-----------------------------------------------
料金システム
-----------------------------------------------*/
.aboutPrice .btn-regist-large{
	margin-bottom: 32px;
	font-size: 2rem;
	font-weight: bold;
}

.priceDescription{
	display:flex;
	align-items: center;
	gap:8px;
	padding: 8px 0 0;
}

.priceDescription .icon{
	width: 32px;
	height: 32px;
	background-color: #e3a7d6;
}

.priceDescription .price{
	font-size: 2.8rem;
	font-weight: bold;
	color: #af7c96;
}

.priceDetails .btn-regist-large::after{
	right: 8%;
}

.purchaseMethodDescription{
	padding: 8px 16px;
	background: #fdeaff;
	border-radius: 5px;
}

.purchaseMethodName{
	margin-bottom: 16px;
	color: #af7c96;
	font-size: 1.8rem;
	font-weight: bold;
	font-family: var(--gothic);
}

.bankAccountTableHeadline{
	padding: .25em;
	text-align: center;
	font-family: var(--gothic);
	color: #fff;
	background: #bb8da6;
}

.bankAccountTable{
	width: 100%;
	margin-bottom: 8px;
	table-layout: fixed;
	font-family: var(--gothic);
	font-size: 1.3rem;
	background: #fff;
}

.bankAccountTable th,
.bankAccountTable td{
	padding: .25em .75em;
	font-weight: normal;
}

.bankAccountTable tbody tr{
	border-bottom: 2px solid #fdeaff;
}

.bankAccountTable tbody th{
	width: 25%;
	background: #efb9d6;
}

.bankAccountTable tbody td{
	width: 75%;
}

/*-----------------------------------------------
問い合わせフォーム
-----------------------------------------------*/
.btn-cancelUpload{
	display: none;
}

.fileUploadArea.is-hasFile .btn-cancelUpload{
	display: flex;
	align-items: center;
	gap:4px;
	width: auto;
	margin-top: 4px;
	font-size: 1.4rem;
}

.btn-cancelUpload .icon{
	width: 16px;
	height: 16px;
}

/*-----------------------------------------------
料金案内
-----------------------------------------------*/
.pricePage h4{
	color: #8675a9;
}

.pricePage .memo{
	background: #fff;
}

.priceSampleBox{
	width: 240px;
	margin: 16px auto 24px;
}

.priceSampleBox_tel,.priceSampleBox_mail{
	padding: 8px;
	border:1px solid #e5e5e5;
}

.priceSampleBox_tel .price-tel,
.priceSampleBox_mail .price-mail{
	padding: 0 2px;
	border:2px solid #ff4f4f;
}

.conviniLogo,
.cardBrandLogo{
	display: block;
	margin: 0 auto;
}

/*-----------------------------------------------
はじめての方へ
-----------------------------------------------*/
.area-beginner .contentsSubTitle{
	text-align: center;
	font-weight: bold;
	padding: 16px 0;
	color: #ca55b1;
}

.area-beginner .btn-regist-large{
	margin-bottom: 32px;
	font-size: 2rem;
	font-weight: bold;
}

.area-beginner .textLink{
	display: inline-block;
	padding-left: 16px;
	color: #c58aa8;
	text-decoration: underline;
	position: relative;
}

.area-beginner .textLink::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 10px solid currentColor; 
}

.aboutServiceTitleWrapper{
	position: relative;
	margin-bottom: 32px;
}

.aboutServiceTitleWrapper .contentsSubTitle{
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
}

/*各種説明用リスト*/
.beginnerList_item{
	padding: 8px 0;
}

.beginnerList_item_inner{
	display: flex;
	gap: 16px;
	margin-bottom: 8px;
}

.beginnerList_item_inner .tmb{
    display: block;
    width: 110px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.beginnerList_item_inner_headline{
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	font-family: var(--mincho);
	color: #ca55b1;
}

.beginnerList_item .text{
	display: flex;
	gap: 4px;
	margin-bottom: 8px;
	font-size: 1.4rem;
	font-weight: 500;
}

.beginnerList_item .text::before{
	content: "?";
}

.aboutService{
	padding-bottom: 32px;
}

.aboutService .contentsTitle{
	padding: 40px 0 24px;
	font-size: 3.2rem;
	color: #ca55b1;
	background: none;
	position: relative;
}

.aboutService .contentsTitle::before{
	content: "";
	display: block;
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 1px;
	background: #bb8da6;
}

.aboutService .contentsTitle span{
	font-size: 4.2rem;
}

.aboutService .beginnerList_item{
	margin-bottom: 8px;
}

.aboutService .beginnerList_item_inner_headline{
	text-align: left;
}

/*-----------------------------------------------
ご利用方法
-----------------------------------------------*/
.usageFlowList_item{
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 16px;
}

.usageFlowList_item .tmb{
	display: block;
	width: 110px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.usageFlowList_item_inner_headline{
	font-size: 1.6rem;
	font-style: italic;
	font-weight: bold;
	color:#ca55b1;
}

.featureList_item{
	margin-bottom: 24px;
	padding: 24px 16px;
	background: #fdeaff;
	border-radius: 5px;
}

.featureList_item_inner{
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 16px;
}

.featureList_item_inner .tmb{
	display: block;
	width: 72px;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.featureList_item_inner_headline{
	font-size: 1.8rem;
	font-weight: bold;
	color:#af7c96;
	font-family: var(--gothic);
}

/*-----------------------------------------------
占い師別ご利用者様の喜びの声（口コミ）
-----------------------------------------------*/
.userVoiceList{
	margin-left: -16px;
	margin-right: -16px;
}

.userVoiceList .userVoiceList_item{
	padding: 0 16px;
	background: #fff;
}

.userVoiceList .userVoiceList_item_inner{
		padding: 8px 0;
}

.userVoiceList .userVoiceList_item:not(:last-child) .userVoiceList_item_inner{
	border-bottom: 1px dotted #e985af;
}

.userVoiceList .fortunetellerName{
	font-weight: bold;
	font-size: 1.8rem;
	color: #af7c96;
}

.userVoiceList .userVoiceHeader{
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
}

.userVoiceList .userVoiceHeader p{
	font-weight: bold;
	color: #af7c96;
}

.userVoiceTextWapper{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2; /* 3行分でカット */
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.3s ease;
	line-height: 1.6;
}

.userVoiceTextWapper.is-open {
	-webkit-line-clamp: unset;
}

.userVoiceList_item_inner .btn-expand{
	margin: 8px 0 8px auto;
	width: 24%;
	font-size: 1.2rem;
	letter-spacing: -0.04em;
	text-align: center;
	color: #ca55b1;
}

.userVoiceList_item_inner .btn-expand.btn-arrowRight::after{
	border-color: #ca55b1;
}

/*-----------------------------------------------
占い師募集ページ
-----------------------------------------------*/
.applyBtnWrapper{
	position: relative;
}

.btn-apply{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 12px;
	margin: 0 auto;
	width: 90%;
	padding: 1.5rem;
	font-size: 2.4rem;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(#1f482e,#018c86,#1f482e);
	border: none;
	box-shadow: 0 0 4px #052020;
}

.btn-apply::after{
	border-color: #fff;
}