:root {
	--indigo: #000B4A;
	--sunset-orange: #EB5252;
	--lavender: #7D4BF2;
	--yellow: #FFE66B;
	--indigo: #2C3F46;

	--white: #fff;
	--black: #504F55;
	--primary: #1CC0B2;
	--accent: #FF8282;
	--text-color: #504F55;
	--text-color-gray: #8A8A8E;
	--bg-blue: #D2F2F0;
	--bg-pink: #FFD5D5;
	--bg-gray: #DCDCDD;
	--bg-light-blue: #F4FCFB;
	--bg-light-pink: #FFF9F9;
	--bat-gray: #758192;
	--line: #E3E6E9;
	--line-pink: #FFC0C0;
	--man: #6BD0E7;
	--woman: #FFA7AB;
	--light-man: #DAF3F9;
	--light-woman: #FFE9EA;
	--note: #8A8A8E;

	--float-bg: rgba(255, 255, 255, 0.3);
	--box-shadow: 0px 0px 8px 0px rgba(138, 138, 142, 0.38);

}

.zen-maru-gothic-regular {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.zen-maru-gothic-medium {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.zen-maru-gothic-bold {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-style: normal;
}

.zen-maru-gothic-bold {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-style: normal;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Zen Maru Gothic", sans-serif;
	font-feature-settings: "palt";
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: var(--text-color);
	background: var(--white);
}

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

h2 {
	font-size: 24px;
	letter-spacing: 0.05em;
	font-weight: 600;
}

.blue {
	color: var(--primary);
	font-weight: 600;
	font-size: 18px;
}

.container {
	display: flex;
	justify-content: center;
	background: var(--bg-light-blue);
}

.main {
	max-width: 480px;
	width: 100%;
	position: relative;
	background: var(--white);
	padding-bottom: 111px;
}

.header {
	display: flex;
	justify-content: flex-end;
	padding: 12px 8px 4px;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--white);
	height: 44px;
}

.header__logo {
	max-width: 122px;
	width: 100%;
	display: block;
	margin: 0 auto;
}

br.br-pc {
	display: none;
}

br.br-sp {
	display: block;
}

/* ーーーーーーーーーーーー
floating-button__area
ーーーーーーーーーーーー */
.floating-button__area {
	padding: 8px 16px 16px;
	background-color: rgba(255, 255, 255, 0.8);
	text-align: center;
	position: fixed;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 1000;
	width: 100%;
	bottom: 0;
}

.floating-button__area.is--visible {
	opacity: 1;
	visibility: visible;
}

.floating-button__copy {
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
	margin-bottom: 2px;
	color: var(--accent);
}

.floating-button__copy::before,
.floating-button__copy::after {
	content: "";
	display: block;
	width: 11px;
	height: 0;
	border-top: 2px dashed var(--accent);
	box-sizing: border-box;
	position: relative;
	bottom: -2px;
}

.floating-button__copy::before {
	transform: rotate(60deg);
}

.floating-button__copy::after {
	transform: rotate(-60deg);
}

/* ーーーーーーーーーーーー
fast-view
ーーーーーーーーーーーー */

.fast-view {
	position: relative;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fast-view img {
	width: 100%;
	height: auto;
	opacity: 0;
	animation: fadeIn 1s ease-out forwards;
}

.trial-price {
	position: relative;
}

.trial-price__img {
	width: 100%;
	height: auto;
}

.trial-price__badge {
	position: absolute;
	z-index: 10;
	top: 10%;
	left: 2%;
	animation: poyopoyo 2s ease-out infinite;
	opacity: 1;
}

@keyframes poyopoyo {

	0%,
	40%,
	60%,
	80% {
		transform: scale(1.0);
	}

	50%,
	70% {
		transform: scale(1.15);
	}
}


.button-area {
	text-align: center;
	padding: 32px 16px 40px;
}

.button-cv {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	width: 100%;
	max-width: 343px;
	padding: 0 24px;
	border: 3px solid var(--accent);
	border-radius: 1000px;
	background: linear-gradient(60deg, #ff878d 0%, #ff9a9f 100%);
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	padding-bottom: 2px;
	/* 内側の白いライン */
	box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 1);
}

.button-cv::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url('../img/icon-arrow-right.svg') no-repeat center/contain;
	transform: translateY(-50%);
}

/* ーーーーーーーーーーーー
conditions
ーーーーーーーーーーーー */
.conditions {
	position: relative;
	width: 100%;
	text-align: center;
	padding: 0 16px 0;
}

.conditions__title {
	height: 397px;
	overflow: hidden;
	background-image: url(../img/bad-bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	display: block;
	box-sizing: border-box;
	width: calc(100% + 32px);
	margin: 0 -16px;
	max-width: none;
	color: var(--white);
}

.conditions__title--main {
	margin-top: 32px;
	position: relative;
}

.conditions__title--main::before {
	position: absolute;
	content: "";
	background-image: url(../img/line-white.svg);
	width: 258px;
	height: 6px;
	background-repeat: no-repeat;
	background-size: cover;
	transform: translateX(27%);
	bottom: -3px;
}

.conditions__title--sub {
	font-size: 18px;
	position: relative;
	font-style: italic;
	padding-left: 40px;
	margin-top: 10px;
}

.conditions__title--sub::before {
	position: absolute;
	content: "";
	width: 66px;
	height: 54px;
	background-image: url(../img/moya-img.svg);
	background-size: cover;
	background-repeat: no-repeat;
	top: -16px;
	transform: translateX(-71%);
}


@keyframes pulse {
	0% {
		transform: scale(1);
	}

	50% {
		transform: scale(0.92);
	}

	100% {
		transform: scale(1);
	}
}

.conditions__anxiety--first,
.conditions__anxiety--second,
.conditions__anxiety--third,
.conditions__anxiety--forth {
	transform-origin: center center;
	animation-name: pulse;
	animation-duration: 4s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	position: absolute;
}

.conditions__anxiety--first {
	top: 150px;
	left: 13px;
	width: 50%;
	max-width: 200px;
}

.conditions__anxiety--second {
	top: 214px;
	right: 120px;
	width: 50%;
	max-width: 210px;
}

.conditions__anxiety--third {
	top: 291px;
	left: 15px;
	width: 50%;
	max-width: 190px;
}

.conditions__anxiety--forth {
	top: 284px;
	right: 13px;
	width: 40%;
	max-width: 160px;
}

.conditions__bg {
	height: 225px;
	background: var(--primary);
	box-sizing: border-box;
	width: calc(100% + 32px);
	margin-left: -16px;
	margin-right: -16px;
}

.conditions__box {
	background: var(--bg-light-blue);
	padding: 16px;
	box-shadow: var(--box-shadow);
	border-radius: 8px;
	position: relative;
	top: -20px;
	width: calc(100% - 32px);
	margin: 0 auto;
	line-height: 100%;
}

.conditions__text--green {
	position: relative;
	color: var(--primary);
	font-size: 18px;
	font-weight: 600;
	font-style: italic;
}

.conditions__text--green.left {
	left: -11px;
	text-align: left;
}

.conditions__text--green.right {
	right: -11px;
	text-align: right;
}

.conditions__box ul {
	padding: 16px 0;
	text-align: left;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-weight: 500;
}

.conditions__box li {
	padding-left: 30px;
	height: 24px;
	display: flex;
	align-items: center;
}

.conditions__box li::before {
	position: absolute;
	content: "";
	background-image: url(../img/icon-check.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 24px;
	height: 24px;
	left: 0;
}

/* ーーーーーーーーーーーー
fit
ーーーーーーーーーーーー */
.fit {
	text-align: center;
	background-image: linear-gradient(180deg, rgba(244, 252, 251, 1) 68%, rgba(255, 213, 213, 1));
}

.fit__arrow {
	background-image: url(../img/arrow-bg.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	top: -1px;
}

.fit__wrapper {
	padding: 0 16px 60px
}

.fit__title--sub {
	font-size: 16px;
	color: var(--white);
	line-height: 1;
	font-weight: 500;
}

.fit__title--main {
	font-size: 24px;
	color: var(--white);
	line-height: 1.4;
	margin-top: 12px;
}

.fit-reasons__list {
	margin-top: 34px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.fit-reasons__badge {
	animation: poyopoyo 2s ease-out infinite;
	opacity: 1;
}

.fit-reasons__text {
	margin-top: 40px;
	font-weight: 500;
}

.fit-reasons__image--first,
.fit-reasons__image--second,
.fit-reasons__image--third {
	margin-top: 16px;
	width: 100%;
	height: auto;
}

.fit-reasons__image--third {
	width: 100%;
	height: 210px;
	object-fit: cover;
	border-radius: 8px;
}

.fit-comparison {
	margin-top: 72px;
}

.fit-comparison__title {
	width: 100%;
	height: auto;
}

.fit-comparison__graph {
	margin-top: 16px;
	width: 100%;
	height: auto;
}

.fit-comparison p {
	margin-top: 24px;
	line-height: 1.9;
	font-weight: 500;
}

.fit__button-area {
	margin-top: 36px;
}

.marker-pink {
	background: rgba(255, 130, 130, 0.8);
	border-radius: 100px;
	padding: 1px 11px 1px 9px;
	color: var(--white);
	font-weight: 600;
}

.fit__button-area p {
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
	margin-bottom: 8px;
	font-size: 18px;
}

.fit__button-area p::before,
.fit__button-area p::after {
	content: "";
	display: block;
	width: 28px;
	height: 0;
	border-top: 2px dashed #333;
	box-sizing: border-box;
	position: relative;
	bottom: 4px;
}

.fit__button-area p::before {
	transform: rotate(60deg);
}

.fit__button-area p::after {
	transform: rotate(-60deg);
}

/* ーーーーーーーーーーーー
osasoi
ーーーーーーーーーーーー */
.osasoi {
	padding: 0 16px 56px;
	position: relative;
}

.osasoi::before {
	position: absolute;
	content: "";
	height: 243px;
	width: 269px;
	background-image: url(../img/osasoi-bg.svg);
	background-repeat: no-repeat;
	background-size: cover;
	top: 174px;
	left: 50%;
	transform: translateX(-50%);
}

.osasoi-read__img {
	display: block;
	box-sizing: border-box;
	width: calc(100% + 32px);
	margin: 0 -16px;
	max-width: none;
}

.osasoi p {
	padding-top: 64px;
	position: relative;
	text-align: center;
	font-weight: 500;
}

.osasoi p::after {
	position: absolute;
	content: "";
	height: 88px;
	width: 88px;
	background-image: url(../img/badge-app.svg);
	background-repeat: no-repeat;
	background-size: cover;
	left: 0;
	bottom: 72px;
	animation: poyopoyo 2s ease-out infinite;
	opacity: 1;
}

.osasoi__img {
	position: relative;
	z-index: 1;
	border: 4px solid var(--primary);
	border-radius: 8px;
	margin-top: 24px;
	width: 100%;
	height: auto;
}

.app-store-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 16px;
}

/* ーーーーーーーーーーーー
data
ーーーーーーーーーーーー */
.data {
	background: var(--bg-light-blue);
	text-align: center;
	padding: 40px 16px 0;
}

.data__title {
	padding-bottom: 12px;
}

.data__title--sub {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	font-weight: 500;
}

.data__title--main {
	color: var(--primary);
	position: relative;
	padding-top: 12px;
	line-height: 1.2;

}

.data__title--main::before {
	position: absolute;
	content: "";
	background-image: url(../img/line-bule.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 246px;
	height: 6px;
	bottom: -12px;
	left: 48%;
	transform: translateX(-48%);
}

.data__graph {
	margin-top: 24px;
}

.data__graph-title {
	font-size: 18px;
	font-weight: 600;
	color: var(--white);
	background: rgba(28, 192, 178, 0.8);
	border-radius: 100px;
	max-width: 220px;
	height: 27px;
	line-height: 1.4;
	margin: 0 auto;
}

.data__graph-img {
	margin-top: 24px;
	box-shadow: var(--box-shadow);
	border-radius: 8px;
	width: 100%;
	height: auto;
}

.dera__badge {
	margin-top: 16px;
	position: relative;
	z-index: 0;
}

.dera__badge::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -16px;
	transform: translateY(-50%);
	width: calc(100% + 32px);
	height: 120px;
	background: url("../img/line-heart.svg") no-repeat center/contain;
	z-index: -1;
}

.dera__badge-img {
	animation: poyopoyo 2s ease-out infinite;
	opacity: 1;
}

.data__message {
	margin-top: 4px;
	background: var(--light-woman);
	padding: 8px 8px 16px;
	border-radius: 8px;
	line-height: 1.9;
	font-weight: 500;
}

.data .number-big {
	font-size: 24px;
}

.uneasiness__img {
	margin-top: 40px;
	width: 100%;
	height: auto;
}

.data .campaign-img {
	padding-top: 16px;
	display: block;
	box-sizing: border-box;
	width: calc(100% + 32px);
	margin: 0 -16px;
	max-width: none;
}

/* ーーーーーーーーーーーー
event
ーーーーーーーーーーーー */

.event .wave-top,
.wave-bottom {
	width: 100%;
	height: auto;
}

.event__wrapper {
	background: var(--primary);
	text-align: center;
	padding: 40px 16px;
}

.event__title {
	padding-bottom: 12px;
}

.event__title--sub {
	color: var(--white);
	font-weight: 500;
}

.logo__img--white {
	padding-bottom: 4px;
}

.event__title--main {
	color: var(--white);
	position: relative;
	line-height: 1.2;
	margin-top: 12px;
}

.event__title--main::after {
	position: absolute;
	content: "";
	background-image: url(../img/line-white.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 258px;
	height: 6px;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
}

.event__container {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	gap: 162px;
}

.many-event {
	padding-top: 114px;
}

.many-event__ditail,
.experience-event__ditail {
	position: relative;
}

.speech-bubble {
	background: var(--bg-light-blue);
	padding: 16px;
	border-radius: 6px;
	position: absolute;
	top: -114px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 330px;
	width: calc(100% - 32px);
	line-height: 100%;
	z-index: 10;
	filter: drop-shadow(0px 0px 8px rgba(138, 138, 142, 0.6));
}

.speech-bubble::before {
	content: "";
	position: absolute;
	top: 119px;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid var(--bg-light-blue);
}

.speech-bubble ul {
	text-align: left;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.speech-bubble li {
	padding-left: 30px;
	height: 24px;
	display: flex;
	align-items: center;
	font-weight: 500;
}

.speech-bubble li::before {
	position: absolute;
	content: "";
	background-image: url(../img/icon-check.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 24px;
	height: 24px;
	left: 0;
}

.speech-bubble__text--green {
	position: relative;
	color: var(--primary);
	font-size: 18px;
	font-weight: 600;
	font-style: italic;
	margin-top: 16px;
}

.event .ditail-curd {
	background: var(--white);
	border-radius: 8px;
	padding: 24px 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.event h3 {
	font-size: 24px;
	font-weight: 600;
}

.event__img {
	width: 100%;
	height: 183px;
	border-radius: 6px;
}

.event .ditail-curd ul {
	width: 100%;
}

.event .ditail-curd p {
	text-align: left;
}

.event .slick-list.draggable {
	height: 183px;
	border-radius: 6px;
	object-fit: cover;
	margin-top: 16px;
	margin-top: 16px;
	height: auto;
}

.event .slick-dots li button:before {
	content: '';
}

.event .slick-dots {
	bottom: 10px;
	display: flex !important;
	justify-content: center;
	gap: 16px;
	padding: 0;
	list-style: none;
	height: 32px;
	align-items: flex-end;
}

.event .slick-dots li button {
	font-size: 0;
	color: transparent;
}

.event .slick-dots li button:before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	background-color: var(--bg-gray);
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

.event .slick-dots li.slick-active button:before {
	background-color: var(--primary);
}

.event .ditail-curd p {
	margin-top: 16px;
}

.event .ditail-button__area {
	margin-top: 24px;
}

.button-event {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	width: 100%;
	max-width: 343px;
	padding: 0 24px;
	border: 3px solid var(--accent);
	border-radius: 1000px;
	background: var(--white);
	color: var(--accent);
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	padding-bottom: 2px;
}

.button-event::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../img/icon-arrow-right-pink.svg) no-repeat center / contain;
	transform: translateY(-50%);
}

/* ーーーーーーーーーーーー
safety
ーーーーーーーーーーーー */
.safety__wrapper {
	padding: 40px 16px 56px;
	text-align: center;
}

.safety__title {
	padding-bottom: 12px;
}

.safety__title--sub {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	font-weight: 500;
}


.safety__title--main {
	color: var(--primary);
	position: relative;
	margin-top: 12px;
	line-height: 1.2;
}

.safety__title--main::before {
	position: absolute;
	content: "";
	background-image: url(../img/line-bule.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 246px;
	height: 6px;
	bottom: -12px;
	left: 48%;
	transform: translateX(-48%);
}

.safety-list {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.safety-list li:nth-child(odd) {
	background: var(--bg-blue);
}

.safety-list li:nth-child(even) {
	background: var(--bg-light-blue);
}

.safety-list__card {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 22px 12px;
	border-radius: 8px;
	gap: 10px;
}

.safety .card__icon {
	min-width: 68px;
	height: 68px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.safety .card-content {
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 8px;
	letter-spacing: 0;
}

.safety .card-content__title {
	font-weight: 600;
}

.safety .card-content__text {
	font-size: 14px;
}


/* ーーーーーーーーーーーー
step
ーーーーーーーーーーーー */
.step__wrapper {
	background: var(--primary);
	text-align: center;
	padding: 40px 16px 56px;
	position: relative;
}

.step__wrapper::before {
	position: absolute;
	content: "";
	background-image: url(../img/step-decoration.webp);
	background-repeat: no-repeat;
	background-size: cover;
	width: 83px;
	height: 79px;
	left: 0;
	top: 0;
}

.step__title {
	padding-bottom: 12px;
	color: var(--white);
}

.step__title--sub {
	line-height: 1;
	font-weight: 500;
}

.step__title--main {
	position: relative;
	margin-top: 8px;
	line-height: 1.2;
}

.step__title--main::after {
	position: absolute;
	content: "";
	background-image: url(../img/line-white.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 258px;
	height: 6px;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
}

.step__title--main .number-big {
	font-size: 40px;
	line-height: 1;
}

.step__container {
	padding-top: 8px;
}

.step__img {
	height: auto;
	display: block;
	box-sizing: border-box;
	width: calc(100% + 32px);
	margin: 0 -16px;
	max-width: none;
}

.step__button-area p {
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2px;
	margin-bottom: 16px;
	font-size: 18px;
	color: var(--white);
}

.step__button-area p::before,
.step__button-area p::after {
	content: "";
	display: block;
	width: 28px;
	height: 0;
	border-top: 2px dashed var(--white);
	box-sizing: border-box;
	position: relative;
	top: 10px;
}

.step__button-area p::before {
	transform: rotate(60deg);
}

.step__button-area p::after {
	transform: rotate(-60deg);
}


/* ーーーーーーーーーーーー
episode
ーーーーーーーーーーーー */
.episode {
	background-image: url(../img/episode-bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: auto;
}

.episode__wrapper {
	padding-top: 40px;
	text-align: center;
}

.episode__title {
	padding-bottom: 12px;
}

.episode__title--sub {
	font-weight: 500;
}

.episode .logo__img {
	padding-bottom: 4px;
}

.episode__title--main {
	color: var(--accent);
	position: relative;
	margin-top: 12px;
	line-height: 1.2;
}

.episode__title--main::before {
	position: absolute;
	content: "";
	background-image: url(../img/line-pink.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 246px;
	height: 6px;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
}

.episode__container {
	margin-top: 36px;
}

.voice__container {
	margin-top: 32px;
}

.episode .slick-list {
	overflow: hidden;
	padding: 0;
}

.episode .user-episode-slider {
	list-style: none;
	margin: 0;
	padding: 0;
	margin-top: 16px;
}

.episode .slick-track {
	display: flex;
	flex-direction: row;
	gap: 8px;
	padding: 6px 0;
}

.user-episode-slider .slick-slide {
	box-sizing: border-box;
}

.user-episode-slider .voice-card {
	width: 312px;
	background: var(--bg-light-pink);
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--box-shadow);
}

.user-episode-slider .voice-img {
	width: 100%;
	height: 182px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.user-episode-slider .voice-namber {
	color: #fff;
	position: relative;
	line-height: 1;
	letter-spacing: 0.02em;
	font-size: 24px;
	font-weight: 600;
	left: -115px;
	top: 5px;
	display: inline;
}

.user-episode-slider .voice-namber .namber {
	font-size: 40px;
	padding-right: 21px;
	letter-spacing: 0.05em;
	line-height: 0.8;
}

.user-episode-slider .voice-img::before {
	position: absolute;
	content: "";
	width: 128px;
	height: 117px;
	background-image: url(../img/voice-namber-bg.svg);
	background-repeat: no-repeat;
	background-size: cover;
	top: -30px;
	left: -40px;
}

.user-episode-slider .voice-body {
	flex: 1;
	padding: 16px;
}

.user-episode-slider .slick-dots {
	margin-top: 12px;
	display: flex !important;
	justify-content: center;
	list-style: none;
	padding: 0;
	gap: 16px;
}

.user-episode-slider .slick-dots li {
	margin: 0;
	line-height: 1;
}

.user-episode-slider .slick-dots li button {
	font-size: 0;
	color: transparent;
}

.user-episode-slider .slick-dots li button:before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--bg-gray);
	transition: background-color 0.3s;
}

.user-episode-slider .slick-dots li.slick-active button:before {
	background-color: var(--accent);
}

button.slick-prev.slick-arrow {
	position: absolute;
	content: "";
	z-index: 10;
	left: 25%;
	transform: translateX(-25%);
	bottom: -12px;
	background-image: url(../img/icon-circle-arrow-left.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 32px;
	height: 32px;
	font-size: 0;
	color: transparent;
}

button.slick-next.slick-arrow {
	position: absolute;
	content: "";
	font-size: 0;
	color: transparent;
	z-index: 10;
	left: 75%;
	transform: translateX(-75%);
	bottom: -12px;
	background-image: url(../img/icon-circle-arrow-right.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 32px;
	height: 32px;
}

.voice-body__couple {
	line-height: 1.5;
	font-weight: 600;
	color: var(--accent);
}

.voice-body__title {
	line-height: 1.5;
	font-weight: 600;
	text-align: left;
	margin-top: 16px;
}

.voice-body__text {
	margin-top: 8px;
	text-align: left;
	font-size: 12px;
}

.episode-message__box {
	position: relative;
}

.episode .message__img {
	width: 100%;
	height: auto;
	padding-top: 56px;
}

.episode-message__badge {
	position: absolute;
	bottom: 26%;
	left: 19%;
}

.episode-message__badge {
	animation: poyopoyo 2s ease-out infinite;
	opacity: 1;
}

/* ーーーーーーーーーーーー
faq
ーーーーーーーーーーーー */
.faq__wrapper {
	background: var(--primary);
	text-align: center;
	padding: 40px 16px 56px;
}

.faq__title {
	padding-bottom: 12px;
	position: relative;
	color: var(--white);
}

.faq__title::after {
	position: absolute;
	content: "";
	background-image: url(../img/line-white.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 258px;
	height: 6px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.faq__container {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-top: 32px;
}

.faq__container .note {
	font-size: 10px;
	color: var(--note);
	padding-top: 8px;
}

.faq__container {
	text-align: left;
}

.faq__item {
	border-radius: 8px;
	overflow: hidden;
	width: 100%;
}

.faq__question {
	padding: 5px 35px 5px 48px;
	background: var(--bg-light-blue);
	position: relative;
	color: var(--primary);
	font-size: 14px;
	letter-spacing: 0;
	line-height: 1.75;
	font-weight: 600;
	height: 60px;
	display: flex;
	align-items: center;
}

.faq__question:hover {
	opacity: 80%;
}

.faq__question::after,
.faq__question::before {
	position: absolute;
	content: '';
	top: 1px;
	right: 16px;
	bottom: 0;
	width: 16px;
	height: 1.23px;
	margin: auto;
	background: var(--black);
	transform-origin: center;
	transition: transform 0.3s ease;
}

.faq__question::before {
	transform: rotate(0deg);
}

.faq__question::after {
	transform: rotate(90deg);
}

.faq__question.active::before {
	transform: rotate(45deg);
}

.faq__question.active::after {
	transform: rotate(-45deg);
}

.faq__answer {
	display: none;
	background-color: var(--white);
	padding: 16px 12px 16px 48px;
	font-size: 14px;
}

.faq__question span,
.faq__answer span {
	position: relative;
}

.faq__question span::before {
	position: absolute;
	content: "Q.";
	top: 50%;
	left: 12px;
	color: var(--primary);
	font-size: 24px;
	transform: translateY(-50%);
	left: -37px;
}

.faq__answer span::before {
	position: absolute;
	content: "A.";
	left: 12px;
	color: var(--text-color);
	font-size: 24px;
	left: -36px;
	top: -8px;
	font-weight: 600;
}

/* ーーーーーーーーーーーー
media
ーーーーーーーーーーーー */
.media__wrapper {
	padding: 40px 16px 0;
	text-align: center;
}

.media__title {
	padding-bottom: 12px;
	color: var(--primary);
}

.media__title--main {
	position: relative;
}

.media__title--main::before {
	position: absolute;
	content: "";
	background-image: url(../img/line-bule.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 246px;
	height: 6px;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
}

.media__read-text {
	margin-top: 24px;
}

.media__container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 16px;
	padding-top: 24px;
}

.media-item {
	padding: 8px 16px 16px;
	border-radius: 8px;
	box-shadow: var(--box-shadow);
	background: var(--bg-light-blue);
}

.media-item h3 {
	font-size: 14px;
	font-weight: 600;
}

.media-item h3 span {
	padding: 0 4px;
}

.media-item p {
	font-size: 10px;
}

.media-item__img {
	border-radius: 6px;
	width: 120px;
	height: 152px;
	padding-top: 8px;
}

/* ーーーーーーーーーーーー
collaboration
ーーーーーーーーーーーー */
.collaboration__wrapper {
	padding: 56px 16px 60px;
	text-align: center;
}

.collaboration__title {
	padding-bottom: 12px;
	color: var(--primary);
}

.collaboration__title--main {
	position: relative;
}

.collaboration__title--main::before {
	position: absolute;
	content: "";
	background-image: url(../img/line-bule.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 246px;
	height: 6px;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
}

.collaboration__read-text {
	margin-top: 24px;
}

.collaboration__container {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 16px;
	padding-top: 24px;
}

.collaboration-item {
	padding: 8px 12px 12px;
	border-radius: 8px;
	box-shadow: var(--box-shadow);
	background: var(--bg-light-blue);
}

.collaboration-item h3 {
	font-size: 14px;
	font-weight: 600;
}

.collaboration-item h3 span {
	padding: 0 4px;
}

.collaboration-item p {
	font-size: 10px;
}

.collaboration-item__img {
	border-radius: 6px;
	width: 122px;
	height: 122px;
	padding-top: 8px;
}

.collaboration .slick-list.draggable {
	padding: 6px 0;
}

.collaboration-event-slider {
	overflow: hidden;
	margin: 0 -16px;
	width: calc(100% + 32px);
	box-sizing: border-box;
}

.collaboration-event-slider .slick-list {
	overflow: hidden;
	padding: 0;
	margin: 0;
}

.collaboration-event-slider .slick-track {
	display: flex !important;
}

.collaboration-event-slider .slick-slide {
	display: inline-block;
	float: none;
}

.collaboration-event-slider .collaboration-item {
	display: inline-block;
	margin-right: 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.collaboration-event-slider .collaboration-item:last-child {
	margin-right: 0;
}

/* ーーーーーーーーーーーー
footer
ーーーーーーーーーーーー */
.footer {
	padding: 0 16px 16px;
	font-size: .625rem;
}

.footer__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.logo-footer {
	margin: 2.1875rem 0;
	text-align: left;
}

/* ーーーーーーーーーーーー
left-block,right-block
ーーーーーーーーーーーー */

.left-block,
.right-block {
	display: none;
}

/* ーーーーーーーーーーーー
.floating
ーーーーーーーーーーーー */
.floating-panel {
	position: fixed;
	bottom: 20px;
	right: -240px;
	width: 220px;
	border-radius: 4px;
	padding: 4px 8px 8px;
	background: var(--gradation, linear-gradient(158deg, #CCAB6F 0.71%, #BEC693 55.96%, #B3BC83 100%));
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transition: right 0.6s ease;
	z-index: 1000;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.floating-panel.show {
	right: 8px;
}

.floating-panel__copy {
	position: relative;
}

.floating-panel__copy::before {
	content: "";
	background: url(../img/deco_floating-copy.svg) no-repeat center center;
	background-size: contain;
	display: block;
	width: 18px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: -22px;
	transform: translateY(-50%);
}

.floating-panel__close {
	position: absolute;
	top: 4px;
	right: 4px;
	cursor: pointer;
	color: #fff;
	display: flex;
}

.floating-panel__btn {
	display: block;
	background: #4394B4;
	padding: 6px 16px 4px 16px;
	border-radius: 100vmax;
	color: var(--white);
	font-size: 14px;
	font-weight: 700;
	text-align: center;
}

/* ーーーーーーーーーーーー
.fade用
ーーーーーーーーーーーー */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .8s ease-out, transform .8s ease-out;
}

.fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-02 {
	opacity: 0;
	transform: translateX(-50%) translateY(20px);
	transition: opacity .8s ease-out, transform .8s ease-out;
}

.fade-in-02.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
	width: calc(100% - 12px);
}

.fade-in-03 {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .8s ease-out, transform .8s ease-out;
}

.fade-in-03.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media screen and (min-width: 640px) {
	.main {
		max-width: 424px;
		margin: 0 auto;
		box-shadow: 0px 0px 6px 0px rgba(138, 138, 142, 0.6);
		position: relative;
		z-index: 20;
	}

	br.br-pc {
		display: block;
	}

	br.br-sp {
		display: none;
	}

	.conditions__title--main::before {
		transform: translateX(2%);
	}

	.conditions__anxiety--first {
		top: 154px;
		right: 8px;
	}

	.conditions__anxiety--second {
		top: 216px;
		right: 110px;
	}

	.conditions__anxiety--third {
		top: 291px;
		left: 30px;
	}

	.conditions__anxiety--forth {
		top: 287px;
		left: 237px;
	}

	.conditions__title--main::before {
		right: 54px;
	}

	.left-block {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		flex: 1;
		padding: 40px 0px 40px 40px;
		height: 100vh;
		position: sticky;
		top: 0;
		overflow: hidden;
		background: var(--bg-light-blue);
	}

	.left-block::before {
		position: absolute;
		content: "";
		width: 537px;
		height: 275px;
		background-image: url(../img/pc-bg-leht.webp);
		background-size: cover;
		background-repeat: no-repeat;
		bottom: 0;
		left: 0;
	}

	.menu {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}

	.menu__anchor {
		display: flex;
		flex-direction: column;
		padding: 20px 0;
		gap: 16px;
	}

	.menu__anchor li {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 4px;
		padding: 4px 0px;
		color: var(--primary);
		font-size: 18px;
		font-weight: 600;
		position: relative;
	}

	.menu__anchor li::before {
		background: var(--primary);
		content: '';
		width: 100%;
		height: 2px;
		position: absolute;
		left: 0;
		bottom: 0;
		transform-origin: right top;
		transform: scale(0, 1);
		transition: transform .3s;
	}

	.menu__anchor li:hover::before {
		transform-origin: center top;
		transform: scale(1, 1);
	}

	.float-btn {
		right: 32px;
		bottom: 32px;
		margin: 0;
		width: 120px;
		height: 120px;
		font-size: 20px;
	}

	.right-block {
		display: none;
		position: relative;
	}

	.right-block::before {
		position: absolute;
		content: "";
		width: 513px;
		height: 252px;
		background-image: url(../img/pc-bg-right.webp);
		background-size: cover;
		background-repeat: no-repeat;
		bottom: 0;
		right: 0;
	}

	.button--ticket {
		left: auto;
		right: auto;
		top: 0;
		margin: 12px 0 0 334px;
	}
}

@media screen and (min-width: 1080px) {
	.main {
		padding-bottom: 0;
	}

	.floating-button__area.is--visible {
		display: none;
	}

	.button-cv {
		transition-duration: .2s;
	}

	.button-cv:hover {
		transform: scale(1.1);
		opacity: 80%;
	}

	.button-event {
		transition-duration: .2s;
	}

	.button-event:hover {
		transform: scale(1.1);
		opacity: 80%;
	}

	.right-block {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		flex: 1;
		padding: 40px 40px 40px 0;
		height: 100vh;
		position: sticky;
		top: 0;
		overflow: hidden;
		background: var(--bg-light-blue);
	}

	.right-block__content {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}

	.right-block__link {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 8px;
		text-align: center;
		line-height: 1.4;
		font-weight: 700;
		letter-spacing: 0.04em;
		padding: 20px 20px 16px;
	}

	.right-block__button {
		transition-duration: .2s;
	}

	.right-block__button:hover {
		transform: scale(1.3);
		opacity: 80%;
	}
}