body {
	font-family: "Noto Serif JP", serif;
}

body {
	font-weight: 500;
}

body {
	color: #3F3831;
}

.u-desktop {
	display: none;
}

.u-tablet {
	display: none;
}

.faq__nav {
	font-family: "Noto Sans JP", sans-serif;
	padding: 50px 18px 0;
}

.faq__nav__list {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: clamp(20px, 2.0833333333vw, 30px);
}

.faq__nav__list li {
	width: 100%;
	background: linear-gradient(130deg, #98CFA0 0%, #57B7A9 70%);
	border-radius: 10px;
	position: relative;
}

.faq__nav__list li::before {
	content: "";
	display: block;
	position: absolute;
	inset: 2px;
	background: #fff;
	border-radius: 9px;
}

.faq__nav__list li .faq__nav__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 20px;
	font-size: clamp(18px, 1.8055555556vw, 26px);
	font-weight: 700;
	text-decoration: none;
	position: relative;
}

.faq__nav__list li .faq__nav__link span {
	background: linear-gradient(130deg, #98CFA0 0%, #57B7A9 70%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
}

.faq__nav__list li .faq__nav__link .faq__nav__arrow {
	width: clamp(18px, 1.5972222222vw, 23px);
	flex-shrink: 0;
}

.faq__content {
	font-family: "Noto Sans JP", sans-serif;
	padding: 50px 18px;
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 2.6041666667vw, 35px);
}

.faq__content__inner {
	max-width: 1400px;
	margin: 0 auto;
}

.faq__content__inner .faq__content__title {
	font-size: clamp(26px, 6.9333333333vw, 36px);
	font-weight: 500;
	line-height: 1.3;
	font-family: "Noto Serif JP", serif;
	color: #fff;
	background: linear-gradient(130deg, #98CFA0 0%, #57B7A9 70%);
	padding: 10px 20px;
	border-radius: 10px 10px 0 0;
}

.faq__content__inner .faq__content__wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: linear-gradient(130deg, #98CFA0 0%, #57B7A9 70%);
	border-radius: 0 0 10px 10px;
	gap: clamp(20px, 2.0833333333vw, 30px);
	padding: clamp(20px, 4.9479166667vw, 38px) clamp(18px, 4.8vw, 28px);
	position: relative;
	z-index: 1;
}

.faq__content__inner .faq__content__wrap::before {
	content: "";
	display: block;
	position: absolute;
	inset: 2px;
	z-index: -1;
	background: #fff;
	border-radius: 0 0 9px 9px;
}

.faq__content__inner .faq__content__wrap .faq__content__list {
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 2.6041666667vw, 35px);
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item {
	background: #F9F8F0;
	padding: clamp(10px, 2.6666666667vw, 20px);
	border-radius: 10px;
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item__question {
	display: flex;
	align-items: center;
	gap: 10px;
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item__question__icon {
	font-size: clamp(20px, 2.8125vw, 45px);
	font-weight: 400;
	line-height: 1;
	font-family: "Noto Serif JP", serif;
	color: #56B6A8;
	flex-shrink: 0;
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item__question__text {
	font-size: clamp(16px, 4.2666666667vw, 18px);
	font-weight: 400;
	flex-grow: 1;
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item__question__toggle {
	width: clamp(20px, 2.6041666667vw, 34px);
	aspect-ratio: 1;
	transform: rotate(180deg);
	transition: transform 0.3s ease-in-out;
	flex-shrink: 0;
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out;
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item__answer__inner {
	padding: 16px 14px;
	margin-top: 20px;
	background: #fff;
	border-radius: 6px;
	display: flex;
	align-items: center;
	gap: clamp(10px, 1.25vw, 24px);
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item__answer__inner .faq__content__item__answer__icon {
	font-size: clamp(20px, 2.0833333333vw, 30px);
	font-weight: 400;
	line-height: 1;
	font-family: "Noto Serif JP", serif;
	color: #56B6A8;
	align-self: flex-start;
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item__answer__inner .faq__content__item__answer__text {
	font-size: clamp(14px, 3.7333333333vw, 16px);
	font-weight: 400;
	line-height: 1.3;
	flex-grow: 1;
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item.open .faq__content__item__question__toggle {
	transform: rotate(0deg);
}

.lower__mv {
	position: relative;
	z-index: 1;
}

.lower__mv__inner {
	height: 260px;
	position: relative;
	background-image: url("../../images/lower/lower_mv_sp.webp");
	background-size: cover;
	background-position: 75% 70%;
	background-repeat: no-repeat;
	padding-top: 40px;
}

.lower__mv__inner .lower__mv__logo {
	width: fit-content;
	position: absolute;
	top: 0.8854166667vw;
	display: none;
}

.lower__mv__inner .lower__mv__logo a img {
	max-width: 323px;
	width: 16.8229166667vw;
	display: block;
}

.lower__mv__inner .lower__mv__content {
	padding: 50px 23px 25px;
}

.lower__mv__inner .lower__mv__content__title {
	font-size: clamp(40px, 3.3854166667vw, 65px);
	font-weight: 600;
	font-family: "Noto Serif JP", serif;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #454444;
}

.lower__mv__inner .lower__mv__content__subtitle {
	font-size: 16px;
	font-weight: 500;
	font-family: "Noto Sans JP", sans-serif;
	margin-top: clamp(16px, 1.4vw, 26px);
	color: #454444;
}

.lower__mv__inner .lower__mv__breadcrumbs {
	width: fit-content;
	min-width: 360px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 0 5px 5px 0;
}

.lower__mv__inner .lower__mv__breadcrumbs__list {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 12px 36px 12px 40px;
}

.lower__mv__inner .lower__mv__breadcrumbs__list li {
	font-size: 16px;
	line-height: 1;
	display: flex;
	align-items: center;
	color: #535353;
}

.lower__mv__inner .lower__mv__breadcrumbs__list .lower__mv__breadcrumbs__link {
	font-size: 13px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #535353;
}

.lower__contact {
	padding: 50px 9px;
	font-family: "Noto Sans JP", sans-serif;
}

.lower__contact__inner {
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
}

.lower__contact__inner .lower__contact__message {
	display: none;
}

.lower__contact__inner .lower__contact__title {
	font-size: clamp(17px, 4.5333333333vw, 24px);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: #626262;
	margin-bottom: clamp(20px, 5.3333333333vw, 30px);
}

.lower__contact__inner .lower__contact__text {
	width: calc(50% - 2rem);
	color: #626262;
}

.lower__contact__inner .lower__contact__text__title {
	display: flex;
	font-size: clamp(36px, 3.6vw, 58px);
	letter-spacing: 0.05em;
	font-family: "Noto Serif JP", serif;
	color: #56B6A8;
}

.lower__contact__inner .lower__contact__text__title span {
	color: #fff;
	padding: 0 0.8rem;
	margin: 0 2px;
	background: linear-gradient(-80deg, #B7DA9C 0%, #5EBFA2 31%, #56B6A8 100%);
}

.lower__contact__inner .lower__contact__text__desc {
	font-size: clamp(16px, 1.6vw, 19px);
	font-weight: 500;
	line-height: 1.6;
	margin-top: clamp(20px, 2vw, 40px);
}

.lower__contact__inner .lower__contact__wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 5.3333333333vw, 30px);
}

.lower__contact__inner .lower__contact__btn__wrap {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.lower__contact__inner .lower__contact__btn__wrap a {
	width: calc(50% - 8px);
	padding: clamp(10px, 3.7333333333vw, 16px) clamp(10px, 4vw, 18px);
	border-radius: 100px;
	font-size: clamp(16px, 4.8vw, 24px);
	gap: 5px;
}

.lower__contact__inner .lower__contact__btn__wrap a > span {
	display: flex;
}

.lower__contact__inner .lower__contact__btn__wrap a span {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	color: inherit;
	flex-shrink: 0;
}

.lower__contact__inner .lower__contact__btn__wrap a .icon__mail {
	flex-shrink: 0;
}

.lower__contact__inner .lower__contact__tel {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	background: #F4F2DF;
	padding: clamp(13px, 3.4666666667vw, 20px) 14px clamp(16px, 4.2666666667vw, 24px);
	border-radius: 10px;
	gap: clamp(10px, 3.2vw, 23px);
}

.lower__contact__inner .lower__contact__tel p {
	width: 100%;
	font-size: clamp(10px, 3.2vw, 16px);
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.05em;
	color: #3F3831;
	margin-bottom: 0;
	text-align: center;
	border-bottom: 1px solid #CFCFCF;
	padding-bottom: 15px;
}

.lower__contact__inner .lower__contact__tel a {
	font-size: clamp(18px, 6.5333333333vw, 32px);
	gap: 4px;
	line-height: 1;
	color: #3F3831;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}

.lower__contact__inner .lower__contact__tel a img {
	width: clamp(32px, 11.2vw, 50px);
}

.lower__contact__inner .lower__contact__tel a:hover {
	opacity: 0.8;
}

.lower__contact__inner .lower__contact__tel span {
	font-size: clamp(14px, 3.7333333333vw, 18px);
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #3F3831;
}

@media screen and (min-width: 768px) {

.u-mobile {
	display: none;
}

.u-tablet {
	display: block;
}

.faq__nav {
	padding: clamp(60px, 7.8125vw, 150px) 20px 0px;
}

.faq__nav__list {
	flex-direction: row;
}

.faq__nav__list li::before {
	inset: 3px;
	border-radius: 8px;
}

.faq__nav__list li .faq__nav__link {
	padding: clamp(16px, 1.3888888889vw, 20px) clamp(20px, 1.9791666667vw, 38px);
}

.faq__content {
	padding: 60px 20px clamp(60px, 11.5972222222vw, 167px);
	gap: clamp(40px, 3.5416666667vw, 68px);
}

.lower__mv__inner {
	background-position: 50% 70%;
}

.lower__contact {
	padding: clamp(60px, 7.8125vw, 80px) 20px;
}

}

@media screen and (min-width: 1100px) {

.u-desktop {
	display: block;
}

.u-tablet {
	display: none;
}

.faq__content__inner .faq__content__title {
	font-size: clamp(30px, 2.0833333333vw, 40px);
	padding: 12px 27px;
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item__answer__inner {
	margin-top: 30px;
	padding: 24px 26px;
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item__answer__inner .faq__content__item__answer__icon {
	margin: -2px 0 0 0;
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item__answer__inner .faq__content__item__answer__text {
	line-height: 28px;
}

.faq__content__inner .faq__content__wrap .faq__content__list .faq__content__item__answer__inner .faq__content__item__answer__text br {
	display: block;
}

.lower__mv {
	padding: clamp(18px, 1.5625vw, 30px) clamp(20px, 1.8229166667vw, 35px) 0;
}

.lower__mv__inner {
	height: 25vw;
	background-image: url("../../images/lower/lower_mv.webp");
	background-position: top;
	padding: 0;
}

.lower__mv__inner .lower__mv__logo {
	display: block;
}

.lower__mv__inner .lower__mv__content {
	padding: min(14.375rem, 11vw) 0 0 min(9.375rem, 9.3vw);
}

.lower__mv__inner .lower__mv__breadcrumbs__list {
	margin-top: clamp(20px, -68px + 7.1vw, 68px);
	padding: 13px 32px 13px min(9.375rem, 9.3vw);
}

.lower__contact {
	padding: clamp(50px, 7.8125vw, 150px) 40px clamp(50px, -83px + 10.7vw, 123px);
	background: url(../../images/lower/lower_contact_bg.webp) no-repeat center center/cover;
}

.lower__contact__inner .lower__contact__message {
	display: block;
	width: 32%;
	position: absolute;
	top: -45px;
	left: clamp(30px, 3.125vw, 60px);
}

.lower__contact__inner {
	border-radius: 10px;
	padding: 52px clamp(30px, 3.125vw, 60px);
	display: flex;
	align-items: center;
	gap: 2rem;
	background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0.6980392157) 100%);
}

.lower__contact__inner .lower__contact__title {
	display: none;
}

.lower__contact__inner .lower__contact__wrap {
	width: 50%;
	flex-direction: column-reverse;
}

.lower__contact__inner .lower__contact__btn__wrap a {
	width: calc(50% - 0.5rem);
	padding: 1.125rem 1.5rem;
	border-radius: 10px;
	font-size: 1.375rem;
	gap: 1rem;
}

.lower__contact__inner .lower__contact__tel {
	flex-direction: column;
	background: #F9F8F0;
	padding: clamp(20px, 2.0833333333vw, 30px);
}

.lower__contact__inner .lower__contact__tel p {
	line-height: 1;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 0;
}

.lower__contact__inner .lower__contact__tel a {
	font-size: clamp(32px, 4.0277777778vw, 58px);
	gap: 0.9375rem;
}

.lower__contact__inner .lower__contact__tel a img {
	width: 4.5625rem;
}

.lower__contact__inner .lower__contact__tel span {
	font-size: 16px;
}

}


/*# sourceMappingURL=faq.css.map */
