@charset "UTF-8";

.page-title {
	padding: 64px 0 100px;
	background: url(../img/intro_bg.png) no-repeat center bottom;
}

.page-title .en-title {
	color: var(--green);
}

.month-title-area {
	margin: 0;
	padding: 40px 0;
	background-color: rgba(86, 174, 83, 0.2);
	position: relative;
	text-align: center;
}

.survey {
	padding: 64px 0 0;
	background: #faf8ed;
}

.title-area__sub-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--green);
	text-align: center;
}

.title-area__title {
	margin-top: 8px;
	font-size: 40px;
	font-weight: 700;
	text-align: center;
}

.section-wrap .section-title-en {
	font-family: var(--text-en);
	font-weight: 800;
	line-height: 1;
	color: var(--yellow);
	text-align: center;
}

.section-wrap .section-title {
	margin-top: 2px;
	font-size: 32px;
	font-weight: 700;
	text-align: center;
}

.section-wrap .section-title span {
	position: relative;
}

.section-wrap .section-title span:before {
	width: 100%;
	height: 3px;
	background-color: var(--yellow);
	position: absolute;
	content: '';
	bottom: -8px;
	left: 0;
}

/*================================================================
#anchor
================================================================ */
.anchor .anchor__list {
	width: calc(100% / 12 - 16px);
}

/*================================================================
# アンケート
================================================================ */
.section-wrap .survey-detail {
	position: relative;
}

.page-title--survey .title span {
	background-color: var(--black);
}

/*
------------------------------------------------------ */
.survey-month-nav {
	margin: 0;
	padding: 0 0 40px;
	background: #faf8ed;
}

.survey-month-nav__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow-x: auto;
	white-space: nowrap;
	gap: 12px;
}

.survey-month-nav__item {
	flex: 0 0 auto;
}

.survey-month-nav__item span,
.survey-month-nav__item a {
	min-width: 56px;
	height: 40px;
	padding: 0 18px;
	border-radius: 9999px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-family: var(--text-en);
	font-size: 14px;
	font-weight: 800;
	color: #555;
	letter-spacing: 0;
	transition: 0.3s;
}

.survey-month-nav__item--year span {
	background: #e8e2d0;
}

.survey-month-nav__item a {
	border: 1px solid #e8e2d0;
	background-color: #fff;
}

.survey-month-nav__item a:hover {
	border-color: #58bae4;
	background: #58bae4;
	color: #fff;
}

.survey-month-nav__item.is-current a {
	border-color: var(--black);
	background: var(--black);
	color: #fff;
}

/*
------------------------------------------------------ */
.survey-dashboard {
	margin: 0;
	padding: 80px 0 0;
	display: flex;
	align-items: center;
	gap: 32px;
}

.survey-card--overall {
	width: 50%;
	padding: 28px;
	border-radius: 32px;
	background-color: #fff;
	text-align: center;
}

.survey-card--highlight {
	flex: 1 1 0;
}

.survey-card__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	gap: 16px;
}

.survey-card__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--black);
}

.survey-card__badge {
	padding: 6px 14px;
	border-bottom: 1px solid #cfdbc4;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-family: var(--text-en);
	font-size: 14px;
	font-weight: 800;
	color: var(--green);
	letter-spacing: 0.08em;
}

.survey-title {
	text-align: center;
}

.survey-overall {
	margin-top: 24px;
}

.survey-score {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 12px;
}

.survey-score__value {
	font-family: var(--text-en);
	font-size: 92px;
	font-weight: 800;
	line-height: 1;
	color: var(--black);
	letter-spacing: 0;
}

.survey-score__denom {
	padding-bottom: 14px;
	font-family: var(--text-en);
	font-size: 18px;
	font-weight: 700;
	color: var(--gray);
}

.survey-card--summary .survey-card__title {
	margin: 16px 0 8px;
}

.survey-overall__count,
.survey-card__count {
	margin: 8px 0;
	font-size: 12px;
	font-weight: 700;
	color: var(--gray);
}

.survey-stars {
	--star-size: 34px;
	--star-color: #e6e1d6;
	--star-fill: var(--yellow);
	--rating-percent: calc(var(--rating) / 5 * 100%);
	position: relative;
	display: inline-block;
	font-size: var(--star-size);
	line-height: 1;
	letter-spacing: 4px;
}

.survey-stars--small {
	--star-size: 22px;
	letter-spacing: 2px;
}

.survey-stars__base,
.survey-stars__fill {
	font-family: "Arial", sans-serif;
}

.survey-stars__base {
	color: var(--star-color);
}

.survey-stars__fill {
	width: var(--rating-percent);
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	color: var(--star-fill);
	white-space: nowrap;
}

.survey-highlight {
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 14px;
}

.survey-highlight__item {
	padding: 8px 18px;
	border-bottom: 2px solid #eadbc2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}

.survey-highlight__k {
	font-size: 16px;
	font-weight: 700;
	color: var(--black);
}

.survey-stars--tiny {
	--star-size: 20px;
	margin-top: 0;
	vertical-align: middle;
	letter-spacing: 1px;
}

.survey-highlight__v {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.survey-highlight__v b {
	display: inline-block;
	text-align: right;
}

/*
------------------------------------------------------ */
.survey-anchor {
	margin: 64px 0 0;
}

.survey-anchor .anchor__ul {
	margin-left: -16px;
}

.survey-anchor .anchor__list {
	width: calc(100% / 6 - 16px);
}

.survey-anchor .anchor__link {
	border: 3px solid #eadbc2;
	font-size: 16px;
}

.title-area--survey {
	text-align: center;
}

.survey-block {
	margin: 80px 0 0;
}

.survey-grid {
	margin: 40px 0 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}

.survey-grid .survey-card {
	width: calc((100% - 48px) / 3);
	padding: 32px;
	border-radius: 24px;
	background-color: #fff;
}

.survey-score-mini {
	margin: 0 0 4px;
	font-family: var(--text-en);
	font-size: 52px;
	font-weight: 800;
	line-height: 1;
	color: var(--pink);
	letter-spacing: 0;
}

.survey-score-mini span {
	margin-left: 4px;
	font-size: 18px;
	color: #555;
}

.survey-mini {
	margin: 16px 0 0;
	padding: 20px 0 0;
	list-style: none;
	border-top: 2px solid #efe4d4;
	display: grid;
	gap: 12px;
}

.survey-mini li {
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	font-weight: 700;
	gap: 12px;
}

.survey-mini li span {
	font-size: 14px;
	font-weight: 600;
	color: var(--gray);
}

.survey-mini li b {
	font-family: var(--text-en);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--black);
}

.survey-detail-list {
	margin: 120px 0 0;
	display: grid;
	gap: 100px;
}

.survey-detail__grid {
	margin: 64px 0 0;
	padding: 80px;
	border-radius: 64px;
	background-color: #fff;
	display: grid;
	align-items: start;
	grid-template-columns: 380px 1fr;
	gap: 64px;
}

.survey-detail__grid .survey-card {
	margin: 0;
}

.survey-detail__voices {
	margin: 0;
}

.survey-detail__score-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
}

.survey-detail__score-row .survey-stars {
	margin: 0 0 8px;
}

.survey-score-lg {
	font-family: var(--text-en);
	font-size: 72px;
	font-weight: 800;
	line-height: 1;
	color: var(--pink);
	letter-spacing: 0;
}

.survey-score-lg span {
	margin-left: 4px;
	font-size: 20px;
	color: #555;
}

/*================================================================
#
================================================================ */
.survey-voice__title {
	margin: 0;
	position: relative;
	display: inline-flex;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--black);
	gap: 10px;
}

.survey-voice__title::before {
	width: 12px;
	height: 12px;
	border-radius: 9999px;
	background: var(--green);
	box-shadow: 0 0 0 4px rgba(86, 174, 82, 0.15);
	content: "";
}

.survey-voice__title::after {
	height: 1px;
	margin-left: 10px;
	background: linear-gradient(90deg, rgba(234, 219, 194, 1), rgba(234, 219, 194, 0));
	content: "";
	flex: 1 1 auto;
}

.survey-voice {
	margin: 18px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	font-size: 15px;
	font-weight: 700;
	line-height: 2;
	color: #555;
	gap: 14px;
}

.survey-voice>li {
	padding: 16px 18px 16px 52px;
	border: 2px solid #efe4d4;
	border-radius: 22px;
	background: #fffdf8;
	position: relative;
}

.survey-voice>li::before {
	position: absolute;
	content: "“";
	top: 10px;
	left: 16px;
	font-size: 48px;
	font-weight: 800;
	line-height: 1;
	color: #efe4d4;
}

/*================================================================
#
================================================================ */
.survey-notes {
	margin: 64px 0 0;
	padding: 0 0 40px;
}

.survey-notes__inner {
	margin: 0;
}

.survey-notes__title {
	font-size: 18px;
	font-weight: 700;
	color: var(--black);
}

.survey-notes__list {
	margin: 14px 0 0;
	padding-left: 20px;
	font-size: 14px;
	font-weight: 700;
	line-height: 2;
	color: #666;
}

/*================================================================
#
================================================================ */
.section-wrap .intro_bg {
	background-color: #fff;
}

.section-wrap .intro_bg img {
	transform: scale(1, -1);
}

/* survey
------------------------------------------------------ */
.survey .survey-stars--rating40 {
	--rating: 4.0;
}

.survey .survey-stars--rating41 {
	--rating: 4.1;
}

.survey .survey-stars--rating42 {
	--rating: 4.2;
}

.survey .survey-stars--rating43 {
	--rating: 4.3;
}

.survey .survey-stars--rating44 {
	--rating: 4.4;
}

.survey .survey-stars--rating45 {
	--rating: 4.5;
}

.survey .survey-stars--rating46 {
	--rating: 4.6;
}

.survey .survey-stars--rating47 {
	--rating: 4.7;
}

.survey .survey-stars--rating48 {
	--rating: 4.8;
}

.survey .survey-stars--rating49 {
	--rating: 4.9;
}

.survey .survey-stars--rating50 {
	--rating: 5.0;
}