@charset "UTF-8";
@import"https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@700&display=swap";
:root {
	--ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
	--ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
	--ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
}
.u-d-none {
	display: none!important;
}
@media (min-width: 768px) {
	.u-d-md-none {
		display: none!important;
	}
	.u-d-md-block {
		display: block!important;
	}
}
html {
	min-width: 360px;
}
@media (min-width: 768px) {
	html {
		min-width: 1280px;
	}
}
body {
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 14px;
}
.l-main {
	font-family: Noto Sans JP, sans-serif;
	font-feature-settings: "palt" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
a {
	color: currentColor;
	text-decoration: none;
}
img,
svg {
	pointer-events: none;
	vertical-align: middle;
}
ol,
ul {
	list-style: none;
}
h1 {
	color: #999999;
	font-size: 10px;
	font-weight: 400;
	margin: 0;
	padding: 0;
	text-align: right;
}
h2 {
	margin: 0;
}
main {
	overflow: hidden;
}
.slide-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s var(--ease-out-quint),transform 1.2s var(--ease-out-expo);
}
.slide-in.is-active {
	opacity: 1;
	transform: translateY(0);
}
.l-container {
	padding: 0 16px;
	text-align: left;
}
@media (min-width: 768px) {
	.l-container {
		margin: 0 auto;
		padding: 0;
		width: 995px;
	}
}
.l-main {
	color: #333333;
}
.l-main img {
	height: auto;
	width: 100%;
}

/* 赤枠 */
.sec-wrap {
	margin-top: 90px;
	position: relative;
	z-index: 0;
}
.sec-box {
	padding: 0 16px 40px;
	position: relative;
}
@media (min-width: 768px) {
	.sec-box {
		padding: 64px;
	}
}
.sec-box:before {
	background: #FBF0F3;
	border: 3px solid #C43357;
	border-radius: 16px;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}
@media (min-width: 768px) {
	.sec-box:before {
		border-radius: 32px;
	}
}

/* 202601Update */
/* リボンタイトル */
.sec-ribbon {
	margin: auto;
	min-height: 46px;
	width: calc(100% - 12px);
}
.sec-box > .sec-ribbon {
	left: 0;
	position: absolute;
	right: 0;
	top: -32px;
	z-index: 0;
}
@media (min-width: 768px) {
	.sec-box > .sec-ribbon {
		height: 42px;
		top: -44px;
		width: 815px;
	}
}
.sec-ribbon__inner {
	background-color: #CC4466;
	color: #FFFFFF;
	font-size: 20px;
	font-weight: bold;
	height: 100%;
	padding: 8px 16px;
	position: relative;
	text-align: center;
	width: 100%;
}
.sec-ribbon__inner::before,
.sec-ribbon__inner::after {
	background: url(../img/ribbon_pink.png) center / contain no-repeat;
	bottom: -7px;
	content: "";
	height: 37px;
	position: absolute;
	width: 18px;
	z-index: -1;
}
.sec-ribbon__inner.purple {
	background-color: #7030A0;
}
.sec-ribbon__inner.purple::before,
.sec-ribbon__inner.purple::after {
	background: url(../img/ribbon_purple.png) center / contain no-repeat;
}
.sec-ribbon__inner::before {
	left: -10px;
}
.sec-ribbon__inner::after {
	right: -10px;
	transform: rotate(180deg);
}
.sec-ribbon__inner span {
	font-size: 15px;
}

/* エントリーボタン */
.entry-button-wrap {
	position: relative;
	z-index: 1;
}
.entry-button {
	margin: 32px 16px 16px;
	padding-bottom: 6px;
	position: relative;
	text-align: center;
}
@media (min-width: 768px) {
	.entry-button {
		margin: 48px auto 16px;
		width: 659px;
	}
}
.entry-button .button {
	align-items: center;
	border-radius: 8px;
	color: #FFFFFF;
	display: flex;
	font-size: 20px;
	font-weight: 700;
	height: 88px;
	justify-content: center;
	line-height: 1.5;
}
.entry-button .button--ended {
	background: #999999;
	box-shadow: 0 6px #666666;
}
.entry-button .button__small {
	font-size: 16px;
}
.entry-button.is-active .button--ended {
	display: flex;
}
.entry-notes {
	font-size: 12px;
	margin: 0 32px 32px;
}
@media (min-width: 768px) {
	.entry-notes {
		margin: 0 auto 48px;
		text-align: left;
		width: 627px;
	}
}
.entry-notes li {
	padding-left: 14px;
	position: relative;
}
.entry-notes li:before {
	content: "※";
	left: 0;
	position: absolute;
	text-align: center;
	top: 0;
	width: 10px;
}
.entry-notes li + li {
	margin-top: 4px;
}
.entry-notes a {
	color: #4C4C80;
	text-decoration: underline;
}
@media (min-width: 768px) {
	.entry-notes a:hover {
		text-decoration: none;
	}
}

/* ビビビ祭りとは */
.sec-about {
	margin-bottom: 80px;
	padding-top: 40px;
	position: relative;
}
@media (min-width: 768px) {
	.sec-about {
		margin-bottom: 94px;
		padding: 64px;
	}
}
.sec-about__inner {
	display: grid;
	gap: 16px;
}
@media (min-width: 768px) {
	.sec-about__inner {
		gap: 16px 56px;
		grid-template-columns: auto 292px;
	}
}
.sec-about .list {
	display: grid;
	font-size: 14px;
	font-weight: 600;
	gap: 16px;
}
.sec-about .list > li {
	background: url(../img/check.png) no-repeat left center/18px 18px;
	padding-left: 24px;
	position: relative;
}
.sec-about .image {
	text-align: center;
}
@media (min-width: 768px) {
	.sec-about .image {
		grid-row: span 2;
	}
}
.sec-about .note {
	display: grid;
	gap: 4px;
}
.sec-about .note li {
	font-size: 10px;
	padding-left: 14px;
	position: relative;
}
.sec-about .note li:before {
	content: "※";
	left: 0;
	position: absolute;
	text-align: center;
	top: 0;
	width: 10px;
}
.sec-about .note a {
	text-decoration: underline;
}
@media (min-width: 768px) {
	.sec-about .note a:hover {
		text-decoration: none;
	}
}

/* FAQ */
.sec-faq__heading {
	color: #CC4466;
	font-size: 24px;
	font-weight: 900;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
	opacity: 0;
	text-align: center;
	transform: scale(0.8);
	transition: 0.4s var(--ease-out-back);
}
@media (min-width: 768px) {
	.sec-faq__heading {
		margin-bottom: 16px;
	}
}
.sec-faq__heading.is-active {
	opacity: 1;
	transform: scale(1);
}
.sec-faq .faq-container {
	background: #EEEEEE;
	border-radius: 12px;
	padding: 24px 16px;
}
@media (min-width: 768px) {
	.sec-faq .faq-container {
		padding: 48px 64px;
	}
}
.sec-faq .faq-category {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
	text-align: center;
}
@media (min-width: 768px) {
	.sec-faq .faq-category {
		margin-bottom: 24px;
	}
}
.sec-faq .faq-list {
	display: grid;
	gap: 8px;
}
.sec-faq .faq {
	background: #FFFFFF;
	border-radius: 8px;
}
@media (min-width: 768px) {
	.sec-faq .faq {
		border-radius: 16px;
	}
}
.sec-faq .faq::details-content {
	content-visibility: unset;
}
.sec-faq .faq .details-content {
	display: block grid;
	grid-template-rows: 0fr;
	transition-duration: 0.3s;
	transition-property: grid-template-rows;
}
.sec-faq .faq .details-content__inner {
	overflow: hidden;
}
.sec-faq .faq[open] .faq__title .icon:after {
	transform: rotate(0);
}
.sec-faq .faq[open] .details-content {
	grid-template-rows: 1fr;
}
.sec-faq .faq__title,
.sec-faq .faq__content {
	display: block;
	font-size: 14px;
	line-height: 1.5;
	padding: 16px 36px 16px 44px;
	position: relative;
}
.sec-faq .faq__title:before,
.sec-faq .faq__content:before {
	background: url(../img/Q_pink.png) no-repeat center/contain;
	content: "";
	height: 28px;
	left: 12px;
	margin: auto 0;
	position: absolute;
	width: 28px;
}
.sec-faq .faq__title:before {
	top: 50%;
	transform: translateY(-50%);
}
.sec-faq .faq__content:before {
	top: 14px;
}
.sec-faq .faq__title {
	cursor: pointer;
	outline: none;
	position: relative;
}
@media (min-width: 768px) {
	.sec-faq .faq__title {
		transition: opacity 0.4s var(--ease-out-quint);
	}
	.sec-faq .faq__title:hover {
		opacity: 0.5;
	}
}
.sec-faq .faq__title .icon {
	border: 2px solid #CC4466;
	border-radius: 50%;
	height: 20px;
	inset: 0 14px 0 auto;
	margin: auto;
	position: absolute;
	width: 20px;
}
@media (min-width: 768px) {
	.sec-faq .faq__title .icon {
		right: 18px;
	}
}
.sec-faq .faq__title .icon:before,
.sec-faq .faq__title .icon:after {
	background: #CC4466;
	bottom: 0;
	content: "";
	display: block;
	height: 2px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 10px;
}
.sec-faq .faq__title .icon:after {
	transform: rotate(90deg);
	transition: transform 0.3s var(--ease-out-quint);
}
.sec-faq .faq__content {
	font-weight: 700;
	padding-bottom: 32px;
	padding-right: 12px;
}
@media (min-width: 768px) {
	.sec-faq .faq__content {
		padding-bottom: 32px;
		padding-right: 20px;
	}
}
.sec-faq .faq__content:before {
	background-image: url(../img/A_pink.png);
}
@media (min-width: 768px) {
	.sec-faq .faq__content:before {
		top: 12px;
	}
}
.sec-faq .faq__content .list {
	display: grid;
	gap: 1em;
	margin-top: 1em;
}
.sec-faq .faq__content .text a {
	text-decoration: underline;
}
@media (min-width: 768px) {
	.sec-faq .faq__content .text a:hover {
		text-decoration: none;
	}
}
/* faq紫 */
.point .sec-faq__heading {
	color: #7030A0;
}
.sec-faq.point .faq__title:before {
	background: url(../img/Q_purple.png) no-repeat center/contain;
}
.sec-faq.point .faq__content:before {
	background: url(../img/A_purple.png) no-repeat center/contain;
}
.sec-faq.point .faq__title .icon {
	border: 2px solid #7030A0;
}
.sec-faq.point .faq__title .icon:before,
.sec-faq.point .faq__title .icon:after {
	background: #7030A0;
}

/* STEP */
.sec-step {
	padding-top: 78px;
	position: relative;
	z-index: 1;
}
.sec-step .step-list {
	display: grid;
	gap: 32px;
}
@media (min-width: 768px) {
	.sec-step .step-list {
		gap: 56px;
		grid-template-columns: repeat(3,1fr);
	}
}
.sec-step .step-list .title {
	align-items: center;
	background: #C43357;
	border-radius: 40px;
	color: #FFFFFF;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	height: 31px;
	justify-content: center;
	margin-bottom: 16px;
	position: relative;
}
.sec-step .step-list .title__balloon {
	left: 0;
	position: absolute;
	top: -30px;
	width: 82px;
	z-index: 1;
}
.sec-step .step-list .subtitle,
.sec-step .step-list .text {
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}
.sec-step .step-list .subtitle + .text {
	margin-top: 12px;
}
.sec-step .step-list .text + .text {
	margin-top: 8px;
}
.sec-step .step-list .text .label {
	display: block;
	margin-bottom: 2px;
}
.sec-step .step-list .text .red {
	color: #C43357;
}
.sec-step .step-list .text .purple {
	color: #7030A0;
}
.sec-step .step-list .image {
	margin: 16px 0;
	text-align: center;
}
.sec-step .step-list .note {
	display: grid;
	gap: 4px;
}
.sec-step .step-list .note li {
	font-size: 10px;
	padding-left: 14px;
	position: relative;
}
.sec-step .step-list .note li:before {
	content: "※";
	left: 0;
	position: absolute;
	text-align: center;
	top: 0;
	width: 10px;
}

/* CHECK */
.sec-step .attention {
	background: #FFFFFF;
	border-radius: 8px;
	margin-top: 16px;
	overflow: hidden;
}
.sec-step .attention__heading {
	align-items: center;
	background: #C43357;
	color: #FFFFFF;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	height: 40px;
	justify-content: center;
}
.sec-step .attention__inner {
	padding: 24px 16px;
}
@media (min-width: 768px) {
	.sec-step .attention {
		margin-top: 32px;
	}
	.sec-step .attention__inner {
		padding: 40px;
	}
}
.sec-step .attention .attention-list {
	display: grid;
	gap: 24px;
}
@media (min-width: 768px) {
	.sec-step .attention .attention-list {
		grid-template-columns: repeat(2,1fr);
	}
}
.sec-step .attention .attention-list .title {
	background: #D36985;
	border-radius: 40px;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 16px;
	padding: 6px;
	position: relative;
	text-align: center;
}
.sec-step .attention .attention-list .title__balloon {
	left: 0;
	position: absolute;
	top: -27px;
	width: 86px;
}
.sec-step .attention .attention-list .text {
	font-size: 14px;
}
.sec-step .attention .attention-list .image {
	margin: 16px 0;
	text-align: center;
}
@media (min-width: 768px) {
	.sec-step .attention .attention-list .image {
		margin: 16px auto;
		width: 300px;
	}
}

/* キャンペーン規約 */
.sec-terms {
	margin-top: 40px;
}
.sec-terms + .sec-terms {
	margin-top: 32px;
}
@media (min-width: 768px) {
	.sec-terms {
		margin-top: 48px;
	}
	.sec-terms .l-container {
		width: 867px;
	}
}
.sec-terms__heading {
	color: #333333;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 24px;
	text-align: center;
}
@media (min-width: 768px) {
	.sec-terms__heading {
		font-size: 20px;
		margin-bottom: 16px;
	}
}
.sec-terms .heading {
	color: #333333;
	font-size: 15px;
	font-weight: 700;
}
@media (min-width: 768px) {
	.sec-terms .heading {
		font-size: 16px;
		margin-bottom: 20px;
	}
}
.sec-terms .title {
	color: #6D6D6D;
	font-size: 14px;
	font-weight: 700;
}
.sec-terms .heading + .title,
.sec-terms .title + .text {
	margin-top: 8px;
}
.sec-terms .list + .title {
	margin-top: 24px;
}
.sec-terms .list {
	display: grid;
	gap: 4px;
	margin-top: 8px;
}
.sec-terms .list > li {
	padding-left: 28px;
	position: relative;
}
@media (min-width: 768px) {
	.sec-terms .list > li {
		padding-left: 32px;
	}
}
.sec-terms .list > li:has(.symbol):before {
	content: none;
}
.sec-terms .list > li:before,
.sec-terms .list > li .symbol {
	content: "・";
	left: 0;
	position: absolute;
	text-align: center;
	top: 0;
	width: 24px;
}
.sec-terms .note-list li:before {
	content: "※";
}
.sec-terms .note-list:has(.symbol) li:before {
	content: none;
}
.sec-terms a {
	color: #4C4C80;
	text-decoration: underline;
}
@media (min-width: 768px) {
	.sec-terms a:hover {
		text-decoration: none;
	}
}
.sec-terms table {
	border: 1px solid #CCCCCC;
	width: 100%;
}
.sec-terms .list + table {
	margin: 24px 0;
}
.sec-terms .title + table.column {
	margin: 8px 0 24px;
}
.sec-terms table th {
	background: #F5F5F5;
	font-weight: bold;
}
.sec-terms table th,
.sec-terms table td {
	border: none;
	padding: 8px 16px;
	width: 50%;
}
.sec-terms table th + th,
.sec-terms table td + td {
	border-left: 1px dashed #C8C8C8;
}
.sec-terms table tr + tr th,
.sec-terms table tr + tr td {
	border-top: 1px dashed #C8C8C8;
}
@media (max-width: 767.98px) {
	.sec-terms table.column,
	.sec-terms table.column tbody,
	.sec-terms table.column tr,
	.sec-terms table.column th,
	.sec-terms table.column td {
		display: block;
		width: 100%;
	}
	.sec-terms table.column td {
		border-top: 1px dashed #C8C8C8;
	}
	.sec-terms table.column tr + tr th {
		border-top: 1px solid #CCCCCC;
	}
}
@media (min-width: 768px) {
	.sec-terms table.column th {
		width: 240px;
	}
	.sec-terms table.column td {
		width: auto;
	}
}
.sec-terms .ribbon + table {
	margin-top: 8px;
}
.sec-terms .box {
	background: #F5F5F5;
	border-radius: 8px;
	margin: 8px 0;
	padding: 16px;
}
.sec-terms .box .list {
	margin: 0;
}

/* アクセスの集中について */
.sec-waiting {
	margin-top: 87px;
	padding-top: 40px;
}
.sec-waiting:before {
	background: #F1EAF5;
	border-color: #7030A0;
}
.sec-waiting .sec-ribbon__inner {
	font-size: 16px;
	height: 58px;
	line-height: 1.3;
}
@media (min-width: 768px) {
	.sec-waiting {
		padding: 64px;
	}
	.sec-waiting > .sec-ribbon {
		top: -42px;
	}
	.sec-waiting .sec-ribbon__inner {
		font-size: 20px;
		height: 42px;
	}
}
.sec-waiting__inner {
	display: grid;
	gap: 16px;
}
@media (min-width: 768px) {
	.sec-waiting__inner {
		gap: 16px 56px;
		grid-template-columns: 1fr 334px;
	}
}
.sec-waiting .text {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8;
}
.sec-waiting .text .strong {
	color: #C43357;
}
.sec-waiting .text a {
	text-decoration: underline;
}
@media (min-width: 768px) {
	.sec-waiting .text a:hover {
		text-decoration: none;
	}
}
@media (min-width: 768px) {
	.sec-waiting .image {
		grid-column: 2;
		grid-row: span 2;
	}
}
.sec-waiting ~ .deco1 {
	pointer-events: none;
	position: absolute;
	right: -64px;
	top: -229px;
	width: 187px;
	z-index: -2;
}
@media (min-width: 768px) {
	.sec-waiting ~ .deco1 {
		right: -130px;
		top: -508px;
		width: 331px;
	}
}
.sec-waiting ~ .deco2 {
	bottom: -262px;
	left: -59px;
	pointer-events: none;
	position: absolute;
	width: 119px;
	z-index: -2;
}
@media (min-width: 768px) {
	.sec-waiting ~ .deco2 {
		bottom: -363px;
		left: -129px;
		width: 318px;
	}
}

/* *************** */
/*  202601Update   */
/* *************** */
.sec-mv {
	height: 100%;
	padding: calc((634 / 750) * 100% ) 0 0;
	position: relative;
	width: 100%;
}
.sec-mv__closed,
.sec-mv__ended {
	background: top center / contain no-repeat;
	color: transparent;
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	text-indent: 100%;
	top: 0;
	white-space: nowrap;
	width: 100%;
}
.sec-mv__closed {
	background-image: url(../img/mv_registration_closed_sp.png);
}
.sec-mv__ended {
	background-image: url(../img/mv_ended_sp.png);
}
@media (min-width: 768px) {
	.sec-mv {
		height: 640px;
		padding: 0;
	}
	.sec-mv__closed {
		background-color: #115A6C;
		background-image: url(../img/mv_registration_closed.png);
	}
	.sec-mv__ended {
		background-color: #115A6C;
		background-image: url(../img/mv_ended.png);
	}
}

/* 終了告知 */
.sec-info {
	padding-top: 40px;
	text-align: center;
}
.sec-info__top {
	padding-top: 24px;
}
.sec-info__top + .sec-wrap {
	margin-top: 76px;
}
@media (min-width: 768px) {
	.sec-info {
		margin: 0 auto;
		padding-top: 56px;
		width: 915px;
	}
	.sec-info__top {
		padding-top: 56px;
	}
	.sec-info + .sec-wrap,
	.sec-info__top + .sec-wrap {
		margin-top: 94px;
	}
}

/* 後日公開 */
.sec-info__next {
	align-items: center;
	background-color: rgba(112, 48, 160, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 16px;
	color: #7030A0;
	display: flex;
	flex-direction: column;
	font-size: 32px;
	font-weight: bold;
	height: 150px;
	justify-content: center;
	line-height: 1.24;
	position: relative;
	text-align: center;
}
@media (min-width: 768px) {
	.sec-info__next {
		height: 182px;
	}
}
.sec-info__next > span {
	font-size: 24px;
}
.sec-info__next::before,
.sec-info__next::after {
	content: "";
	height: 110%;
	position: absolute;
	transform: translateY(-50%);
	width: 100%;
}
.sec-info__next::before {
	background: url(../img/paper_left_sp.png) left center / contain no-repeat;
	left: -12px;
	top: 50%;
}
.sec-info__next::after {
	background: url(../img/paper_right_sp.png) right center / contain no-repeat;
	right: -7px;
	top: 51%;
	transform: translateY(-50%);
}
@media (min-width: 768px) {
	.sec-info__next::before {
		background: url(../img/paper_left.png) left center / contain no-repeat;
		left: -12px;
		top: 50%;
	}
	.sec-info__next::after {
		background: url(../img/paper_right.png) right center / contain no-repeat;
		right: -7px;
		top: 51%;
		transform: translateY(-50%);
	}
}

/* 終了しました */
.sec-info__ended {
	background-color: #FBF0F3;
	border: 1px solid #C43357;
	border-radius: 16px;
	color: #C43357;
	font-size: 18px;
	font-weight: bold;
	padding: 24px 0;
	text-align: center;
}
.sec-info__next + .sec-info__ended {
	margin-top: 40px;
}
@media (min-width: 768px) {
	.sec-info__next + .sec-info__ended {
		margin-top: 56px;
	}
}

/* SNS */
.snsArea {
	margin: 226px auto 80px;
	position: relative;
}
.snsArea p {
	display: block;
	font-size: 20px;
	margin: 0 auto 32px;
	text-align: center;
}
.snsArea p span {
	background-color: #FFFFFF;
	color: #333333;
	font-weight: 700;
	padding: 0 5px;
}
.snsArea .inner {
	column-gap: 40px;
	display: flex;
	margin: 0 auto;
	width: 224px;
}
.snsArea .inner li a {
	display: block;
	height: 48px;
	width: 48px;
}
@media (min-width: 768px) {
	.snsArea .inner > li > a:hover {
		opacity: 0.6;
	}
}

/* 規約のフォント設定 */
.sec-terms .text,
.sec-terms .list > li,
.sec-terms table th,
.sec-terms table td {
	color: #6D6D6D;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	font-feature-settings: normal;
	font-size: 12px;
	line-height: 1.5;
}

/* point */
.sec-point-wrap {
	margin: 0 auto;
	padding: 40px 0 48px;
	text-align: center;
}
@media only screen and (min-width: 768px) {
	.sec-point-wrap {
		padding-top: 56px;
		width: 835px;
	}
}
.description dt,
.description em {
	font-weight: bold;
}
.description dd {
	margin-top: 8px;
}
.sec-point .lead,
.sec-point .list {
	text-align: left;
}
@media only screen and (min-width: 768px) {
	.sec-point .lead {
		text-align: center;
	}
}
.sec-point .list > li {
	margin-top: 20px;
}
.sec-point .list > li dl {
	align-items: center;
	display: flex;
}
.sec-point .list > li dt {
	flex-shrink: 1;
}
.sec-point .list > li dd {
	font-size: 16px;
	font-weight: bold;
	margin-left: 6px;
}
.sec-point .sec-point__icon {
	align-items: center;
	background-color: #7030A0;
	border-radius: 40px;
	color: #FFFFFF;
	display: inline-flex;
	font-weight: 600;
	height: 28px;
	justify-content: center;
	width: 62px;
}
.sec-point .note {
	color: #665555;
	font-size: 10px;
	margin-top: 4px;
	padding-left: 14px;
	position: relative;
}
.sec-point .note:before {
	content: "※";
	left: 0;
	position: absolute;
	text-align: center;
	top: 0;
	width: 10px;
}
.sec-point .note a {
	text-decoration: underline;
}
@media (min-width: 768px) {
	.sec-point .note a:hover {
		text-decoration: none;
	}
}

@media only screen and (max-width: 767px) {
	.sec-point .text {
		text-align: center;
	}
}
.image.point2 {
	font-size: 14px;
	margin: 16px 0;
	text-align: center;
}

/* 画像サイズ */
.image.about img {
	width: calc((292 / 343)* 100%);
}
.image.step1 img {
	width: calc((180 / 343)* 100%);
}
.image.step2 img {
	width: calc((304 / 343)* 100%);
}
.image.step3 img {
	width: calc((81 / 343)* 100%);
}
.image.attention1 img {
	width: calc((244 / 311)* 100%);
}
.image.attention2 img {
	width: calc((297 / 311)* 100%);
}
.image.point-heading img {
	margin: 24px 0 4px;
	width: calc((182 / 343)* 100%);
}
@media only screen and (min-width: 768px) {
	.image.point-heading img {
		margin-top: 32px;
	}
}
.image.point img {
	margin: 16px 0;
	width: calc((198 / 343)* 100%);
}
.image.point2 img {
	width: calc((590 / 853)* 100%);
}
@media only screen and (min-width: 768px) {
	.image.about img {
		width: 292px;
	}
	.image.step1 img {
		width: 140px;
	}
	.image.step2 img {
		width: 214px;
	}
	.image.step3 img {
		width: 70px;
	}
	.image.attention1 img {
		width: 244px;
	}
	.image.attention2 img {
		width: 297px;
	}
	.image.point-heading img {
		width: 180px;
	}
	.image.point img {
		width: 309px;
	}
	.image.point2 img {
		width: 198px;
	}
	.sec-waiting__inner .image {
		width: 334px;
	}
}
