@charset "UTF-8";

* {
	box-sizing: border-box;
}

body {
	width: 100%;
	margin: 0 auto;
	font-size: 16px;
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", Osaka, "MS PGothic", arial, helvetica, sans-serif;
	font-feature-settings: "pwid" 1;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: unset;
	-webkit-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
	word-wrap: break-word;
	color: #656565;
	background: #ffffff;
	max-width: 450px;
	margin: 0 auto;
}

* {
	box-sizing: border-box;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	vertical-align: top;
	height: auto;
	display: block;
	width: 100%;
	margin: auto;
}

p {
	margin: 0;
	padding: 0;
	line-height: 1.6;
	color: #181a69;
}


li {
	list-style: none;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
	top: 75%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
}

/* ページのスタイル */
header.logo_area {
	max-width: 580px;
	width: 100%;
	position: sticky;
	top: 0;
	z-index: 5;
	background: #ffffff;
	box-shadow: 0 6px 14px -7px rgba(0, 0, 0, 0.5);
	padding: 0;
	padding-right: 8px;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}

header.logo_area>img {
	width: 22%;
	margin: 0;
}

header.logo_area>a {
	width: 46.8%;
	margin: 1% 0 0;
	padding: 1%;
}




#starry_sky {
	display:none;
	pointer-events: none; /* クリックや選択を無効化 */
}
@media (min-width: 450px) {
	#starry_sky {

	background:linear-gradient(0deg, #CFBDF5, #504BBB 44%, #1F1B6A);
	background-size: cover;
	/* background-attachment: fixed; */
	/* background-repeat: no-repeat; */
	background-position: center;
	display:block;
	width: 100%;
	height: 100%;
	position: fixed;
	inset:0;
	overflow: hidden;
	z-index:-1;
	}
	.star {
	background-color: white;
	position: absolute;
	border-radius: 50%;
	animation-name: twinkle;
	animation-iteration-count: infinite;
	}
	@keyframes twinkle {
	50% {
		transform: scale(0.2);   
	}
	} 
}






#qr {
	display: none;
}

@media (min-width: 1000px) {
	#qr {
		position: fixed;
		display: flex;
		justify-content: flex-end;
		width: clamp(1000px, 80vw, 1400px);
		bottom: clamp(30px, calc(-145px + 17.5vw), 100px);
		transform: translate(-50%, 0%);
		left: 50%;
		pointer-events: none;
	}

	#qr>div {
		position: relative;
		width: 245px;
		padding-top: clamp(20px, calc(-30px + 5vw), 40px);
		padding-bottom: clamp(10px, calc(-65px + 7.5vw), 40px);
		/* padding-left: clamp(0px, calc(-40px + 4vw), 16px); */
		/* padding-right: clamp(0px, calc(-40px + 4vw), 16px); */
		background: #ffffff;
		border-radius: 5px;
		box-shadow: 0 8px 16px #16002d;
	}

	#qr p {
		color: #442073;
		text-align: center;
		display: block;
		font-family: "Noto Serif JP", serif;
		margin-bottom: 1rem;
	}

	.corner {
		display: none;
	}

}

@media (min-width: 1400px) {
	#qr>div {
		width: 300px;
	}

	.corner {
		display: block;
		position: absolute;
		width: 60px;
		height: 60px;
		transform: translate(-50%, 0);
	}

	.top-left {
		top: 6px;
		left: 6px;
		transform: rotate(0deg);
	}

	.top-right {
		top: 6px;
		right: 6px;
		transform: rotate(90deg);
	}

	.bottom-left {
		bottom: 6px;
		left: 6px;
		transform: rotate(270deg);
	}

	.bottom-right {
		bottom: 6px;
		right: 6px;
		transform: rotate(180deg);
	}

}










.bold {
	font-weight: bold;
}

div.wrap_youtube>iframe {
	border-radius: 7px;
	aspect-ratio: 16 / 9;
	height: auto;
	position: absolute;
	width: 85%;
	top: 78%;
	bottom: 15%;
	left: 50%;
	transform: translate(-50%, -50%);

}

div.cta {
	background: #fefbff;
	padding: 2rem 0;
}



    .cta_kiran {
      animation: kiran 1.5s ease-in-out infinite;
    }
    .relative.cta_kiran {
      animation: relative_kiran 1.5s ease-in-out infinite;
    }
    @keyframes kiran {
      0%,
      100% {
        transform: translate(-50%, 0%) scale(0.92);
        filter: brightness(1);
      }

      50% {
        transform: translate(-50%, 0%) scale(1);
        filter: brightness(1.25);
      }
    }

      @keyframes relative_kiran {
      0%,
      100% {
        transform: scale(0.92);
        filter: brightness(1);
      }

      50% {
        transform: scale(1);
        filter: brightness(1.25);
      }
    }

	


/*先生の紹介*/
.image-grid {
	position: absolute;
	/* ベースの画像の上に配置 */
	top: 9.7%;
	/* 必要に応じて調整 */
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	width: 90%;
	/* 画像の範囲を調整 */
}

.image-grid img {
	width: calc(25% - 10px);
	/* 4列固定 */
	height: auto;
	object-fit: cover;
}





/*先生の紹介*/
.teller {
	background: #2b0d53;
}

.teller_midashi {
	position: relative;
}

.teller_cont1,
.teller_cont2,
.teller_cont4 {
	padding: 5%;
}


/* 先生の写真と名前 */
.teller_cont1 {
	display: flex;
	align-items: center;
	padding: 5% 5% 0;
}

.teller_cont1 p {
	color: #fff;
}

.teller_cont1>img,
.tellermessage_cont1>img {
	width: 30%;
	width: 35%;
	border-radius: 150px;
}

.teller_cont1>div,
.tellermessage_cont1>div {
	width: 100%;
	padding-left: 1rem;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
	gap: 8px;
}

.teller_cont1 .name1 {
	display: block;
	background: #785fba;
	font-size: 0.8rem;
	padding-bottom: 4px;

	padding: 3px 5px;
	margin: 0;
	border-radius: 4px;
	display: flex;
	align-items: center;
	gap: 3px;
}

.teller_cont1 p.name1:before {
	content: "";
	background: url("../img/tagmark.svg");
	width: 1rem;
	height: 1rem;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
}

.teller_cont1 .name2,
.tellermessage_cont1 .name2 {
	font-size: 1.9rem;
	font-weight: bold;
	background: linear-gradient(180deg, #f8e675 0%, #caa204 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-family: 'Noto Serif JP', serif;
}

.name2 span {
	font-size: 0.9rem;
	display: inline-block;
}



/* 占術やプロフなど */
.teller_cont2 {
	text-align: center;
	background: #2b0d53;
	text-align: left;
	color: white;
}

.teller_cont2>div:first-of-type {
	margin-top: 0;
}

.teller_cont2>div {
	margin-top: 1rem;
}

.teller_cont2 .teller_icon img+span {
	color: #ffd141;
}

.teller_cont4 {
	padding: 5%;
	text-align: justify;
	background: #fefbff;
	color: #000000;
}

.teller_cont4 .teller_icon img+span {
	color: #6e58a1;
}

.teller_cont4 .cta_kiran {
	width: 90%;
	position: relative;
}

.review {
	line-height: 1.7;
	font-size: 0.9rem;
}






.communication-chart {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	font-family: sans-serif;
	margin: 6px 0 40px 0px;
}


.chart-labels {
	display: flex;
	flex-direction: column;
	gap: 23px;
	margin-top: 4px;
}

.label {
	background-color: #6e58a1;
	color: white;
	padding: 4px 10px;
	font-size: 14px;
	white-space: nowrap;
	border-radius: 4px;
	/*width: 130px;*/
	text-align: center;
}

.chart-stars {
	display: flex;
	flex-direction: column;
	gap: 32px;
	flex: 1;
	position: relative;
}

.stars {
	display: flex;
	justify-content: space-evenly;
	font-size: 18px;
	line-height: 1.3;
	color: #6e58a1;
}

.star-row {
	position: relative;
	width: 94%;
	margin: auto;
}


.helper-labels {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 24px;
	left: 0;
	width: 100%;
	font-size: 9px;
	color: #555;
	pointer-events: none;
}

.helper-labels span {
	white-space: nowrap;
}

div.teller_icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
}

.teller_icon img {
	display: inline;
	height: 2rem;
	width: auto;
	margin: 0;
}

.teller_cta {
	color: #5c21c6;
	color: #7428f8;
	text-align: center;
	margin-top: 1.1rem;
	font-size: 1.5rem;
	font-family: serif;
	font-weight: bold;
}





















/* 占い師からのメッセージ */
.tellermessage_wrap {
	background: #ffffff;
	padding: 0;
	color: #ffffff;
}

.tellermessage {
	background: #382463;
	padding: 0;
}

div.tellermessage:nth-of-type(2) {
	background: #5c3ca1;
}

div.tellermessage:nth-of-type(2) .tellermessage_cont1 {
	flex-direction: row-reverse;
}

.tellermessage_cont1 {
	display: flex;
	padding: 5%;
}

.tellermessage_cont1>div {
	text-align: center;
	width: 100%;
}

.tellermessage_cont1>div>div {
	font-size: 1.5rem;
	text-decoration: underline;
}

.tellermessage>p {
	padding: 0 5% 1.5em;
	color: #ffffff;
}

.tellermessage_wrap>.cta>img {
	width: 78%;
	margin-bottom: 1.2rem
}

.tellermessage_wrap>.cta>a>img {
	width: 90%;
}

.tellermessage_wrap .kiran_outer {
	top: 71.9%;
	height: 30.2%;
	width: 88%
}


/* 共感を呼ぶ */

div.kyokan_wrap {
	text-align: justify;
}

div.kyokan:nth-of-type(1) {
	background: #553b91
}

div.kyokan:nth-of-type(2) {
	background: #383b9b
}

div.kyokan:nth-of-type(3) {
	background: #b12262
}

.kyokan>p {
	color: white;
	padding: 5% 5% 5%;
}

.kyokan_wrap>.cta>img {
	width: 82%;
	margin-bottom: 1.2rem;
}

.kyokan_wrap>.cta>a>img {
	width: 90%;
	margin: -1% 4% 3% 6%;
}

.kyokan_wrap .kiran_outer {
	top: 70%;
	height: 30%;
	width: 87%;
}




/* よくある質問関連 */
/*質問一覧*/
.question_wrap {
	width: 100%;
	background: #fefbff;
	padding-top: 5%;
	position: relative;
}

.question {
	margin: auto 7.5%;
	padding: 4px 0;
	color: #000000;
	border-bottom: 1px solid #daccb4;
}

div.question:last-of-type {
	/* 最後の質問に余白とborderは設けない */
	margin-bottom: 9%;
	/* border: none; */
}

.question>p {
	font-weight: bold;
	font-size: 1.1rem;
	padding: 2%;
	padding-right: 4%;
	position: relative;
}

.question span {
	color: #d3ac4f;
}

.question>p:after {
	/* 矢印 */
	content: '';
	width: 10px;
	height: 10px;
	border: 0;
	border-top: solid 2px #181a69;
	border-right: solid 2px #181a69;
	position: absolute;
	top: 26%;
	right: 0;
	transform: rotate(135deg);
}

.honbun {
	margin: 0 4px;
	display: none;
}

.honbun>p {
	padding: 2%;
	font-size: 0.9rem;
}

div.question:last-of-type {
	margin-bottom: 0;
}


.bgquestion {
	background: #fefbff;
	padding: 1rem 0 2rem;
}

.bgquestion>img {
	width: 74%;
	margin: 1rem auto 2rem;
}

.bgquestion>a>img {
	width: 90%;
	margin: -4% 4.5% -3% 5.5%;
}

.bgquestion .kiran_outer {
	top: 70%;
	height: 39%;
	width: 87%;
}


/* フォーム付近のちょうちょ */
.formtehutehu {
	overflow: hidden;
}

.formtehutehu .absolute {
	width: 16%;
	top: 10%;
	left: 14%;
	animation: widthanimeform 8s linear infinite alternate, transformXanime 11s linear infinite alternate;
}

.formtehutehu>div.absolute:nth-of-type(1) {
	top: 43%;
	left: 23%;
}

.formtehutehu>div.absolute:nth-of-type(2) {
	top: 51%;
	left: 74%;
}

.formtehutehu>div.absolute:nth-of-type(3) {
	top: 37%;
	left: 84%;
}

.formtehutehu>div.absolute:nth-of-type(1)>img,
.formtehutehu>div.absolute:nth-of-type(3)>img {
	animation: transformYanime 11s 0.4s linear infinite alternate;
}

.formtehutehu>div.absolute:nth-of-type(2)>img {
	transform: rotate(-20deg);
}

@keyframes widthanime {
	0% {
		width: 14%;
	}

	100% {
		width: 15%;
	}
}

@keyframes transformXanime {
	0% {
		transform: translate(-50%, -50%) translateX(0);
	}

	20% {
		transform: translate(-50%, -50%) translateX(7px);
	}

	40% {
		transform: translate(-50%, -50%) translateX(2px);
	}

	60% {
		transform: translate(-50%, -50%) translateX(-7px);
	}

	80% {
		transform: translate(-50%, -50%) translateX(-4px);
	}

	100% {
		transform: translate(-50%, -50%) translateX(2px);
	}
}

@keyframes transformYanime {
	0% {
		transform: translateY(0);
	}

	20% {
		transform: translateY(5px);
	}

	40% {
		transform: translateY(2px);
	}

	60% {
		transform: translateY(-5px);
	}

	80% {
		transform: translateY(0px);
	}

	100% {
		transform: translateY(2px);
	}
}

@keyframes widthanimeform {
	0% {
		width: 50%
	}

	100% {
		width: 53%;
	}
}





/* 口コミ*/
span.bold {
	font-weight: bold;
}

span.underline {
	text-decoration: underline;
}



/*フォーム*/
main form {
	width: 86%;
	display: block;
	margin: 0 auto;
}

main form .submit {
	width: 100%;
	margin: 13% auto;
	display: block;
}

main form .submit img,
main form .submit input {
	width: 100%;
}

.form_cont {
	font-size: 18px;
	margin-bottom: 2px;
}

.form_cont span {
	color: #d02e67;
	font-size: 13px;
	display: inline-block;
	vertical-align: bottom;
	margin-bottom: 4px;
	padding: 0 4px;
}

#form {
	margin: 16.2px auto;
}

#form .radio-group {
	display: block;
	width: 100%;
	height: 54px;
	padding-bottom: 6%;
	box-sizing: unset;
}

#form .radio-group label {
	cursor: pointer;
	float: left;
	padding: 3.3% 0;
	margin: 0 0 2%;
	font-size: 24px;
	font-weight: 500;
	background: #cbc2c7;
	color: #ffffff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 6px 3px 12px rgba(0, 0, 0, 0.2) inset, 3px 2px 3px rgba(0, 0, 0, 0.1) inset;
	width: 50%;
	line-height: 30px;
	text-align: center;
}

#form .radio-group label:nth-of-type(1) {
	border-radius: 8px 0 0 8px;
}

#form .radio-group label:nth-of-type(2) {
	border-radius: 0 8px 8px 0;
}

#form .radio-group input {
	display: none;
}

#form .radio-group input:checked+label {
	color: #fff;
	text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
	box-shadow: 2px 4px 12px rgba(238, 148, 172, 0.6);
	background: #e56e98;
	background: -moz-linear-gradient(top, #e56e98 0%, #d02e67 100%);
	background: -webkit-linear-gradient(top, #e56e98 0%, #d02e67 100%);
	background: linear-gradient(to bottom, #e56e98 0%, #d02e67 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e56e98', endColorstr='#d02e67', GradientType=0);
}

#select_form {
	width: 100%;
	margin-bottom: 6%;
}

#select_form select {
	font-size: 22px;
	border-radius: 0;
	border: solid 2px #cdcdcd;
	padding: 2% 4%;
	border-radius: 6px;
	margin-left: 2%;
}

#select_form select:nth-of-type(1) {
	margin-left: 0;
}

#select_form>span {
	font-size: 18px;
	font-weight: bold;
	vertical-align: bottom;
}

#select_form p:nth-of-type(2) {
	color: #d02e67;
	font-size: 14px;
	margin-top: 6px;
}

#name_form {
	position: relative;
	width: 100%;
}

#name_form input {
	width: 100%;
	font-size: 22px;
	border-radius: 0;
	padding: 2% 4%;
	border-radius: 6px;
	color: #3d3d3d !important;
	border: 2px solid #cdcdcd !important;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

#name_form input:focus {
	color: #3d3d3d !important;
	border: 2px solid rgba(241, 78, 124, 0.4) !important;
}

#name_form #e_name {
	position: absolute;
	bottom: -26px;
	width: 100%;
	text-align: center;
	color: #d02e67;
	font-weight: bold;
	animation: 2s tenmetu ease-in-out infinite;
	-webkit-animation: 2s tenmetu ease-in-out infinite;
}


#address_form input,
#address_form select {
	width: 100%;
	font-size: 19px;
	border-radius: 0;
	padding: 2% 4%;
	border-radius: 6px;
	color: #3d3d3d !important;
	border: 2px solid #cdcdcd !important;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}



div.footermenu {
	background-color: aliceblue;
}


footer {
	width: 100%;
	display: block;
	text-align: cecnter;


	position: relative;
	display: block;
	width: 100%;
	background: #626bc1;
	color: #000000;
	font-size: 15px;
	text-align: center;
	margin-top: -2px;
}

footer p {
	width: 100%;
	font-size: 12px;
	padding: 5px 0 28px;
	color: #ffffff;
}





footer .footer_list {
	background: #0a3d62;
	width: 100%;
}

footer ul {
	padding: 16px 9% 14px;
	text-align: center;
}

footer li {
	font-size: 15px;
	font-weight: bold;
	line-height: 1.8;
	display: inline-block;
	color: #fff;
	font-weight: 800;
}

footer li a {
	font-weight: 600;
	color: #fff;
	padding-right: 4px;
}

footer #copy {
	background: #072f4b;
	width: 100%;
	padding: 6px 0;
	display: block;
	color: #fff;
	font-size: 12px;
	text-align: center;
}


.popup_content * {
	font-size: 14px !important;
}

.close_btn {
	top: 6px !important;
}

.popup_content {
	margin: 12px 2% !important;
	padding: 16px !important;
	border-radius: 8px !important;
}

.popup_content h1,
.popup_content .price-exp h3 {
	font-size: 20px !important;
	margin-bottom: 7% !important;
	border-bottom: 3px solid #d02e67 !important;
}

.popup_content .agreement li {
	padding: 0 !important;
}

.popup_content .corp dt,
.popup_content .agreement dt,
.popup_content .policy dt,
.popup_content .contact h1,
.popup_content p.textarea1 {
	border-left: 6px solid #d02e67 !important;
	border-bottom: 1px solid #d02e67 !important;
}

@keyframes tenmetu {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes tenmetu {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.submit {
	width: 94%;
	margin: 32px auto 32px;
}

.submit img {
	display: block;
	cursor: pointer;
}



#select_form select {
	font-size: min(5vw, 20px);
}

#select_form>span {
	font-size: min(5vw, 20px);
	vertical-align: middle;
}

#form .radio-group label {
	box-shadow: none;
	text-shadow: none;
	background: none;
	color: #e56e98;
	border: 1px solid #e56e98;
}

#form .radio-group input:checked+label {
	background: #e56e98;
}

main form .submit {
	text-align: center;
}

main form .submit input {
	border: 1px solid #e56e98;
	background: #e33c5d;
	color: white;
	width: 100%;
	padding: 10px 10%;
	font-size: 24px;
	box-shadow: 2px 4px 12px rgb(238 148 172 / 60%);
	border-radius: 8px;
}


.communication-chart {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	font-family: sans-serif;
	margin: 24px 0;
}

.chart-labels {
	display: flex;
	flex-direction: column;
	gap: 29px;
	margin-top: 4px;
}

.label {
	background-color: #6e58a1;
	color: white;
	padding: 4px 10px;
	font-size: 14px;
	white-space: nowrap;
	border-radius: 4px;
	/*width: 130px;*/
	text-align: center;
}

.chart-stars {
	display: flex;
	flex-direction: column;
	gap: 32px;
	flex: 1;
	position: relative;
}

.star-row {
	position: relative;
}

.stars {
	display: flex;
	justify-content: space-evenly;
	font-size: 20px;
	line-height: 1.4;
	color: #6e58a1;
}

.helper-labels {
	display: flex;
	justify-content: space-between;
	position: absolute;
	top: 24px;
	left: 0;
	width: 100%;
	font-size: 11px;
	color: #555;
	pointer-events: none;
}

.helper-labels span {
	white-space: nowrap;
}

.glow-btn {
	animation: flickerScale 1.5s ease-in-out infinite;
	will-change: transform;
	/* GPUで滑らかに */
}

/* スマホ専用調整 */
@media (max-width: 768px) {
	.glow-btn {
		transform-origin: center;
		/* スマホでは中央拡大でもOK */
	}
}

/* 拡大・縮小アニメーション */
@keyframes flickerScale {

	0%,
	100% {
		transform: scale(1);
		filter: brightness(1);
	}

	50% {
		transform: scale(1.08);
		filter: brightness(1.25);
	}
}