/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	margin: 0 auto;
	width: min(92.2rem, 83.818vw);
	height: min(80rem, 72.727vw);
	position: relative;
}

.header__title {
	width: min(63.3rem, 57.545vw);
	width: min(68.7rem, 62.455vw);
	position: absolute;
	top: min(9.5rem, 8.636vw);
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

.header__icon {
	position: absolute;
	z-index: 1;
}

.header__icon.icon01 {
	width: min(13.9rem, 12.636vw);
	top: min(9.5rem, 8.636vw);
	left: min(19.5rem, 17.727vw);
}

.header__icon.icon02 {
	width: min(20.8rem, 18.909vw);
	top: min(9.8rem, 8.909vw);
	right: min(6.5rem, 5.909vw);
}

.header__icon.lead {
	width: min(11rem, 10vw);
	top: min(21rem, 19.091vw);
	left: min(9rem, 8.182vw);
}

@media screen and (max-width: 768px) {
	.header {
		width: 100%;
		height: 123vw;
	}

	.header__title {
		width: 84vw;
		top: 26.5vw;
	}

	.header__icon.icon01 {
		width: 25.25vw;
		top: 19.5vw;
		left: 8.75vw;
	}

	.header__icon.icon02 {
		width: 29.5vw;
		top: 29.5vw;
		right: 2.5vw;
	}

	.header__icon.lead {
		width: 15vw;
		top: 46.5vw;
		left: 3.75vw;
	}
}

/*
	anime
------------------------------ */
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 3s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.delay01 {
	animation-delay: 0.25s;
}

.delay02 {
	animation-delay: 0.5s;
}

.delay03 {
	animation-delay: 0.75s;
}

.delay04 {
	animation-delay: 1s;
}

.delay05 {
	animation-delay: 1.25s;
}

.delay06 {
	animation-delay: 1.5s;
}

/* ----------------------------------------------------
	members
---------------------------------------------------- */
.members {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

.members a {
	background-color: rgb(var(--red));
	background-image: url(../img/arrow01.svg);
	background-position: center left min(2.8rem, 2.545vw);
	background-repeat: no-repeat;
	background-size: auto min(1.4rem, 1.273vw);
	width: min(35.4rem, 32.182vw);
	height: min(6.8rem, 6.182vw);
	color: rgb(var(--wht));
	font-size: min(1.8rem, 1.636vw);
	font-weight: 700;
	text-decoration: none;
	border-radius: 0 0 min(4.7rem, 4.273vw) 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.members a {
		background-position: center left 3vw;
		background-size: auto 2.75vw;
		width: 48.25vw;
		height: 15.25vw;
		line-height: 1.3;
		font-size: 4vw;
		border-radius: 0 0 9vw 0;
	}
}

/* ----------------------------------------------------
	nav
---------------------------------------------------- */
.nav {
	margin: 0 auto min(9rem, 8.182vw);
	width: min(92.2rem, 83.818vw);
}

.nav__list {
	display: flex;
	justify-content: space-between;
}

.nav__list--item {
	width: min(28.8rem, 26.182vw);
}

.nav__list--item a {
	width: 100%;
	text-decoration: none;
	display: block;
}

.nav__list--item a:hover {
	opacity: 1;
}

.nav__list--item .nav-inner {
	background-color: rgb(var(--gld));
	margin-bottom: min(2rem, 1.818vw);
	color: rgb(var(--wht));
	height: min(12.8rem, 11.636vw);
	line-height: 1.4;
	font-size: min(2.2rem, 2vw);
	font-weight: 700;
	text-align: center;
	border-radius: min(2.8rem, 2.545vw);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
	transition: all 0.5s ease 0s;
}

.nav__list--item .nav-inner::after {
	background-color: rgb(var(--gld));
	width: min(3.2rem, 2.909vw);
	height: min(3.7rem, 3.364vw);
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	position: absolute;
	bottom: max(-3.5rem, -3.182vw);
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s ease 0s;
	content: "";
}

.nav__list--item .nav-content {
	background-color: rgb(var(--wht));
	padding-bottom: min(7rem, 6.364vw);
	border-radius: min(0.8rem, 0.727vw);
	position: relative;
	z-index: 1;
}

.nav__list--item .nav-content::before {
	background-position: center bottom min(1.6rem, 1.455vw);
	background-repeat: no-repeat;
	height: min(17rem, 15.455vw);
	display: block;
	content: "";
}

.nav__list--item.nav01 .nav-content::before {
	background-image: url(../img/nav_icon01.svg);
	background-size: min(10rem, 9.091vw) auto;
}

.nav__list--item.nav02 .nav-content::before {
	background-image: url(../img/nav_icon02.svg);
	background-size: min(12.8rem, 11.636vw) auto;
}

.nav__list--item.nav03 .nav-content::before {
	background-image: url(../img/nav_icon03.svg);
	background-size: min(12.8rem, 11.636vw) auto;
}

.nav__list--item .nav-content::after {
	background-image: url(../img/arrow02.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: min(2.2rem, 2vw) auto;
	width: 100%;
	height: min(4.1rem, 3.727vw);
	border-radius: 0 0 min(0.8rem, 0.727vw) min(0.8rem, 0.727vw);
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
}

.nav-content__detail--title {
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: auto min(2.2rem, 2vw);
	margin-bottom: min(2.2rem, 2vw);
	padding-bottom: min(4rem, 3.636vw);
	height: min(15.5rem, 14.091vw);
	line-height: 1.3;
	color: rgb(var(--gld));
	font-size: min(2.7rem, 2.455vw);
	font-weight: 700;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav__list--item.nav01 .nav-content__detail--title {
	background-image: url(../img/bg-nav01.svg);
}

.nav__list--item.nav02 .nav-content__detail--title {
	background-image: url(../img/bg-nav02.svg);
}

.nav__list--item.nav03 .nav-content__detail--title {
	background-image: url(../img/bg-nav03.svg);
}

.nav__list--item .nav__title small {
	font-size: 0.7em;
}

.nav-content__detail--text {
	line-height: 1.5;
	font-size: min(2.2rem, 2vw);
	text-align: center;
}

/* hover */
.nav__list--item a:hover {
	opacity: 1;
}

.nav__list--item a:hover .nav-inner {
	transform: scale(1.15);
}

.nav__list--item.nav01 .nav-content::after,
.nav__list--item.nav01 a:hover .nav-inner,
.nav__list--item.nav01 a:hover .nav-inner::after {
	background-color: rgb(var(--red));
}

.nav__list--item.nav02 .nav-content::after,
.nav__list--item.nav02 a:hover .nav-inner,
.nav__list--item.nav02 a:hover .nav-inner::after {
	background-color: rgb(var(--blu));
}

.nav__list--item.nav03 .nav-content::after,
.nav__list--item.nav03 a:hover .nav-inner,
.nav__list--item.nav03 a:hover .nav-inner::after {
	background-color: rgb(var(--gre));
}

@media screen and (max-width: 768px) {
	.nav {
		margin-bottom: 9vw;
		width: 91.75vw;
	}

	.nav__list--item {
		width: 28.75vw;
	}

	.nav__list--item .nav-inner {
		margin-bottom: 2vw;
		height: 17.5vw;
		font-size: 2.75vw;
		border-radius: 3.5vw;
	}

	.nav__list--item .nav-inner::after {
		width: 3vw;
		height: 3.75vw;
		bottom: -3vw;
	}

	.nav__list--item .nav-content {
		padding-bottom: 8vw;
		border-radius: 1.25vw;
	}

	.nav__list--item .nav-content::before {
		background-position: center bottom 2vw;
		height: 17.5vw;
	}

	.nav__list--item.nav01 .nav-content::before {
		background-size: 10vw;
	}

	.nav__list--item.nav02 .nav-content::before {
		background-size: 12.75vw auto;
	}

	.nav__list--item.nav03 .nav-content::before {
		background-size: 12.75vw auto;
	}

	.nav__list--item .nav-content::after {
		background-size: 2.5vw auto;
		height: 4vw;
		border-radius: 0 0 1.25vw 1.25vw;
	}

	.nav-content__detail--title {
		background-size: auto 2.25vw;
		margin-bottom: 3vw;
		padding-bottom: 3.75vw;
		height: 22.5vw;
		font-size: 3.5vw;
	}

	.nav-content__detail--text {
		font-size: 2.75vw;
	}
}

/* ----------------------------------------------------
	main
---------------------------------------------------- */
.main__note {
	margin: 0 auto;
	padding: min(6rem, 5.455vw) 0;
	width: min(69rem, 62.727vw);
}

@media screen and (max-width: 768px) {
	.main__note {
		padding: 7.5vw 12.5vw;
		width: 100%;
	}
}

/* ----------------------------------------------------
	section
---------------------------------------------------- */
.section {
	margin: 0 auto min(7rem, 6.364vw);
	width: min(92.2rem, 83.818vw);
}

.section__header {
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-top: min(7.5rem, 6.818vw);
}

.section__title {
	margin-bottom: min(5rem, 4.545vw);
}

.section__lead {
	font-size: min(2.4rem, 2.182vw);
	text-align: center;
}

.section__content {
	background-color: rgb(var(--wht));
	padding: min(7.5rem, 6.818vw) min(9.4rem, 8.545vw);
	border-radius: 0 0 min(1.6rem, 1.455vw) min(1.6rem, 1.455vw);
}

.section__content--title {
	margin-bottom: min(5rem, 4.545vw);
	text-align: center;
}

.section__content--title span {
	font-size: min(3.5rem, 3.182vw);
	font-weight: 700;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	display: inline-block;
}

.section__list {
	margin-bottom: min(6.5rem, 5.909vw);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.section__list--item {
	position: relative;
}

.section__list .section__image {
	position: relative;
}

@media screen and (max-width: 768px) {
	.section {
		margin-bottom: 9vw;
		width: 91.75vw;
	}

	.section__header {
		padding-top: 9vw;
	}

	.section__title {
		margin-bottom: 7.5vw;
	}

	.section__lead {
		font-size: 3.75vw;
	}

	.section__content {
		padding: 7.5vw 4.75vw;
		border-radius: 0 0 2vw 2vw;
	}

	.section__content--title {
		margin-bottom: 10vw;
	}

	.section__content--title span {
		font-size: 4vw;
	}

	.section__list {
		margin-bottom: 7.5vw;
	}
}

/*
	participation
------------------------------ */
.participation {
	background-color: #f7f0d9;
	padding: min(5rem, 4.545vw) 0;
	text-align: center;
}

.participation__title {
	margin: 0 auto min(2rem, 1.818vw);
	width: min(56.2rem, 51.091vw);
	position: relative;
}

.participation__title::before {
	background-color: rgb(var(--gld));
	width: 100%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	content: "";
}

.participation__title--inner {
	background-color: #f7f0d9;
	padding: 0 0.5em;
	color: rgb(var(--gld));
	font-size: min(2.1rem, 1.909vw);
	display: inline-block;
	position: relative;
	z-index: 2;
}

.participation__content {}

.participation__content .title,
.participation__content .text {
	font-size: min(1.8rem, 1.636vw);
	font-weight: 500;
}

.participation__content .title {
	margin-top: 1em;
}

.participation__content .text:not(:first-of-type) {
	margin-top: 1em;
}

.participation__content .text.mark::before {
	color: rgb(var(--gld));
	content: "●";
}

.participation__content:not(:last-of-type) {
	margin-bottom: min(4rem, 3.636vw);
}

.participation__content .note {
	margin-top: 1em;
}

.participation__content .title+.note {
	margin-top: 0;
}

.participation__content .link-button {
	background-color: rgb(var(--gld));
	background-image: url(../img/arrow01.svg);
	background-position: center left min(6.8rem, 6.182vw);
	background-repeat: no-repeat;
	background-size: min(0.8rem, 0.727vw) auto;
	margin: 1em auto 0;
	width: min(41rem, 37.273vw);
	height: min(6rem, 5.455vw);
	color: rgb(var(--wht));
	font-size: min(1.8rem, 1.636vw);
}

@media screen and (max-width: 768px) {
	.participation {
		padding: 7.5vw 5vw;
	}

	.participation__title {
		margin-bottom: 3.75vw;
		width: 100%;
	}

	.participation__title--inner {
		font-size: 5vw;
	}

	.participation__content {
		text-align: left;
	}

	.participation__content .title,
	.participation__content .text {
		font-size: 3.75vw;
	}

	.participation__content .title {
		margin-top: 1em;
	}

	.participation__content:not(:last-of-type) {
		margin-bottom: 10vw;
	}

	.participation__content .link-button {
		background-position: center left 6.25vw;
		background-size: 2vw auto;
		width: 100%;
		height: 12.5vw;
		font-size: 3.75vw;
	}
}

/* ----------------------------------------------------
	luck
---------------------------------------------------- */
.luck .section__header {
	background-image: url(../img/bg-luck.webp);
}

.luck .section__title {
	margin-left: min(8rem, 7.273vw);
	width: min(78.5rem, 71.364vw);
}

.luck .section__content--title span {
	color: rgb(var(--red));
	border-bottom-color: rgb(var(--red));
}

.luck .section__content--title {
	margin-bottom: min(8.6rem, 7.818vw);
}

.luck .section__list--item {
	width: min(34.9rem, 31.727vw);
}

.luck .section__list--item .section__image {
	margin-bottom: min(2rem, 1.818vw);
}

.luck .section__list--item .section__image::before {
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	width: min(12.6rem, 11.455vw);
	height: min(13.8rem, 12.545vw);
	position: absolute;
	top: max(-6rem, -5.455vw);
	left: max(-2.4rem, -2.182vw);
	z-index: 2;
	content: "";
}

.luck .section__list--item.set15 .section__image::before {
	background-image: url(../img/set15.svg);
}

.luck .section__list--item.set30 .section__image::before {
	background-image: url(../img/set30.svg);
}

.luck .section__detail--title {
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	color: rgb(var(--gld));
	font-size: min(2.6rem, 2.364vw);
	border-bottom: solid 1px rgb(var(--gld));
}

.luck .section__detail--text .text {
	font-size: min(1.8rem, 1.636vw);
}

@media screen and (max-width: 768px) {
	.luck .section__title {
		margin-left: 4.75vw;
		width: 88vw;
	}

	.luck .section__content--title {
		margin-bottom: 11.25vw;
	}

	.luck .section__list--item {
		width: 39.25vw;
	}

	.luck .section__list--item .section__image {
		margin-bottom: 2.5vw;
	}

	.luck .section__list--item .section__image::before {
		width: 15vw;
		height: 15.75vw;
		top: -9.25vw;
		left: -1.75vw;
	}

	.luck .section__detail--title {
		font-size: 3.25vw;
	}

	.luck .section__detail--text .text {
		font-size: 2.5vw;
	}

	.luck .section__detail--text .note li {
		font-size: 2.25vw;
	}
}

/* ----------------------------------------------------
	dream
---------------------------------------------------- */
.dream .section__header {
	background-image: url(../img/bg-dream.webp);
}

.dream .section__title {
	margin-left: min(13.1rem, 11.909vw);
	width: min(67.6rem, 61.455vw);
}

.dream .section__content--title span {
	color: rgb(var(--blu));
	border-bottom-color: rgb(var(--blu));
}

.dream .section__list--item {
	width: min(36.2rem, 32.909vw);
}

.dream .section__list--item:first-of-type {
	margin-bottom: min(0.8rem, 0.727vw);
	width: 100%;
}

.dream .section__list--item:last-of-type {
	margin-top: min(2.4rem, 2.182vw);
	width: 100%;
	display: flex;
	align-items: center;
}

.dream .section__list--item:first-of-type::before {
	background-image: url(../img/set10.svg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	width: min(12.6rem, 11.455vw);
	height: min(13.8rem, 12.545vw);
	position: absolute;
	top: max(-6rem, -5.455vw);
	left: max(-2.4rem, -2.182vw);
	z-index: 2;
	content: "";
}

.dream .section__list--item .section__image figcaption {
	color: rgb(var(--wht));
	font-size: min(1.2rem, 1.091vw);
	position: absolute;
	right: min(0.8rem, 0.727vw);
	bottom: min(0.8rem, 0.727vw);
}

.dream .section__list--item:last-of-type .section__image {
	margin-right: min(1.8rem, 1.636vw);
	width: min(27.8rem, 25.273vw);
}

.dream .section__list--item .content__title {
	color: rgb(var(--gld));
	font-size: min(2.6rem, 2.364vw);
	font-weight: 700;
}

.dream .section__list--item .content__detail {
	font-size: min(1.8rem, 1.636vw);
}

.dream .section__list--item .note {
	letter-spacing: -0.005em;
}

@media screen and (max-width: 768px) {
	.dream .section__title {
		margin-left: 2.5vw;
		width: 89.5vw;
	}

	.dream .section__list--item {
		width: 40.5vw;
	}

	.dream .section__list--item:first-of-type {
		margin-bottom: 1vw;
	}

	.dream .section__list--item:first-of-type::before {
		width: 15vw;
		height: 15.75vw;
		top: -9.25vw;
		left: -1.75vw;
	}

	.dream .section__list--item:last-of-type {
		margin-top: 4.5vw;
		line-height: 1.25;
		align-items: flex-start;
	}

	.dream .section__list--item .section__image figcaption {
		font-size: 2.25vw;
		right: 2.25vw;
		bottom: 1vw;
	}

	.dream .section__list--item:last-of-type .section__image {
		margin-right: 3vw;
		width: 40.5vw;
	}

	.dream .section__list--item .content__title {
		margin-bottom: 0.5em;
		font-size: 3.25vw;
	}

	.dream .section__list--item .content__detail {
		font-size: 2.5vw;
	}

	.dream .section__list--item .note li {
		font-size: 2.25vw;
	}
}

/* ----------------------------------------------------
	coupon
---------------------------------------------------- */
.coupon .section__header {
	background-image: url(../img/bg-coupon.webp);
}

.coupon .section__title {
	margin-left: min(16rem, 14.545vw);
	width: min(65rem, 59.091vw);
}

.coupon .section__list {}

.coupon .section__list--item {
	width: min(23.5rem, 21.364vw);
}

@media screen and (max-width: 768px) {
	.coupon {
		margin-bottom: 0;
	}

	.coupon .section__title {
		margin-left: 4.75vw;
		width: 84vw;
	}

	.coupon .section__list--item {
		width: 26.5vw;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background-color: rgb(var(--wht));
	padding: min(6rem, 5.455vw) 0;
}

.footer__list {
	margin: 0 auto min(2rem, 1.818vw);
	width: min(61.2rem, 55.636vw);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.footer__list--item {}

.footer__list--item.celestine,
.footer__list--item.garden {
	margin-right: min(4.1rem, 3.727vw);
}

.footer__list--item.sequence {}

.footer__list--item.management {
	margin-top: min(5.7rem, 5.182vw);
}

.footer__list--item a {}

.footer__list--item.celestine img {
	width: min(15.9rem, 14.455vw);
}

.footer__list--item.garden img {
	width: min(24.1rem, 21.909vw);
}

.footer__list--item.sequence img {
	width: min(12.9rem, 11.727vw);
}

.footer__list--item.management img {
	width: min(23.1rem, 21vw);
}

.footer .copy {
	color: #808080;
	font-size: min(1.2rem, 1.091vw);
	text-align: center;
}

@media screen and (max-width: 768px) {
	.footer {
		padding: 12.5vw 0;
	}

	.footer__list {
		margin-bottom: 0;
		padding: 0 7.5vw;
		width: 100%;
		display: block;
	}

	.footer__list--item {
		margin-bottom: 7.5vw;
		text-align: center;
	}

	.footer__list--item.celestine,
	.footer__list--item.garden {
		margin-right: 0;
	}

	.footer__list--item.management {
		margin-top: 0;
	}

	.footer__list--item.celestine img {
		width: 45vw;
	}

	.footer__list--item.garden img {
		width: 68vw;
	}

	.footer__list--item.sequence img {
		width: 36.25vw;
	}

	.footer__list--item.management img {
		width: 65.5vw;
	}

	.footer .copy {
		font-size: 2.75vw;
	}
}