@charset "UTF-8";
/*----------------------------------------
	fonts
----------------------------------------*/
/*----------------------------------------
	Vars
----------------------------------------*/
/*----------------------------------------
	Reset
----------------------------------------*/
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	border: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	font: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th, td {
	text-align: left;
	vertical-align: top;
}

img {
	border: none;
	vertical-align: top;
}

/*----------------------------------------
	Mediaquery
----------------------------------------*/
/*----------------------------------------
	fonts
----------------------------------------*/ /*----------------------------------------
	Base
----------------------------------------*/
html {
	font-size: 14px;
}
@media screen and (min-width: 769px) {
	html {
		font-size: 15px;
	}
}

body {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	line-height: 1.5;
	letter-spacing: 0;
	background-color: #ffffff;
	color: #000000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: 100%;
}

img {
	width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	transition: opacity 0.4s ease;
}
a:link, a:visited {
	color: #000000;
}

a:hover {
	opacity: 0.7;
}

a[data-rel=external]:after {
	content: "";
	width: 1em;
	height: 1em;
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.5em;
	background: transparent url("../image/icon-external.png") no-repeat scroll center center;
	background-size: contain;
	margin-right: 0.5em;
}

/*----------------------------------------
	Setting
----------------------------------------*/
/* font family */
/*----------------------------------------
	Layout
----------------------------------------*/
.l-container {
	background: radial-gradient(circle farthest-corner at center, rgb(255, 255, 255) 0%, rgb(207, 207, 207) 84.69%);
}

.l-limit {
	margin: 0 auto;
}
@media screen and (min-width: 769px) {
	.l-limit {
		box-sizing: border-box;
		min-width: 1000px;
		max-width: 1600px;
	}
}

.l-frame {
	width: 89.3333333333%;
	margin: 0 auto;
}
@media screen and (min-width: 769px) {
	.l-frame {
		width: 89.0625%;
	}
}

@media screen and (min-width: 769px) {
	.l-column {
		display: flex;
		justify-content: space-between;
	}
}
.l-column-both {
	display: flex;
	justify-content: space-between;
}
.l-column--wrap {
	flex-wrap: wrap;
}
.l-column--reverse {
	flex-direction: row-reverse;
}

/*----------------------------------------
	Header
----------------------------------------*/
.l-header {
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 5.3333333333%;
	box-sizing: border-box;
}
@media screen and (min-width: 769px) {
	.l-header {
		padding: 30px 2.734375%;
	}
}
.l-headerTitle__logo {
	width: 103px;
}
@media screen and (min-width: 769px) {
	.l-headerTitle__logo {
		width: 124px;
	}
}
.l-headerTitle__topback {
	opacity: 0;
	pointer-events: none;
	width: 103px;
	margin-top: 10px;
	transition: opacity 0.4s ease 0s;
}
@media screen and (min-width: 769px) {
	.l-headerTitle__topback {
		width: 148px;
		margin-top: 14px;
	}
}
.l-headerTitle__topback:hover {
	opacity: 0.6;
}
.l-headerLogo {
	width: 50px;
}

/*----------------------------------------
	Footer
----------------------------------------*/
/*----------------------------------------
	Component
----------------------------------------*/
.c-h1 {
	font-size: 1rem;
	line-height: 1.5;
}
@media screen and (min-width: 769px) {
	.c-h1 {
		font-size: 1rem;
		line-height: 1.5;
	}
}

/*----------------------------------------
	Utility
----------------------------------------*/
.u-hidden {
	display: none;
}

@media screen and (max-width: 768px) {
	.u-hidden-sp {
		display: none;
	}
}

@media screen and (min-width: 769px) {
	.u-hidden-pc {
		display: none;
	}
}

.u-left {
	text-align: left;
}

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

.u-right {
	text-align: right;
}

.u-red {
	color: red;
}

.u-bg-red {
	background-color: red;
}

/* 
* 余白打ち消しクラス
*/
.u-noRadius {
	border-radius: 0 !important;
}

.u-noMargin {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.u-noMargin-top {
	margin-top: 0 !important;
}

.u-noMargin-bottom {
	margin-bottom: 0 !important;
}

.u-noPadding {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.u-noPadding-top {
	padding-top: 0 !important;
}

.u-noPadding-bottom {
	padding-bottom: 0 !important;
}

/* 
* 余白
*/
.-padding-t {
	padding-top: 10px;
}
.-padding-t.-x2 {
	padding-top: 20px;
}
.-padding-t.-x4 {
	padding-top: 40px;
}
.-padding-t.-x6 {
	padding-top: 60px;
}
.-padding-t.-x8 {
	padding-top: 80px;
}
.-padding-t.-x10 {
	padding-top: 100px;
}

.-padding-b {
	padding-bottom: 10px;
}
.-padding-b.-x2 {
	padding-bottom: 20px;
}
.-padding-b.-x4 {
	padding-bottom: 40px;
}
.-padding-b.-x6 {
	padding-bottom: 60px;
}
.-padding-b.-x8 {
	padding-bottom: 80px;
}
.-padding-b.-x10 {
	padding-bottom: 100px;
}

.-margin-t {
	margin-top: 10px;
}
.-margin-t.-x2 {
	margin-top: 20px;
}
.-margin-t.-x4 {
	margin-top: 40px;
}
.-margin-t.-x6 {
	margin-top: 60px;
}
.-margin-t.-x8 {
	margin-top: 80px;
}
.-margin-t.-x10 {
	margin-top: 100px;
}

.-margin-b {
	margin-bottom: 10px;
}
.-margin-b.-x2 {
	margin-bottom: 20px;
}
.-margin-b.-x4 {
	margin-bottom: 40px;
}
.-margin-b.-x6 {
	margin-bottom: 60px;
}
.-margin-b.-x8 {
	margin-bottom: 80px;
}
.-margin-b.-x10 {
	margin-bottom: 100px;
}

/*----------------------------------------
	Page Home
----------------------------------------*/
#customCursor {
	position: fixed;
	top: -25px;
	left: -25px;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	margin-left: -25px;
	opacity: 0;
	pointer-events: none;
	z-index: 9999;
	transition: transform 0.1s ease;
}
@media screen and (max-width: 768px) {
	#customCursor {
		display: none;
	}
}
#customCursor .customCursor__label {
	display: block;
	transform: scale(0);
	transform-origin: center;
	transition: transform 0.3s ease;
	border-radius: 50%;
}
#customCursor.is-active {
	opacity: 1;
}
#customCursor.is-active .customCursor__label {
	transform: scale(1);
	animation: clickBoxShadow 2.5s ease-out 0s infinite;
}

.t-hero {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.t-page-first {
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	overflow: hidden;
	background-color: #68BF2F;
}
.t-page-first__motif {
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48.8%;
}
@media screen and (min-width: 769px) {
	.t-page-first__motif {
		width: 296px;
	}
}

.t-page-wrap {
	position: fixed;
	width: 100%;
	height: 100dvh;
	border: 5px solid #7FCD43;
	box-sizing: border-box;
	overflow: hidden;
	background: radial-gradient(circle farthest-corner at center, rgb(255, 255, 255) 0%, rgb(207, 207, 207) 84.69%);
}
@media screen and (min-width: 769px) {
	.t-page-wrap {
		min-width: 1000px;
		min-height: 760px;
		border: 10px solid #7FCD43;
	}
}
.t-page-wrap::before {
	content: "";
	z-index: 1;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #7FCD43;
}
@media screen and (min-width: 769px) {
	.t-page-wrap::before {
		display: none;
	}
}
.t-page-wrap__scroller {
	opacity: 0;
	position: fixed;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	width: -moz-max-content;
	width: max-content;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__scroller {
		bottom: 18px;
	}
}
.t-page-wrap__scroller__item {
	position: relative;
	width: 21px;
	height: 38px;
	margin: 0 auto;
	background-color: #BABABA;
	border-radius: 200px;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__scroller__item {
		width: 24px;
		height: 46px;
	}
}
.t-page-wrap__scroller__item::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 6px;
	transform: translateX(-50%);
	width: 5.8px;
	height: 5.8px;
	background-color: #ffffff;
	border-radius: 50%;
	animation: scrollerBallSP 2s ease-in 0s infinite;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__scroller__item::before {
		top: 8px;
		width: 7px;
		height: 7px;
		animation: scrollerBallPC 2s ease-in 0s infinite;
	}
}
.t-page-wrap__scroller span {
	display: block;
	width: 46px;
	margin: 8px auto 0;
}
@keyframes scrollerBallSP {
	0% {
		opacity: 1;
		top: 6px;
	}
	50% {
		top: 23px;
	}
	80% {
		opacity: 1;
		top: 23px;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
@keyframes scrollerBallPC {
	0% {
		opacity: 1;
		top: 8px;
	}
	50% {
		top: 30px;
	}
	80% {
		opacity: 1;
		top: 30px;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
.t-page-wrap__overlay {
	z-index: 10;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	overflow: hidden;
	background: radial-gradient(circle farthest-corner at center, rgb(255, 255, 255) 0%, rgb(207, 207, 207) 84.69%);
}
.t-page-wrap__sec {
	width: 100%;
	height: 100dvh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(100%);
}
.t-page-wrap__sec.active {
	transform: translateY(0);
}
@media screen and (min-width: 769px) {
	.t-page-wrap__frame {
		max-width: 900px;
		margin: 0 auto;
		padding: 0 20px;
		box-sizing: content-box;
	}
}
.t-page-wrap__intro {
	display: flex;
	flex-direction: column-reverse;
	gap: 40px 0;
	margin-top: -20px;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__intro {
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 0 64px;
		margin-top: 0;
	}
}
.t-page-wrap__intro__wrap {
	position: relative;
	-webkit-mask-image: url(../../image/mask02.png);
	mask-image: url(../../image/mask02.png);
	mask-mode: alpha;
	-webkit-mask-position: center bottom;
	mask-position: center bottom;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: auto 200%;
	mask-size: auto 200%;
	opacity: 0;
	padding-bottom: 10px;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__intro__wrap {
		overflow: hidden;
	}
}
.t-page-wrap__intro__wrap.is-active {
	animation: 2s mask-animation cubic-bezier(0, 0.4, 0.48, 1) 0s forwards;
}
.t-page-wrap__intro p {
	z-index: 2;
	position: relative;
	margin-bottom: 20px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 3.7vw;
	letter-spacing: 0;
	line-height: 1.76;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__intro p {
		text-align: left;
		font-size: 24px;
		margin-bottom: 0;
	}
}
.t-page-wrap__intro p:nth-child(1), .t-page-wrap__intro p:nth-child(2) {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
.t-page-wrap__intro p.is-active {
	opacity: 1;
	pointer-events: auto;
}
.t-page-wrap__intro__move {
	position: relative;
}
@keyframes scrollUpSp {
	from {
		transform: translateY(0%);
	}
	to {
		transform: translateY(-125vw);
	}
}
@keyframes scrollUpPc {
	from {
		transform: translateY(0%);
	}
	to {
		transform: translateY(-870px);
	}
}
@keyframes mask-animation {
	0% {
		-webkit-mask-position: center bottom;
		mask-position: center bottom;
		opacity: 0;
	}
	20% {
		opacity: 1;
	}
	to {
		-webkit-mask-position: center 0%;
		mask-position: center 0%;
		-webkit-mask-size: auto 500%;
		mask-size: auto 500%;
		opacity: 1;
	}
}
.t-page-wrap__intro__button {
	width: 120px;
	margin: 40px auto 0;
	animation: clickBoxShadow 2.5s ease-out 0s infinite;
	transition: opacity 0.5s ease;
	border-radius: 200px;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__intro__button {
		display: none;
	}
}
.t-page-wrap__intro__button.is-active {
	opacity: 0;
	pointer-events: none;
}
.t-page-wrap__intro__card {
	z-index: 1;
	position: relative;
	display: block;
	width: 90px;
	margin: 0 auto;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__intro__card {
		width: 260px;
	}
}
.t-page-wrap__intro__card img {
	border-radius: 10px;
	box-shadow: 1.28px 1.28px 1.07px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 769px) {
	.t-page-wrap__intro__card img {
		border-radius: 18px;
		box-shadow: 2.25px 2.25px 1.88px rgba(0, 0, 0, 0.15);
	}
}
.t-page-wrap__intro__card img:first-child {
	z-index: 1;
	position: relative;
	box-shadow: none;
}
.t-page-wrap__intro__card img:nth-child(n+2) {
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: 1px 1px 1.88px rgba(0, 0, 0, 0.03);
}
@media screen and (min-width: 769px) {
	.t-page-wrap__intro__card img:nth-child(n+2) {
		box-shadow: 1.25px 1.25px 1.88px rgba(0, 0, 0, 0.03);
	}
}
.t-page-wrap__intro__card img:nth-child(2) {
	z-index: 2;
	box-shadow: 1.28px 1.28px 1.07px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 769px) {
	.t-page-wrap__intro__card img:nth-child(2) {
		box-shadow: 2.25px 2.25px 1.88px rgba(0, 0, 0, 0.15);
	}
}
.t-page-wrap__lead {
	z-index: 5;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	text-align: center;
	width: 100%;
}
.t-page-wrap__lead h2 {
	text-align: center;
	width: -moz-max-content;
	width: max-content;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	margin: 0 auto 20px;
	font-size: 22.6px;
	line-height: 1.74;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__lead h2 {
		margin: 0 auto 40px;
		font-size: 28px;
		line-height: 1.75;
	}
}
.t-page-wrap__lead__motif {
	width: 72%;
	margin: 0 auto;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__lead__motif {
		width: 430px;
	}
}
.t-page-wrap__lead__next {
	position: relative;
	max-width: 280px;
	margin: 54px auto 0;
	padding: 13px 0;
	background-color: #000000;
	border-radius: 200px;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__lead__next {
		max-width: 320px;
		margin: 54px auto 0;
		padding: 20px 0;
		cursor: pointer;
		transition: opacity 0.4s ease;
	}
}
@media screen and (min-width: 769px) {
	.t-page-wrap__lead__next:hover {
		opacity: 0.6;
	}
}
.t-page-wrap__lead__next::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 8px;
	width: 24px;
	height: 24px;
	background: transparent url(../../image/arrow.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__lead__next::before {
		right: 10px;
		width: 36px;
		height: 36px;
	}
}
.t-page-wrap__lead__next span {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 13px;
	line-height: 1;
	color: #ffffff;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__lead__next span {
		font-size: 18px;
	}
}
.t-page-wrap__lead__next img {
	display: block;
	z-index: 1;
	position: absolute;
	top: -20px;
	left: -30px;
	width: 186px;
	pointer-events: none;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__lead__next img {
		top: -28px;
		left: -32px;
		width: 251px;
	}
}
.t-page-wrap__lead__notice {
	margin-top: 1.5rem;
}
.t-page-wrap__lead__notice p {
	text-align: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 13px;
	line-height: 1;
}
@media screen and (min-width: 769px) {
	.t-page-wrap__lead__notice p {
		font-size: 14px;
	}
}
.t-page-wrap__inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.t-page-wrap__inner::before {
	content: "";
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(244, 244, 244, 0);
	transition: background-color 0.6s ease-out 0s;
}
.t-page-wrap__inner.is-active::before {
	background-color: rgba(244, 244, 244, 0.61);
}
@media screen and (min-width: 769px) {
	.t-page-wrap__inner.is-active::before {
		background-color: rgba(244, 244, 244, 0.41);
	}
}
.t-page-wrap__qa {
	z-index: 1;
	position: relative;
}

.t-page-qa {
	z-index: 2;
	position: relative;
	width: 100%;
}
.t-page-qa__options {
	display: flex;
	justify-content: center;
	gap: 0 4.5333333333%;
	perspective: 1200px;
	transition: gap 0.3s ease 0s;
}
@media screen and (min-width: 769px) {
	.t-page-qa__options {
		gap: 0 34px;
	}
}
.t-page-qa__options.is-none {
	gap: 0;
}
.t-page-qa__first {
	z-index: 1;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.5);
	width: 120px;
	box-shadow: 0 0 25px #33ff63;
	border-radius: 200px;
	box-sizing: border-box;
	animation: clickBoxShadow 2.5s ease-out 0s infinite;
	transition: opacity 0.45s ease 0s;
	pointer-events: none;
}
@media screen and (min-width: 769px) {
	.t-page-qa__first {
		width: 149px;
	}
}
.t-page-qa__first.is-none {
	opacity: 0 !important;
}
@keyframes clickBoxShadow {
	0% {
		box-shadow: 0 0 25px #33ff63;
	}
	66% {
		box-shadow: 0 0 8px rgba(51, 255, 99, 0.28);
	}
	100% {
		box-shadow: 0 0 25px #33ff63;
	}
}
.t-page-qa__number {
	text-align: center;
	display: block;
	margin: 0 auto 10px;
	max-width: 37px;
}
@media screen and (min-width: 769px) {
	.t-page-qa__number {
		max-width: 63px;
	}
}
.t-page-qa__question {
	text-align: center;
	margin-bottom: 36px;
	padding: 0 30px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 17px;
}
@media screen and (min-width: 769px) {
	.t-page-qa__question {
		margin-bottom: 54px;
		padding: 0;
		font-size: 27px;
	}
}
.t-page-qa__option {
	position: relative;
	width: 42.6666666667%;
	cursor: pointer;
	aspect-ratio: 2/3;
}
@media screen and (min-width: 769px) {
	.t-page-qa__option {
		max-width: 260px;
		width: 260px;
	}
}
.t-page-qa__card {
	position: relative;
	width: 100%;
	height: 98%;
	transform-style: preserve-3d;
	transition: transform 0.35s ease-in-out, box-shadow 0.3s ease-out 0.3s;
	border-radius: 11px;
	background-color: #ffffff;
	box-sizing: border-box;
	box-shadow: 3.38px 3.38px 2.82px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 769px) {
	.t-page-qa__card {
		border-radius: 20px;
		box-shadow: 5.97px 5.97px 4.98px rgba(0, 0, 0, 0.15);
		transition: transform 0.35s ease-in-out, box-shadow 0.3s ease-out 0s, margin-top 0.3s ease-out 0s;
		background: linear-gradient(-20deg, #ffffff 50%, #ebebeb 60%, #ffffff 70%);
		background-size: 800% 100%;
		animation-delay: 2s;
		animation-timing-function: linear;
	}
}
@media screen and (min-width: 769px) {
	.t-page-qa__card:hover {
		margin-top: -10px;
		box-shadow: 2.5px 2.5px 2px rgba(0, 0, 0, 0.4);
		animation: shine 7s infinite;
	}
}
.t-page-qa__card.is-reverse {
	box-shadow: -3.38px 3.38px 2.82px rgba(0, 0, 0, 0.15);
	background-color: #ffffff;
}
@media screen and (min-width: 769px) {
	.t-page-qa__card.is-reverse {
		box-shadow: -5.97px 5.97px 4.98px rgba(0, 0, 0, 0.15);
		transition: transform 0.35s ease-in-out, box-shadow 0.3s ease-out 0s, margin-top 0.3s ease-out 0s;
		background-color: #ffffff;
		background: linear-gradient(20deg, #ffffff 50%, #ebebeb 60%, #ffffff 70%);
		background-size: 800% 100%;
		animation-timing-function: linear;
	}
}
@media screen and (min-width: 769px) {
	.t-page-qa__card.is-reverse:hover {
		margin-top: -10px;
		box-shadow: -2.5px 2.5px 2px rgba(0, 0, 0, 0.4);
		animation: shineReverse 7s infinite;
	}
}
@keyframes shine {
	0% {
		background-position-x: 100%;
	}
	25% {
		background-position-x: 0%;
	}
	50% {
		background-position-x: -140%;
	}
	100% {
		background-position-x: -380%;
	}
}
@keyframes shineReverse {
	0% {
		background-position-x: -100%;
	}
	25% {
		background-position-x: 0%;
	}
	50% {
		background-position-x: 140%;
	}
	100% {
		background-position-x: 380%;
	}
}
.t-page-qa__card-front {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	z-index: 2;
	-o-object-fit: cover;
	object-fit: cover;
	padding: 0 6px 6px 6px;
	box-sizing: border-box;
}
@media screen and (min-width: 769px) {
	.t-page-qa__card-front {
		padding: 0 10px 10px 10px;
	}
}
.t-page-qa__card-front p {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 12px;
	line-height: 1.25;
	outline: none;
	user-drag: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
@media screen and (min-width: 769px) {
	.t-page-qa__card-front p {
		font-size: 20px;
	}
}
.t-page-qa__card-front img {
	display: block;
	margin-top: auto;
	outline: none;
	user-drag: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.t-page-qa__card-back {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	transform: rotateY(180deg);
}
.t-page-qa__card-back::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
}
.t-page-qa__card-back-text {
	pointer-events: none;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 10px;
	line-height: 1.5;
	outline: none;
	user-drag: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
@media screen and (min-width: 769px) {
	.t-page-qa__card-back-text {
		font-size: 15px;
	}
}
.t-page-qa__card-back-comment {
	pointer-events: none;
	text-align: left;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 9px;
	line-height: 1.7;
	padding: 0 15px;
	outline: none;
	user-drag: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
@media screen and (min-width: 769px) {
	.t-page-qa__card-back-comment {
		padding: 0 22px;
		font-size: 14px;
	}
}
.t-page-qa__card-back-comment em {
	background: linear-gradient(transparent 80%, #7FCD43 50%);
	background-size: 0% 100%;
	background-repeat: no-repeat;
	font-style: normal; /* em の斜体を無効化 */
	padding: 0 4px; /* 少し余白を持たせる */
}
.t-page-qa__card-back img {
	pointer-events: none;
	display: block;
	width: 54px;
	margin: 6px auto 8px;
	border-radius: 50%;
	aspect-ratio: 1/1;
	outline: none;
	user-drag: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
@media screen and (min-width: 769px) {
	.t-page-qa__card-back img {
		width: 96px;
		margin: 12px auto 12px;
	}
}
.t-page-qa__card.is-flipped {
	transform: rotateY(180deg);
}
.t-page-qa__stamp {
	opacity: 1;
	pointer-events: none;
	transform: scale(0);
	z-index: 1;
	position: absolute;
	top: 30px;
	right: 0;
	width: 25.8666666667%;
}
@media screen and (min-width: 769px) {
	.t-page-qa__stamp {
		top: 50%;
		left: calc(50% + 240px);
		right: auto;
		transform: translate(-50%, -50%) scale(0);
		width: 162px;
	}
}
.t-page-qa__stamp img {
	pointer-events: none;
	outline: none;
	user-drag: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.t-page-panel {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px 4px;
	z-index: 2;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -100%;
	width: 270px;
	padding: 12px 19px 14px;
	background-color: #7FCD43;
	border-radius: 30px 30px 0 0;
	transition: bottom 0.6s ease 0s;
}
@media screen and (min-width: 769px) {
	.t-page-panel {
		gap: 0 6px;
		width: 640px;
		padding: 12px 0 26px;
		border-radius: 30px 30px 0 0;
	}
}
.t-page-panel__item {
	position: relative;
	width: 23px;
	height: 30.6px;
	aspect-ratio: 3/4;
	background-color: #78BC3C;
	box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.41);
	border-radius: 2px;
}
@media screen and (min-width: 769px) {
	.t-page-panel__item {
		width: 26px;
		height: 34.6px;
		aspect-ratio: 3/4;
	}
}
.t-page-panel__item img {
	z-index: 3;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	top: calc(50% + 0px);
	left: calc(50% + 0px);
	width: calc(100% + 0px);
	height: auto;
	aspect-ratio: 3/4;
}
@media screen and (min-width: 769px) {
	.t-page-panel__item img {
		top: calc(50% + 1px);
		left: calc(50% + 0px);
		width: calc(100% + 0px);
	}
}
.t-page-panel__item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 1px;
	background-color: #ffffff;
}
.t-page-panel__item::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1px;
	height: 10px;
	background-color: #ffffff;
}

.t-page-swipe {
	opacity: 0;
	pointer-events: none;
	z-index: 2;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 40px;
}
@media screen and (min-width: 769px) {
	.t-page-swipe {
		top: 60px;
	}
}
.t-page-swipe__text {
	width: 110px;
	margin: -10px auto 0;
	animation: clickBoxShadow 1.7s ease-out 0s infinite;
	border-radius: 200px;
}
@media screen and (min-width: 769px) {
	.t-page-swipe__text {
		width: 149px;
		margin: -10px auto 0;
	}
}
.t-page-swipe__arrow {
	width: 46px;
	margin: 2px auto 0;
}
@media screen and (min-width: 769px) {
	.t-page-swipe__arrow {
		width: 56px;
	}
}
.t-page-swipe__arrow img {
	display: block;
}
.t-page-swipe__arrow img:first-of-type {
	animation: swipeUp1 1.5s ease-out 0s infinite;
}
.t-page-swipe__arrow img:last-of-type {
	margin-top: -24px;
	animation: swipeUp1 1.5s ease-out 0.3s infinite;
}
@keyframes swipeUp1 {
	0% {
		opacity: 0;
		transform: translateY(0);
	}
	66% {
		opacity: 1;
		transform: translateY(-4px);
	}
	100% {
		opacity: 0;
		transform: translateY(-4px);
	}
}

.t-page-comment {
	opacity: 0;
	pointer-events: none;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 14px;
	position: absolute;
	bottom: 15%;
}
@media screen and (max-width: 768px) {
	.t-page-comment {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}
}
@media screen and (min-width: 769px) {
	.t-page-comment {
		gap: 0 6px;
		right: 10px;
		bottom: 50px;
	}
}
.t-page-comment__text {
	position: relative;
	width: -moz-max-content;
	width: max-content;
	padding: 6px 14px;
	color: #000000;
	background-color: #ffffff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 10px;
	line-height: 1.2;
	box-shadow: 0.4px 0.4px 1.2px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
}
@media screen and (min-width: 769px) {
	.t-page-comment__text {
		font-family: "Zen Kaku Gothic New", sans-serif;
		font-weight: 900;
		font-style: normal;
		font-size: 14px;
		line-height: 1.5;
		box-shadow: 0.67px 0.67px 2px rgba(0, 0, 0, 0.15);
	}
}
.t-page-comment__text::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -5px;
	height: 8px;
	aspect-ratio: cos(30deg);
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: #ffffff;
}
@media screen and (min-width: 769px) {
	.t-page-comment__text::before {
		right: -10px;
		height: 14px;
	}
}
.t-page-comment__icon {
	width: 40px;
	-webkit-mask-image: url(../../image/mask01.svg);
	mask-image: url(../../image/mask01.svg);
	-webkit-mask-size: 0%;
	mask-size: 0%;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
	.t-page-comment__icon {
		width: 88px;
	}
}
.t-page-comment__icon.is-active {
	animation: boundIcon 1s ease 0.1s infinite;
}

@keyframes boundIcon {
	0% {
		transform: scale(1);
	}
	66% {
		transform: scale(1.06);
	}
	100% {
		transform: scale(1);
	}
}
.t-page-modal {
	z-index: 25;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	transform-origin: center;
	width: 100%;
}
.t-page-modal__inner {
	margin: 0 auto;
	width: 89.3333333333%;
	padding: 120px 0;
	background-color: #7fcd43;
}
@media screen and (min-width: 769px) {
	.t-page-modal__inner {
		width: 53.90625%;
		min-width: 690px;
		padding: 126px 0 136px;
	}
}
.t-page-modal__inner p {
	text-align: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 18px;
	line-height: 1.8;
	color: #ffffff;
}
@media screen and (min-width: 769px) {
	.t-page-modal__inner p {
		font-size: 26px;
	}
}

#canvas {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}

.t-page-form {
	opacity: 0;
	pointer-events: none;
	z-index: 5;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 91.7808219178%;
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}
@media screen and (min-width: 769px) {
	.t-page-form {
		max-width: 880px;
	}
}
.t-page-form__text {
	text-align: center;
	margin-bottom: 10px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 14px;
	line-height: 24.5px;
}
@media screen and (min-width: 769px) {
	.t-page-form__text {
		margin-bottom: 30px;
		font-size: 22px;
		line-height: 38.5px;
	}
}
.t-page-form__item {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 10px 0;
}
@media screen and (min-width: 769px) {
	.t-page-form__item {
		justify-content: center;
		flex-direction: row;
		gap: 0 20px;
	}
}
.t-page-form__item label {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 16px;
	line-height: 1.5;
}
@media screen and (min-width: 769px) {
	.t-page-form__item label {
		text-align: right;
		width: 242px;
		font-size: 22px;
	}
}
.t-page-form__item input {
	width: 100%;
	padding: 1em;
	font-size: 14px;
	border-radius: 200px;
	border: none;
	box-shadow: 1.28px 1.28px 1.07px rgba(0, 0, 0, 0.15);
	box-sizing: border-box;
}
@media screen and (min-width: 769px) {
	.t-page-form__item input {
		width: 420px;
		font-size: 16px;
		box-shadow: 2.25px 2.25px 1.88px rgba(0, 0, 0, 0.15);
	}
}
.t-page-form__submit {
	position: relative;
	width: 260px;
	margin: 20px auto 0;
}
@media screen and (min-width: 769px) {
	.t-page-form__submit {
		width: 412px;
		margin: 40px auto 0;
		transition: opacity 0.4s ease 0s;
	}
}
.t-page-form__submit::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	width: 24px;
	height: 24px;
	background: transparent url(../../image/arrow.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 769px) {
	.t-page-form__submit::before {
		right: 10px;
		width: 36px;
		height: 36px;
	}
}
.t-page-form__submit:hover {
	opacity: 0.8;
}
.t-page-form__submit input {
	display: block;
	text-align: center;
	width: 100%;
	padding: 1.25em 1em 1.25em 0;
	color: #ffffff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 13px;
	line-height: 1;
	background-color: #000000;
	border-radius: 200px;
	border: none;
}
@media screen and (min-width: 769px) {
	.t-page-form__submit input {
		padding: 1.25em 1em 1.25em 0;
		font-size: 18px;
	}
}

.t-page-result {
	opacity: 0;
	pointer-events: none;
	z-index: 3;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}
.t-page-result #confetti {
	z-index: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.t-page-result__cards {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 4px 2px;
	width: -moz-max-content;
	width: max-content;
	margin: 0 auto 12px;
}
@media screen and (min-width: 769px) {
	.t-page-result__cards {
		gap: 4px 5px;
		margin: 0 auto 30px;
	}
}
.t-page-result__card {
	position: relative;
	width: 90px;
	border-radius: 4px;
	box-shadow: 1.28px 1.28px 1.07px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 769px) {
	.t-page-result__card {
		width: 106px;
		border-radius: 8px;
		box-shadow: 2.25px 2.25px 1.88px rgba(0, 0, 0, 0.15);
	}
}
.t-page-result__card:first-of-type {
	z-index: 1;
}
.t-page-result__card:nth-child(n+2) {
	position: absolute;
	top: 0;
	left: 0;
}
.t-page-result__card:nth-child(1) {
	z-index: 5;
}
.t-page-result__card:nth-child(2) {
	z-index: 4;
}
.t-page-result__card:nth-child(3) {
	z-index: 3;
}
.t-page-result__card:nth-child(4) {
	z-index: 2;
}
.t-page-result__card:nth-child(5) {
	z-index: 1;
}
.t-page-result__open {
	width: 190px;
	margin: 0 auto 20px;
}
@media screen and (min-width: 769px) {
	.t-page-result__open {
		width: 259px;
		margin: 0 auto 24px;
		transition: opacity 0.3 ease-out 0s;
		cursor: pointer;
	}
}
@media screen and (min-width: 769px) {
	.t-page-result__open:hover {
		opacity: 0.7;
	}
}
.t-page-result__open span {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	max-height: 47px;
	padding: 1.25em 2.2em 1.25em 0;
	color: #ffffff;
	background-color: #000000;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 11px;
	line-height: 1;
	border-radius: 200px;
	box-sizing: border-box;
}
@media screen and (min-width: 769px) {
	.t-page-result__open span {
		max-height: initial;
		padding: 1.25em 1em 1.25em 0;
		font-size: 14px;
	}
}
.t-page-result__open span::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	width: 24px;
	height: 24px;
	background: transparent url(../../image/arrow.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 769px) {
	.t-page-result__open span::before {
		right: 10px;
		width: 36px;
		height: 36px;
	}
}
.t-page-result__text {
	opacity: 0;
	pointer-events: none;
	position: relative;
	width: 89.3333333333%;
	margin: 0 auto 30px;
}
@media screen and (min-width: 769px) {
	.t-page-result__text {
		width: -moz-max-content;
		width: max-content;
		margin: 0 auto 60px;
	}
}
.t-page-result__text p {
	text-align: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 14px;
	line-height: 1.75;
}
@media screen and (min-width: 769px) {
	.t-page-result__text p {
		text-align: center;
		font-size: 16px;
		line-height: 2;
	}
}
.t-page-result__buttons {
	opacity: 0;
	pointer-events: none;
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
	gap: 6px 10px;
	margin: 0 auto;
}
@media screen and (min-width: 769px) {
	.t-page-result__buttons {
		gap: 8px 20px;
		max-width: 100%;
	}
}
.t-page-result__button {
	width: 43.7333333333%;
}
@media screen and (min-width: 769px) {
	.t-page-result__button {
		width: 32.1875%;
	}
}
.t-page-result__button a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	max-height: 47px;
	padding: 1.25em 1em 1.25em 0;
	color: #ffffff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 13px;
	line-height: 1;
	background-color: #000000;
	border-radius: 200px;
	box-sizing: border-box;
}
@media screen and (min-width: 769px) {
	.t-page-result__button a {
		max-height: initial;
		padding: 1.25em 1em 1.25em 0;
		font-size: 18px;
	}
}
.t-page-result__button a::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	width: 24px;
	height: 24px;
	background: transparent url(../../image/arrow.svg) no-repeat scroll center center/cover;
}
@media screen and (min-width: 769px) {
	.t-page-result__button a::before {
		right: 10px;
		width: 36px;
		height: 36px;
	}
}
.t-page-result__button:last-of-type a {
	color: #000000;
	border: 2px solid #000000;
	background-color: #ffffff;
}
.t-page-result__stamp {
	position: absolute;
	top: -40px;
	right: -19px;
	transform: translateY(0) scale(0);
	width: 94px;
}
@media screen and (min-width: 769px) {
	.t-page-result__stamp {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		top: -220px;
		right: auto;
		left: -120px;
		transform: translateY(0) scale(0);
		width: 205px;
	}
}

.t-page-popup {
	opacity: 0;
	pointer-events: none;
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100dvh;
	background-color: #7fcd43;
	overflow-y: scroll;
}
.t-page-popup__close {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 30px;
}
@media screen and (min-width: 769px) {
	.t-page-popup__close {
		width: 37px;
		right: 30px;
		cursor: pointer;
		transition: opacity 0.3s ease 0s;
	}
}
.t-page-popup__close:hover {
	opacity: 0.6;
}
.t-page-popup__inner {
	display: flex;
	flex-direction: column;
	gap: 20px 10px;
	width: 89.3333333333%;
	height: auto;
	margin: 0 auto;
	padding: 50px 0;
}
@media screen and (min-width: 769px) {
	.t-page-popup__inner {
		width: 100%;
		max-width: 624px;
	}
}
.t-page-popup__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0 10px;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 36px;
	box-sizing: border-box;
}
@media screen and (min-width: 769px) {
	.t-page-popup__item {
		padding: 20px 32px;
	}
}
.t-page-popup__number {
	display: flex;
	width: 20px;
	height: 16px;
	-o-object-fit: contain;
	object-fit: contain;
}
@media screen and (min-width: 769px) {
	.t-page-popup__number {
		width: 25px;
		height: 20px;
	}
}
.t-page-popup__card {
	width: 66px;
	border-radius: 7px;
	box-shadow: 2px 2px 1.6px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 769px) {
	.t-page-popup__card {
		width: 114px;
		margin-right: 20px;
		border-radius: 9px;
		box-shadow: 2.62px 2.62px 2.18px rgba(0, 0, 0, 0.15);
	}
}
.t-page-popup__contents {
	flex: 1;
}
.t-page-popup__contents__question {
	margin-bottom: 0.85em;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 16px;
}
@media screen and (min-width: 769px) {
	.t-page-popup__contents__question {
		font-size: 20px;
	}
}
.t-page-popup__contents__answer {
	margin-bottom: 0.4em;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 14px;
	line-height: 1.27;
}
@media screen and (min-width: 769px) {
	.t-page-popup__contents__answer {
		font-size: 18px;
	}
}
.t-page-popup__contents__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-style: normal;
	font-size: 12px;
	line-height: 1.75;
}
@media screen and (min-width: 769px) {
	.t-page-popup__contents__text {
		font-size: 14px;
	}
}
.t-page-popup__contents__text em {
	background: linear-gradient(transparent 80%, #7FCD43 50%);
	padding: 0 4px;
}