@charset "UTF-8";
.index-hero figure img {
	width: 100%;
	display: block;
}
.index-badge {
	position: relative;
	padding: 100px 0 120px;
	font-size: 2rem;
	background-color: #FFF5E4;
}
.index-badge::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 5vw;
	background-image: url(./img/arche.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}
.index-badge__content {
	width: 100%;
	max-width: 800px;
	padding: 0 20px;
	margin: auto;
}
.index-badge__text {
	position: relative;
	text-align: center;
}
.index-badge__text::before {
	content: '';
	position: absolute;
	bottom: 40px;
	right: 100%;
	width: 200px;
	height: 295px;
	background: url(./img/badge-deco01.png) no-repeat center / cover;
}
.index-badge__text::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: calc(100% - 60px);
	width: 321px;
	height: 368px;
	background: url(./img/badge-deco02.png) no-repeat center / cover;
}
.index-badge__text h2 {
	font-size: 4.8rem;
	line-height: 1.3;
	font-weight: 900;
	color: #EC6B3B;
}
.index-badge__text p {
	margin-top: 50px;
	color: #934D10;
	font-weight: 500;
}
@media only screen and (max-width: 960px) {
	.index-badge {
		padding-top: 60px;
		padding-bottom: 60px;
		font-size: 1.8rem;
		overflow: hidden;
	}
	.index-badge__content {
		width: 100%;
		max-width: 600px;
		padding: 0 20px;
		margin: auto;
	}
	.index-badge__text {
		position: relative;
		text-align: center;
	}
	.index-badge__text::before {
		content: '';
		position: absolute;
		bottom: unset;
		top: -30px;
		right: calc(100% - 55px);
		width: 70px;
		height: 100px;
		background: url(./img/badge-deco01.png) no-repeat center / cover;
		transform: scaleX(-1);
	}
	.index-badge__text::after {
		content: '';
		position: absolute;
		bottom: unset;
		top: -30px;
		left: calc(100% - 50px);
		width: 75px;
		height: 100px;
		background: url(./img/badge-deco02-sp.png) no-repeat center / cover;
	}
	.index-badge__text h2 {
		font-size: 3rem;
		line-height: 1.6;
		font-weight: 800;
		color: #EC6B3B;
	}
	.index-badge__text p {
		margin-top: 30px;
		font-size: 1.6rem;
	}
	.index-badge__badge {
		position: relative;
		margin: 60px auto 0;
		padding: 30px 10px 25px;
		background: url(./img/index-badge__back.svg) no-repeat center / cover;
	}
	.index-badge__badge::before,
	.index-badge__badge::after {
		content: '';
		position: absolute;
		top: 2px;
		left: -4px;
		width: 5px;
		height: calc(100% - 4px);
		background-image: url(./img/index-badge__side.svg);
		background-repeat: repeat-y;
		background-size: cover;
		z-index: -1;
	}
	.index-badge__badge::after {
		transform: scaleX(-1);
		left: unset;
		right: -4px;
	}
	.index-badge__badge .ttl {
		font-weight: 500;
		display: inline-block;
		color: #EC6B3B;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: -12px;
		line-height: 1;
	}
	.index-badge__badge .grid {
		display: flex;
		justify-content: center;
		gap: 5px;
	}
	.index-badge__badge .grid figure {
		width: 100%;
		max-width: 136px;
	}
	.index-badge__link {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
		margin-top: 50px;
	}
	.index-badge__link a {
		display: block;
		width: 100%;
		max-width: 360px;
		height: 60px;
		line-height: 58px;
		background-color: #EC6B3B;
		color: #fff;
		text-align: center;
		font-weight: 500;
		border-radius: 9999px;
	}
}


.index-participation h2 {
	margin-top: 80px;
}
.index-participation__content {
	width: 100%;
	max-width: 1356px;
	padding: 0 20px;
	margin: auto;
}
.index-participation__grid {
	display: flex;
	align-items: center;
	margin-top: 40px;
}
.index-participation__text {
	width: 50%;
	position: relative;
	padding: 50px 0 50px 50px;
}
.index-participation__text::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-color: #FFFAF2;
	width: calc(100% + 110px);
	height: 100%;
	z-index: -1;
}
.index-participation__number {
    counter-reset: custom-counter;
    font-size: 2rem;
}
.index-participation__number li:first-child {
	margin-top: 0;
}
.index-participation__number li {
    counter-increment: custom-counter;
    position: relative;
    padding-left: 120px;
	margin-top: 25px;
	font-weight: 500;
	color: #934D10;
}
.index-participation__number li::before {
    content: "STEP " counter(custom-counter);
    position: absolute;
    left: 0;
    top: 4px;
	text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
	width: 96px;
	height: 30px;
	line-height: 28px;
	background-color: #EC6B3B;
	border-radius: 5px;
}
.index-participation__img {
	width: 50%;
	padding-left: 40px;
}
.index-participation__img figure {
	margin-right: -40px;
}
@media only screen and (max-width: 960px) {
	.index-participation {
		overflow: hidden;
	}
	.index-participation h2 {
		margin-top: 60px;
	}
	.index-participation__content {
		width: 100%;
		max-width: 1356px;
		padding: 0 20px;
		margin: auto;
	}
	.index-participation__grid {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		margin-top: 30px;
	}
	.index-participation__text {
		width: 100%;
		position: relative;
		padding: 30px 20px;
		margin-top: 10px;
		order: 2;
	}
	.index-participation__text::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		background-color: #FFFAF2;
		width: 100%;
		height: 100%;
		z-index: -1;
	}
	.index-participation__number {
		counter-reset: custom-counter;
		font-size: 1.8rem;
	}
	.index-participation__number li:first-child {
		margin-top: 0;
	}
	.index-participation__number li {
		counter-increment: custom-counter;
		position: relative;
		padding-left: 0;
		margin-top: 25px;
		font-weight: 500;
		color: #934D10;
		padding-top: 40px;
		text-align: center;
		line-height: 1.6;
	}
	.index-participation__number li::before {
		content: "STEP " counter(custom-counter);
		position: absolute;
		left: 50%;
		top: 0;
		text-align: center;
		color: #fff;
		font-size: 1.6rem;
		font-weight: 500;
		width: 96px;
		height: 28px;
		line-height: 26px;
		background-color: #EC6B3B;
		border-radius: 5px;
		margin: auto;
		padding: 0 7px;
		transform: translateX(-50%);
	}
	.index-participation__img {
		width: auto;
		padding-left: 0;
		margin: 0 -25px;
		order: 1;
	}
	.index-participation__img figure {
		margin-right: 0;
	}
}




.index-subject__content {
	width: 100%;
	max-width: 1356px;
	padding: 0 20px;
	margin: auto;
}
.index-subject__grid {
	display: flex;
	gap: 24px;
	margin-top: 50px;
}
.index-subject__item {
	position: relative;
	width: calc(33.3333% - 16px);
	padding: 0 45px 45px;
}
.index-subject__item::before {
	content: '';
	background-color: #FFF5E4;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc(100% - 50px);
	border-radius: 15px;
	z-index: -1;
}
.index-subject__item figure {
	width: 100%;
	max-width: 180px;
	margin: auto;
}
.index-subject__item p {
	line-height: 2;
	margin-top: 20px;
}
.index-subject__item a {
	display: block;
	text-align: center;
    width: 100%;
    height: 60px;
    line-height: 58px;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    background-color: #EC6B3B;
    border-radius: 9999px;
    margin: 40px auto 0;
}
.index-subject__item a:hover {
	background-color: #F7A031;
}
@media only screen and (max-width: 960px) {
	.index-subject__content {
		width: 100%;
		max-width: 1356px;
		padding: 0 20px;
		margin: auto;
	}
	.index-subject__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 24px;
		margin-top: 30px;
	}
	.index-subject__item {
		position: relative;
		width: 100%;
		padding: 0 20px 30px;
	}
	.index-subject__item::before {
		content: '';
		background-color: #FFF5E4;
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: calc(100% - 50px);
		border-radius: 15px;
		z-index: -1;
	}
	.index-subject__item figure {
		width: 100%;
		max-width: 140px;
		margin: auto;
	}
	.index-subject__item p {
		line-height: 2;
		margin-top: 10px;
	}
	.index-subject__item a {
		display: block;
		text-align: center;
		width: 100%;
		height: 60px;
		line-height: 58px;
		font-size: 1.8rem;
		font-weight: 500;
		color: #fff;
		background-color: #EC6B3B;
		border-radius: 9999px;
		margin: 30px auto 0;
	}
	.index-subject__item a:hover {
		background-color: #F7A031;
	}
}





.index-special {
	position: relative;
	background-color: #FFF5E4;
	padding: 80px 0 120px;
	margin-top: 130px;
}
.index-special::before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	height: 10px;
	background-image: url(./img/index-back.svg);
	background-repeat: repeat-x;
	background-size: cover;
	background-position: center;
	z-index: -1;
}
.index-special::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 5vw;
	background-image: url(./img/arche.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
}
.index-special__content {
	width: 100%;
	max-width: 1356px;
	padding: 0 20px;
	margin: auto;
}
.index-special h2 {
	margin-top: 0;
}
.index-special__item {
	position: relative;
	background-color: #fff;
	padding: 40px 50px 50px;
	border-radius: 15px;
}
.index-special__itemA {
	width: 100%;
	max-width: 880px;
	margin: 80px auto 0;
}
.index-special__itemA::before {
    content: '';
    position: absolute;
    top: -35px;
    left: -35px;
    width: 160px;
    height: 160px;
    background: url(./img/prizeA.svg) no-repeat center / cover;
}
.index-special__item .amount {
	text-align: center;
	font-weight: 900;
	color: #EC6B3B;
}
.index-special__item .amount .sub {
	font-size: 3.6rem;
}
.index-special__item .amount .grid {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin-top: -5px;
}
.index-special__item .amount .grid .num {
	font-size: 9.5rem;
	line-height: 1;
	margin-right: 2px;
}
.index-special__item .amount .grid .en {
	font-size: 5rem;
	line-height: 1;
	padding-bottom: 7px;
}
.index-special__winner {
	padding: 10px;
	margin-top: 30px;
	color: #934D10;
	border-top: 1px solid #934D10;
	border-bottom: 1px solid #934D10;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.index-special__winner span {
	font-size: 1.6rem;
}
.index-special__winner span.ttl {
	margin-right: 10px;
	font-weight: 500;
}
.index-special__winner strong {
	font-size: 2.8rem;
	margin-top: -2px;
	margin-right: 2px;
	font-weight: 400;
}
.index-special__winner span.mei {
	padding-top: 6px;
}
.index-special__plus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
}
.index-special__info {
	position: relative;
    width: auto;
	background-color: #FFF5E4;
	padding: 25px 45px 15px;
}
.index-special__info .grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
}
.index-special__info .grid figure {
	width: 100%;
	max-width: 80px;
}
.index-special__info .grid span {
	font-size: 6rem;
	font-weight: 900;
	color: #934E10;
	line-height: 1;
	margin-left: 5px;
	padding-bottom: 10px;
}
.index-special__info .grid span small {
	font-size: 3.2rem;
	font-weight: 600;
	padding-bottom: 2px;
	margin-left: 2px;
}
.index-special__ttl {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 600;
}
.index-special__ttl .ttl {
	display: inline-block;
	text-align: center;
	width: auto;
	height: 32px;
	line-height: 30px;
	border-radius: 9999px;
	padding: 0 30px;
	white-space: nowrap;
	color: #fff;
}
.index-special__ttl .ttl.store {
	background-color: #EC6B3B;
}
.index-special__ttl .ttl.spot {
	background-color: #228E41;
}
.index-special__ttl .ttl.support {
	background-color: #FFCB74;
}
.index-special__ttl .or {
	padding: 0 6px 3px;
	color: #934D10;
}
.index-special__plus .plus {
	display: block;
	position: relative;
	width: 32px;
	height: 32px;
	margin: 0 10px;
}
.index-special__plus .plus::before,
.index-special__plus .plus::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 32px;
	height: 8px;
	background-color: #934D10;
}
.index-special__plus .plus::after {
	transform: translate(-50%, -50%) rotate(90deg);
}
.index-special__grid {
	display: flex;
	gap: 70px;
	margin-top: 70px;
}
.index-special__grid .index-special__item {
	width: 50%;
}
.index-special__itemB::before,
.index-special__itemC::before {
    content: '';
    position: absolute;
    top: -35px;
    left: -35px;
    width: 160px;
    height: 160px;
    background: url(./img/prizeB.svg) no-repeat center / cover;
}
.index-special__itemC::before {
    background: url(./img/prizeC.svg) no-repeat center / cover;
}
.index-special__grid .index-special__plus {
	display: block;
}
.index-special__grid .index-special__plus .plus {
	display: block;
	margin: 10px auto 25px;
}
.index-special a {
    display: block;
    width: 100%;
    max-width: 360px;
    height: 60px;
    line-height: 58px;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    background-color: #EC6B3B;
    border-radius: 9999px;
    margin: 60px auto 0;
	text-align: center;
}
.index-special a:hover {
	background-color: #F7A033;
}
@media only screen and (max-width: 960px) {
	.index-special {
		position: relative;
		background-color: #FFF5E4;
		padding: 60px 0;
		margin-top: 80px;
	}
	.index-special::before {
		content: '';
		position: absolute;
		bottom: 100%;
		left: 0;
		width: 100%;
		height: 10px;
		background-image: url(./img/index-back.svg);
		background-repeat: repeat-x;
		background-size: cover;
		background-position: center;
		z-index: -1;
	}
	.index-special::after {
		content: '';
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		width: 100vw;
		height: 5vw;
		background-image: url(./img/arche.svg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		z-index: -1;
	}
	.index-special__content {
		width: 100%;
		max-width: 1356px;
		padding: 0 20px;
		margin: auto;
	}
	.index-special h2 {
		margin-top: 0;
	}
	.index-special__item {
		position: relative;
		background-color: #fff;
		padding: 30px 20px;
		border-radius: 15px;
	}
	.index-special__itemA {
		width: 100%;
		max-width: 880px;
		margin: 30px auto 0;
	}
	.index-special__itemA::before {
		content: '';
		position: absolute;
		top: -15px;
		left: -15px;
		width: 90px;
		height: 90px;
		background: url(./img/prizeA.svg) no-repeat center / cover;
	}
	.index-special__item .amount {
		text-align: center;
		font-weight: 900;
		color: #EC6B3B;
	}
	.index-special__item .amount .sub {
		font-size: 2.6rem;
	}
	.index-special__item .amount .grid {
		display: flex;
		align-items: flex-end;
		justify-content: center;
		margin-top: -5px;
	}
	.index-special__item .amount .grid .num {
		font-size: 4.5rem;
		line-height: 1;
		margin-right: 2px;
	}
	.index-special__item .amount .grid .en {
		font-size: 2rem;
		line-height: 1;
		padding-bottom: 3px;
	}
	.index-special__winner {
		padding: 10px;
		margin-top: 25px;
		color: #934D10;
		border-top: 1px solid #934D10;
		border-bottom: 1px solid #934D10;
		line-height: 1;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.index-special__winner span {
		font-size: 1.6rem;
	}
	.index-special__winner span.ttl {
		margin-right: 10px;
		font-weight: 500;
	}
	.index-special__winner strong {
		font-size: 2.8rem;
		margin-top: -2px;
		margin-right: 2px;
		font-weight: 400;
	}
	.index-special__winner span.mei {
		padding-top: 6px;
	}
	.index-special__plus {
		display: block;
		align-items: unset;
		justify-content: unset;
		margin-top: 40px;
	}
	.index-special__info {
		position: relative;
		width: auto;
		background-color: #FFF5E4;
		padding: 25px 10px 15px;
	}
	.index-special__info .grid {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 4px;
	}
	.index-special__info .grid figure {
		width: 100%;
		max-width: 70px;
	}
	.index-special__info .grid span {
		font-size: 4rem;
		font-weight: 900;
		color: #934E10;
		line-height: 1;
		margin-left: 5px;
		padding-bottom: 10px;
	}
	.index-special__info .grid span small {
		font-size: 2rem;
		font-weight: 600;
		padding-bottom: 2px;
		margin-left: 2px;
	}
	.index-special__ttl {
		position: absolute;
		top: -16px;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		align-items: center;
		font-size: 1.5rem;
		font-weight: 600;
	}
	.index-special__ttl .ttl {
		display: inline-block;
		text-align: center;
		width: auto;
		height: 32px;
		line-height: 30px;
		border-radius: 9999px;
		padding: 0 15px;
		white-space: nowrap;
		color: #fff;
	}
	.index-special__ttl .ttl.store {
		background-color: #EC6B3B;
	}
	.index-special__ttl .ttl.spot {
		background-color: #228E41;
	}
	.index-special__ttl .ttl.support {
		background-color: #FFCB74;
	}
	.index-special__ttl .or {
		padding: 0 6px 3px;
		color: #934D10;
	}
	.index-special__plus .plus {
		display: block;
		position: relative;
		width: 28px;
		height: 28px;
		margin: 10px auto 25px;
	}
	.index-special__plus .plus::before,
	.index-special__plus .plus::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 28px;
		height: 6px;
		background-color: #934D10;
	}
	.index-special__plus .plus::after {
		transform: translate(-50%, -50%) rotate(90deg);
	}
	.index-special__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		margin-top: 30px;
	}
	.index-special__grid .index-special__item {
		width: 100%;
	}
	.index-special__itemB::before,
	.index-special__itemC::before {
		content: '';
		position: absolute;
		top: -15px;
		left: -15px;
		width: 80px;
		height: 80px;
		background: url(./img/prizeB.svg) no-repeat center / cover;
	}
	.index-special__itemC::before {
		background: url(./img/prizeC.svg) no-repeat center / cover;
	}
	.index-special__grid .index-special__plus {
		display: block;
	}
	.index-special__grid .index-special__plus .plus {
		display: block;
		margin: 10px auto 25px;
	}
	.index-special a {
		display: block;
		width: 100%;
		max-width: 360px;
		height: 60px;
		line-height: 58px;
		font-size: 1.8rem;
		font-weight: 500;
		color: #fff;
		background-color: #EC6B3B;
		border-radius: 9999px;
		margin: 40px auto 0;
		text-align: center;
	}
}





.index-back {
	position: relative;
	background-color: #FFF5E4;
	padding: 0;
	margin-top: 130px;
}
.index-back::before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	height: 10px;
	background-image: url(./img/index-back.svg);
	background-repeat: repeat-x;
	background-size: cover;
	background-position: center;
	z-index: -1;
}
.index-back::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	transform: scaleY(-1);
	width: 100%;
	height: 10px;
	background-image: url(./img/index-back.svg);
	background-repeat: repeat-x;
	background-size: cover;
	background-position: center;
	z-index: -1;
}
.index-content {
	width: 100%;
	max-width: 1380px;
	padding: 0 20px;
	margin: auto;
}
@media only screen and (max-width: 960px) {
	.index-back {
		position: relative;
		background-color: #FFF5E4;
		padding: 0;
		margin-top: 80px;
	}
	.index-content {
		width: 100%;
		max-width: 1380px;
		padding: 0 20px;
		margin: auto;
	}
}


.index-anchor {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 120px;
}
.index-anchor__btn {
	position: relative;
	display: block;
	width: 100%;
	max-width: 560px;
	height: 130px;
	line-height: 128px;
	background-color: #fff;
	text-align: center;
	font-size: 2.6rem;
	font-weight: 500;
	border-radius: 10px;
	margin: 0;
}
.index-anchor__btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 40px;
	transform: translateY(-50%);
	width: 83px;
	height: 83px;
}
.index-anchor__btn.stores::before {
	background: url(./img/ico-stores.svg) no-repeat center / cover;
}
.index-anchor__btn.spot::before {
	background: url(./img/ico-spot.svg) no-repeat center / cover;
}
.index-anchor__btn.stores {
	color: #FF9666;
	border: 2px solid #FF9666;
}
.index-anchor__btn.spot {
	color: #228E41;
	border: 2px solid #228E41;
}
.index-anchor__btn span {
	position: relative;
	display: inline-block;
	padding: 0 50px;
}
.index-anchor__btn span::before {
	content: '';
	position: absolute;
	top: calc(50% + 1px);
	right: 0;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	transition: .3s;
}
.index-anchor__btn.stores span::before {
	background: url(./img/stores-anchor.svg) no-repeat center / cover;
}
.index-anchor__btn.spot span::before {
	background: url(./img/spot-anchor.svg) no-repeat center / cover;
}
.index-anchor__btn.stores:hover {
	background-color: #FF9666;
	color: #fff;
}
.index-anchor__btn.spot:hover {
	background-color: #228E41;
	color: #fff;
}
.index-anchor__btn.stores:hover::before {
	background: url(./img/ico-stores-w.svg) no-repeat center / cover;
}
.index-anchor__btn.spot:hover::before {
	background: url(./img/ico-spot-w.svg) no-repeat center / cover;
}
.index-anchor__btn:hover span::before {
	background: url(./img/white-anchor.svg) no-repeat center / cover;
	transition: .3s;
}
@media only screen and (max-width: 960px) {
	.index-anchor {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
		margin-top: 60px;
	}
	.index-anchor__btn {
		position: relative;
		display: block;
		width: 100%;
		max-width: 560px;
		height: 100px;
		line-height: 98px;
		background-color: #fff;
		text-align: center;
		font-size: 2rem;
		font-weight: 500;
		border-radius: 10px;
		margin: auto;
	}
	.index-anchor__btn::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 25px;
		transform: translateY(-50%);
		width: 50px;
		height: 50px;
	}
	.index-anchor__btn.stores::before {
		background: url(./img/ico-stores.svg) no-repeat center / cover;
	}
	.index-anchor__btn.spot::before {
		background: url(./img/ico-spot.svg) no-repeat center / cover;
	}
	.index-anchor__btn.stores {
		color: #FF9666;
	}
	.index-anchor__btn.spot {
		color: #228E41;
	}
	.index-anchor__btn span {
		position: relative;
		display: inline-block;
		padding: 0 30px;
	}
	.index-anchor__btn span::before {
		content: '';
		position: absolute;
		top: calc(50% + 1px);
		right: 0;
		transform: translateY(-50%);
		width: 24px;
		height: 24px;
	}
	.index-anchor__btn.stores span::before {
		background: url(./img/stores-anchor.svg) no-repeat center / cover;
	}
	.index-anchor__btn.spot span::before {
		background: url(./img/spot-anchor.svg) no-repeat center / cover;
	}
}



.index-stores {
	padding-top: 100px;
}
.index-stores h2 {
	margin-top: 0;
}
.index-stores__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 60px;
}
.index-stores__item {
	position: relative;
	width: calc(33.3333% - 26.6666px);
	overflow: hidden;
	background-color: #FFFAF1;
	border-radius: 15px;
}
.index-stores__item .cate {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 44px;
	line-height: 42px;
	border-radius: 15px 0 15px 0;
	background-color: #FF9666;
	color: #fff;
	display: block;
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	padding: 0 25px;
	z-index: 1;
}
.index-stores__img {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 75%;
}
.index-stores__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.index-stores__text {
	padding: 24px 24px 40px;
	line-height: 1.6;
}
.index-stores__text .index-stores__ttl {
	font-size: 2.4rem;
	font-weight: 600;
}
.index-stores__text p {
	margin-top: 10px;
}
.index-stores__text a {
	position: relative;
	display: inline-block;
	color: #FF9666;
	border-bottom: 1px solid #FF9666;
	padding: 0 25px 4px 10px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	margin-top: 10px;
}
.index-stores__text a::before {
	content: '';
	position: absolute;
	top: 3px;
	right: 10px;
	width: 10px;
	height: 10px;
	background: url(./img/outlink.svg) no-repeat center / cover;
}
.index-stores__text .special {
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid #CBCBCB;
	color: #FF9666;
}
.index-stores__text .special .ttl {
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
}
.index-stores__text .special .ttl span {
	position: relative;
	display: inline-block;
	padding: 0 25px;
	line-height: 1;
}
.index-stores__text .special .ttl span::before,
.index-stores__text .special .ttl span::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 16.5px;
	height: 16.5px;
	background: url(./img/special.svg) no-repeat center / cover;
}
.index-stores__text .special .ttl span::after {
	left: unset;
	right: 0;
	transform: scaleX(-1);
	background: url(./img/special.svg) no-repeat center / cover;
}
.index-stores__text .special p {
	font-size: 2rem;
	font-weight: 600;
}
@media only screen and (max-width: 960px) {
	.index-stores {
		padding-top: 60px;
	}
	.index-stores h2 {
		margin-top: 0;
	}
	.index-stores__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		margin-top: 40px;
	}
	.index-stores__item {
		position: relative;
		/* width: 100%; */
		overflow: hidden;
		background-color: #FFFAF1;
		border-radius: 15px;
	}
	.index-stores__item .cate {
		display: inline-block;
		position: absolute;
		top: 0;
		left: 0;
		width: auto;
		height: 40px;
		line-height: 38px;
		border-radius: 15px 0 15px 0;
		background-color: #FF9666;
		color: #fff;
		display: block;
		text-align: center;
		font-size: 1.8rem;
		font-weight: 600;
		padding: 0 25px;
		z-index: 1;
	}
	.index-stores__img {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 65%;
	}
	.index-stores__img img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.index-stores__text {
		padding: 20px 20px 25px;
		line-height: 1.6;
	}
	.index-stores__text .index-stores__ttl {
		font-size: 2rem;
		font-weight: 600;
	}
	.index-stores__text p {
		margin-top: 10px;
	}
	.index-stores__text a {
		position: relative;
		display: inline-block;
		color: #FF9666;
		border-bottom: 1px solid #FF9666;
		padding: 0 25px 4px 10px;
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1;
		margin-top: 10px;
	}
	.index-stores__text a::before {
		content: '';
		position: absolute;
		top: 3px;
		right: 10px;
		width: 10px;
		height: 10px;
		background: url(./img/outlink.svg) no-repeat center / cover;
	}
	.index-stores__text .special {
		margin-top: 20px;
		padding-top: 15px;
		border-top: 1px solid #CBCBCB;
		color: #FF9666;
	}
	.index-stores__text .special .ttl {
		display: block;
		font-size: 1.6rem;
		font-weight: 500;
		text-align: center;
	}
	.index-stores__text .special .ttl span {
		position: relative;
		display: inline-block;
		padding: 0 25px;
		line-height: 1;
	}
	.index-stores__text .special .ttl span::before,
	.index-stores__text .special .ttl span::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 16.5px;
		height: 16.5px;
		background: url(./img/special.svg) no-repeat center / cover;
	}
	.index-stores__text .special .ttl span::after {
		left: unset;
		right: 0;
		transform: scaleX(-1);
		background: url(./img/special.svg) no-repeat center / cover;
	}
	.index-stores__text .special p {
		font-size: 1.8rem;
		font-weight: 600;
	}
}

.index-spot {
	padding: 100px 0 80px;
}
.index-spot h2 {
	margin-top: 0;
}
.index-spot .ttl-02 span::before,
.index-spot .ttl-02 span::after {
	background: url(./img/ttl-02-g.svg) no-repeat center / cover;
}
.index-spot__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 60px;
}
.index-spot__item {
	position: relative;
	width: calc(33.3333% - 26.6666px);
	overflow: hidden;
	background-color: #fff;
	border-radius: 15px;
}
.index-spot__item .cate {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 44px;
	line-height: 42px;
	border-radius: 15px 0 15px 0;
	background-color: #228E41;
	color: #fff;
	display: block;
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
	padding: 0 25px;
	z-index: 1;
}
.index-spot__img {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 75%;
}
.index-spot__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.index-spot__text {
	padding: 24px 24px 40px;
	line-height: 1.6;
}
.index-spot__text .index-spot__ttl {
	font-size: 2.4rem;
	font-weight: 600;
}
.index-spot__text p {
	margin-top: 10px;
}
.index-spot__text a {
	position: relative;
	display: inline-block;
	color: #228E41;
	border-bottom: 1px solid #228E41;
	padding: 0 25px 4px 10px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1;
	margin-top: 10px;
}
.index-spot__text a::before {
	content: '';
	position: absolute;
	top: 3px;
	right: 10px;
	width: 10px;
	height: 10px;
	background: url(./img/outlink-g.svg) no-repeat center / cover;
}
@media only screen and (max-width: 960px) {
	.index-spot {
		padding: 60px 0;
	}
	.index-spot h2 {
		margin-top: 0;
	}
	.index-spot .ttl-02 span::before,
	.index-spot .ttl-02 span::after {
		background: url(./img/ttl-02-g.svg) no-repeat center / cover;
	}
	.index-spot__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
		margin-top: 40px;
	}
	.index-spot__item {
		position: relative;
		/* width: 100%; */
		overflow: hidden;
		background-color: #fff;
		border-radius: 15px;
	}
	.index-spot__item .cate {
		display: inline-block;
		position: absolute;
		top: 0;
		left: 0;
		width: auto;
		height: 40px;
		line-height: 38px;
		border-radius: 15px 0 15px 0;
		background-color: #228E41;
		color: #fff;
		display: block;
		text-align: center;
		font-size: 1.8rem;
		font-weight: 600;
		padding: 0 25px;
		z-index: 1;
	}
	.index-spot__img {
		display: block;
		position: relative;
		overflow: hidden;
		padding-top: 65%;
	}
	.index-spot__img img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.index-spot__text {
		padding: 20px 20px 30px;
		line-height: 1.6;
	}
	.index-spot__text .index-spot__ttl {
		font-size: 2.4rem;
		font-weight: 600;
	}
	.index-spot__text p {
		margin-top: 10px;
	}
	.index-spot__text a {
		position: relative;
		display: inline-block;
		color: #228E41;
		border-bottom: 1px solid #228E41;
		padding: 0 25px 4px 10px;
		font-size: 1.4rem;
		font-weight: 500;
		line-height: 1;
		margin-top: 10px;
	}
	.index-spot__text a::before {
		content: '';
		position: absolute;
		top: 3px;
		right: 10px;
		width: 10px;
		height: 10px;
		background: url(./img/outlink-g.svg) no-repeat center / cover;
	}
}

@media only screen and (max-width: 1080px) {
	.index-stores__item,
	.index-spot__item {
		width: calc(50% - 20px);
	}
}
@media only screen and (max-width: 640px) {
	.index-stores__item,
	.index-spot__item {
		width: 100%;
	}
}

.index-application {
	position: relative;
	background-color: #FFF5E4;
	margin: 120px 10px 0;
	text-align: center;
	color: #934D10;
}
.index-application::before {
	content: '';
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	height: 10px;
	background-image: url(./img/index-back.svg);
	background-repeat: repeat-x;
	background-size: cover;
	background-position: center;
	z-index: -1;
}
.index-application::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	transform: rotate(180deg);
	width: 100%;
	height: 10px;
	background-image: url(./img/index-back.svg);
	background-repeat: repeat-x;
	background-size: cover;
	background-position: center;
	z-index: -1;
}
.index-application__inner {
	position: relative;
	padding: 80px 60px 90px;
}
.index-application__inner::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 100%;
	width: 10px;
	height: calc(100% + 15px);
	background-image: url(./img/index-badge__side.svg);
	background-repeat: repeat-x;
	background-size: cover;
	background-position: center;
	z-index: -1;
}
.index-application__inner::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%) scaleX(-1);
	left: 100%;
	width: 10px;
	height: calc(100% + 15px);
	background-image: url(./img/index-badge__side.svg);
	background-repeat: repeat-x;
	background-size: cover;
	background-position: center;
	z-index: -1;
}
.index-application .ttl-02 {
	margin-top: 0;
}
.index-application__grid {
	display: flex;
	gap: 40px;
	margin-top: 40px;
}
.index-application__item {
	background-color: #fff;
	width: calc(33.3333% - 26.6666px);
	border-radius: 15px;
	padding: 30px 30px 40px;
}
.index-application__item .ttl {
	display: block;
	text-align: center;
	color: #EC6B3B;
	font-size: 3.3rem;
	font-weight: 600;
}
.index-application__item p {
	margin-top: 10px;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 600;
}
.index-application + p.care {
	text-align: center;
	margin-top: 30px;
	color: #934D10;
}
@media only screen and (max-width: 960px) {
	.index-application {
		background-color: #FFF5E4;
		margin: 80px -5px 0;
		text-align: left;
		overflow: hidden;
	}
	.index-application__inner {
		position: relative;
		padding: 30px 20px 40px;
	}
	.index-application .ttl-02 {
		margin-top: 0;
	}
	.index-application p {
		margin-top: 20px;
		line-height: 2;
		font-size: 1.6rem;
	}
	.index-application a {
		display: block;
		width: 100%;
		max-width: 360px;
		height: 60px;
		line-height: 58px;
		font-size: 1.8rem;
		font-weight: 500;
		color: #fff;
		background-color: #EC6B3B;
		border-radius: 9999px;
		margin: 30px auto 0;
		text-align: center;
	}

	.index-application__grid {
		display: flex;
		flex-wrap: wrap;
		gap: 20px;
		margin-top: 40px;
	}
	.index-application__item {
		background-color: #fff;
		width: 100%;
		border-radius: 15px;
		padding: 30px 20px;
	}
	.index-application__item figure {
		width: 70%;
		margin: auto;
	}
	.index-application__item .ttl {
		display: block;
		text-align: center;
		color: #EC6B3B;
		font-size: 2.6rem;
		font-weight: 600;
	}
	.index-application__item p {
		margin-top: 10px;
		text-align: center;
		font-size: 1.6rem;
		line-height: 1.6;
		font-weight: 600;
	}
	.index-application + p.care {
		text-align: center;
		margin-top: 20px;
		color: #934D10;
	}
}

.ttl-02 {
	text-align: center;
	font-size: 3.5rem;
	font-weight: 600;
	color: #934E10;
	margin-top: 120px;
}
.ttl-02 span {
	position: relative;
	padding: 0 65px;
}
.ttl-02 span::before,
.ttl-02 span::after {
	content: '';
	position: absolute;
	top: calc(50% + 1px);
	transform: translateY(-50%);
	width: 43px;
	height: 9px;
	background: url(./img/ttl-02.svg) no-repeat center / cover;
}
.ttl-02 span::before {
	left: 0;
}
.ttl-02 span::after {
	right: 0;
}
.index-content p.center {
	text-align: center;
	margin-top: 40px;
}
@media only screen and (max-width: 960px) {
	.ttl-02 {
		text-align: center;
		font-size: 2.8rem;
		font-weight: 600;
		color: #934E10;
		margin-top: 60px;
	}
	.ttl-02 span {
		position: relative;
		padding: 0 55px;
	}
	.ttl-02 span::before,
	.ttl-02 span::after {
		content: '';
		position: absolute;
		top: calc(50% + 2px);
		transform: translateY(-50%);
		width: 38px;
		height: 7.5px;
		background: url(./img/ttl-02.svg) no-repeat center / cover;
	}
	.ttl-02 span::before {
		left: 0;
	}
	.ttl-02 span::after {
		right: 0;
	}
}