@charset "utf-8";

/* mainVisual */
.mainVisual {
	position: relative;
	padding: 3rem 2rem;
}
.mainVisual h1 {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 20rem;
	height: 42.3rem;
	z-index: 100;
}
.mainVisual .logoTsunagu {
	width: 37.1rem;
	position: absolute;
	top: 1rem;
	left: 5rem;
	z-index: 101;
}
@media (max-width: 768px) {
	.mainVisual h1 {
		width: 20.5rem;
		height: 43.6rem;
	}
	.mainVisual .logoTsunagu {
		width: 30.5rem;
		left: 1rem;
	}
}

/* concept */
.concept h2 {
	padding: 1rem 0 0.8rem;
	font-size: 2.8rem;
	font-weight: 700;
	font-family: "Hind", serif;
	font-style: normal;
	text-align: center;
	border-top: 0.2rem solid #323c50;
	border-bottom: 0.2rem solid #323c50;
}
.concept h3 {
	padding-top: 4.5rem;
	font-size: 3.8rem;
	font-weight: 600;
	font-family: "Noto Serif CJK JP", serif;
	text-align: center;
}
.concept h3 + p {
	margin-top: 1rem;
	font-size: 1.9rem;
	font-family: "Noto Serif CJK JP", serif;
	text-align: center;
}
.concept .lead {
	margin-top: 5rem;
	text-align: center;
}
/* accordion */
.accordionItem {
	margin-top: 2.5rem;
}
.accordionHeader {
	display: block;
	width: 43.8rem;
	margin: 0 auto;
	border-radius: 3rem;
	background-color: #323c50;
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	padding: 1rem 5rem 1rem 3rem;
	transition: background-color 0.3s ease;
	position: relative;
	cursor: pointer;
}
.accordionHeader::after {
	content: "";
	position: absolute;
	top: -0.3rem;
	right: 3rem;
	bottom: 0;
	width: 1.3rem;
	height: 1.3rem;
	margin: auto;
	border: solid #fff;
	border-width: 1px 1px 0 0;
	transform: rotate(135deg);
	transition: transform 0.3s ease;
}
.accordionHeader[aria-expanded="true"]::after {
	top: 1rem;
	transform: rotate(-45deg);
}
.accordionPanel {
	display: block;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	visibility: hidden;
	padding: 1rem 0;
}
.accordionItem.open .accordionPanel {
	max-height: 100rem;
	visibility: visible;
}
.accordionPanel .accTxt {
	width: 43.8rem;
	margin: 0 auto;
	font-size: 1.4rem;
	text-align: center;
}
.concept .logoDesign {
	margin-top: 5rem;
	display: flex;
	justify-content: center;
}
.concept .logoDesign .logo {
	width: 10rem;
}
.concept .logoDesign .designTxt {
	margin-left: 6rem;
	padding-left: 5rem;
	border-left: 0.2rem solid #323c50;
	width: 46rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.concept .logoDesign .designTxt h4 {
	font-size: 2rem;
	font-weight: bold;
	font-family: "Hind", serif;
	font-weight: 700;
	font-style: normal;
}
@media (max-width: 768px) {
	.concept h2 {
		font-size: 4rem;
	}
	.concept h3 {
		padding-top: 7rem;
		font-size: 5rem;
		line-height: 7.5rem;
	}
	.concept h3 + p {
		margin-top: 1.5rem;
		font-size: 3.3rem;
		line-height: 5rem;
	}
	.concept .lead {
		margin-top: 8rem;
	}
	/* accordion */
	.accordionItem {
		margin-top: 2.5rem;
	}
	.accordionHeader {
		width: 65rem;
		border-radius: 5rem;
		font-size: 3rem;
		padding: 1.5rem 5rem 1.5rem 3rem;
	}
	.accordionHeader::after {
		width: 1.5rem;
		height: 1.5rem;
	}
	.accordionPanel .accTxt {
		width: 65rem;
		font-size: 2.8rem;
	}
	.concept .logoDesign {
		margin-top: 10rem;
		flex-direction: column;
	}
	.concept .logoDesign .logo {
		margin: 0 auto;
		width: 18.3rem;
	}
	.concept .logoDesign .designTxt {
		margin: 6rem auto 0;
		padding: 3.5rem 0 0;
		border-left: none;
		border-top: 0.2rem solid #323c50;
		width: 54rem;
		letter-spacing: -0.05em;
	}
	.concept .logoDesign .designTxt h4 {
		font-size: 4rem;
	}
	.concept .logoDesign .designTxt p {
		margin-top: 2rem;
	}
}

/* popup */
.popup {
	margin-top: 7rem;
	font-size: 1.8rem;
}
.popup .lead {
	text-align: center;
}
.popup .schedule {
	margin-top: 1rem;
	background-color: #d7dcdc;
	border-top: 0.2rem solid #323c50;
	border-bottom: 0.2rem solid #323c50;
}
.popup .schedule .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}
.popup .schedule .ttl {
	padding: 2rem 1rem 2rem 0;
	width: 30rem;
}
.popup .schedule ul {
	padding: 2rem 2rem 2rem 4rem;
	border-left: 0.2rem solid #323c50;
	width: 75rem;
}
.popup .schedule ul li {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.6;
}
.popup .schedule ul li + li {
	margin-top: 1rem;
}
@media (max-width: 768px) {
	.popup {
		margin-top: 8rem;
		font-size: 2.8rem;
	}
	.popup .schedule {
		margin-top: 5rem;
	}
	.popup .schedule .wrap {
		flex-direction: column;
	}
	.popup .schedule .ttl {
		padding: 1.2rem 2rem;
		width: 100%;
		font-size: 3.3rem;
		text-align: center;
	}
	.popup .schedule ul {
		padding: 5rem 6rem;
		border-left: none;
		border-top: 0.2rem solid #323c50;
		width: 100%;
		line-height: 1.6;
	}
	.popup .schedule ul li + li {
		margin-top: 1.8rem;
	}
}

/* online */
.online {
	padding: 1.5rem 0 ;
	display: flex;
	justify-content: center;
	gap: 0 2rem;
}
.online .txt {
	font-size: 1.8rem;
}
.online .btn a {
	display: block;
	padding: 0 4rem 0.2rem 2rem;
	text-align: center;
	border: solid 0.2rem #323c50;
	border-radius: 2rem;
	position: relative;
}
.online .btn a::after {
	display: block;
	content: '';
	width: 2.4rem;
	height: 0.8rem;
	background-image: url(/base/pc/store/special/ffays/2026/img/common/arrow01.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 0.4rem);
	right: 1rem;
}
@media (max-width: 768px) {
	.online {
		padding: 5rem 3rem;
		flex-direction: column;
		align-items: center;
		gap: 2rem 0;
	}
	.online .txt {
		font-size: 2.8rem;
	}
	.online .btn {
		margin: 0 auto;
		width: 41.8rem;
	}
	.online .btn a {
		border-radius: 3rem;
	}
	.online .btn a::after {
		width: 4.5rem;
		height: 1.6rem;
		top: calc(50% - 0.8rem);
		right: 2rem;
	}
}

/* aboutBox */
.aboutBox {
	background-color: #d7dcdc;
	border-top: 0.2rem solid #323c50;
}
.aboutBox .inner {
	position: relative;
}
.aboutBox .inner::before {
	display: block;
	content: '';
	width: 0.2rem;
	background-color: #323c50;
	position: absolute;
}
.aboutBox h3 {
	font-size: 5rem;
	line-height: 1;
	font-family: "Noto Serif CJK JP", serif;
	position: absolute;
}
.aboutBox .txtBox {
	padding: 3rem 1.8rem;
	border: solid 0.2rem #323c50;
	background-color: #d7dcdc;
	position: absolute;
}
.aboutBox .txtBox .ttl {
	font-size: 1.8rem;
}
.aboutBox .txtBox .txt {
	margin-top: 0.5rem;
}
.aboutBox .txtBox .btn {
	margin: 1rem auto 0;
	width: 20rem;
}
.aboutBox .txtBox .btn a,
.aboutBox .txtBox .btn span {
	display: block;
	padding: 1.3rem 1rem;
	background-color: #323c50;
	color: #fff;
	text-align: center;
	border-radius: 3rem;
	position: relative;
}
.aboutBox .txtBox .btn a::after {
	display: block;
	content: '';
	width: 2.4rem;
	height: 0.9rem;
	background-image: url(/base/pc/store/special/ffays/2026/img/common/arrow02.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 0.4rem);
	right: 1.5rem;
}
.aboutBox .txtBox .note {
	margin-top: 1rem;
	font-size: 1.3rem;
	text-align: center;
}
@media (max-width: 768px) {
	.aboutBox h3 {
		font-size: 8rem;
		position: static;
	}
	.aboutBox .pic {
		position: relative;
	}
	.aboutBox .txtBox {
		padding: 3.5rem 4rem 5rem;
		position: relative;
	}
	.aboutBox .txtBox .ttl {
		font-size: 3.6rem;
	}
	.aboutBox .txtBox .txt {
		margin-top: 0.5rem;
	}
	.aboutBox .txtBox .btn {
		margin: 3rem auto 0;
		width: 39.5rem;
	}
	.aboutBox .txtBox .btn a,
	.aboutBox .txtBox .btn span {
		padding: 2.5rem 1rem;
		border-radius: 5rem;
	}
	.aboutBox .txtBox .btn a::after {
		width: 4.8rem;
		height: 1.7rem;
		top: calc(50% - 0.8rem);
		right: 1.5rem;
	}
	.aboutBox .txtBox .note {
		margin-top: 1rem;
		font-size: 2.8rem;
	}
}

/* story */
.story {
	padding: 8rem 0 10rem;
}
.story .inner::before {
	height: calc(100% + 18rem);
	top: -8rem;
	right: 22rem;
}
.story h3 {
	top: 0;
	right: 6.5rem;
}
.story .pic {
	margin-left: 6.5rem;
	width: 65rem;
}
.story .txtBox {
	width: 24rem;
	top: 8rem;
	right: 6.5rem;
}
@media (max-width: 768px) {
	.story {
		padding: 5rem 3.5rem 6rem;
	}
	.story .inner::before {
		height: calc(100% + 11rem);
		top: -5rem;
		right: 23rem;
	}
	.story h3 {
		text-align: right;
	}
	.story .pic {
		margin-top: 2rem;
		margin-left: 0;
		width: 100%;
		text-align: center;
	}
	.story .txtBox {
		margin-top: 3rem;
		width: 100%;
		top: unset;
		right: unset;
	}
}

/* products */
.products {
	padding: 8rem 0 12rem;
}
.products .inner::before {
	height: calc(100% + 20rem);
	top: -8rem;
	left: 30rem;
}
.products h3 {
	top: 0;
	left: 6.5rem;
}
.products .pic {
	margin-left: auto;
	width: 65.6rem;
	display: flex;
	gap: 0 2rem;
}
.products .txtBox {
	width: 29.7rem;
	top: 8rem;
	left: 6.5rem;
}
@media (max-width: 768px) {
	.products {
		padding: 6rem 3.5rem 6rem;
	}
	.products .inner::before {
		height: calc(100% + 12rem);
		top: -6rem;
		left: 42rem;
	}
	.products .pic {
		margin-top: 2rem;
		margin-left: -3.5rem;
		margin-right: -3.5rem;
		width: auto;
	}
	.products .txtBox {
		margin-top: 3rem;
		width: 100%;
		top: unset;
		left: unset;
	}
}

/* collaboration */
.collaboration {
	padding: 16rem 0 8rem;
}
.collaboration .inner::before {
	height: calc(100% + 24rem);
	top: -16rem;
	right: 22rem;
}
.collaboration h3 {
	top: -8rem;
	left: 6.5rem;
}
.collaboration .pic {
	margin-left: 6.5rem;
	width: 65rem;
}
.collaboration .txtBox {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	width: 27.9rem;
	top: 2rem;
	right: 6.5rem;
}
@media (max-width: 768px) {
	.collaboration {
		padding: 5rem 3.5rem 6rem;
	}
	.collaboration .inner::before {
		height: calc(100% + 11rem);
		top: -5rem;
		left: 16.7rem;
	}
	.collaboration h3 {
		font-size: 7.5rem;
		text-align: right;
	}
	.collaboration .pic {
		margin: 2rem 0 0;
		width: 100%;
		text-align: center;
	}
	.collaboration .txtBox {
		margin-top: 3rem;
		padding: 3.5rem 4rem 4rem;
		width: 100%;
		top: unset;
		right: unset;
	}
}

/* archive */
.archive a {
	display: block;
	margin: 5rem auto;
	width: 32.8rem;
	padding: 1rem;
	background-color: #323c50;
	color: #fff;
	text-align: center;
	border-radius: 3rem;
	position: relative;
}
.archive a::after {
	display: block;
	content: '';
	width: 2.4rem;
	height: 0.9rem;
	background-image: url(/base/pc/store/special/ffays/2026/img/common/arrow02.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: calc(50% - 0.4rem);
	right: 1.5rem;
}
@media (max-width: 768px) {
	.archive a {
		margin: 5rem auto;
		width: 50rem;
		padding: 1rem;
		border-radius: 5rem;
	}
	.archive a::after {
		width: 4.5rem;
		height: 1.5rem;
		top: calc(50% - 0.7rem);
		right: 1rem;
	}
}