@charset "UTF-8";
/*
Theme Name: とっとりまるごと暮らし応援券
*/

html {
	scroll-behavior: smooth;
}

body {
	color: var(--color-body-1);
	font-family: var(--gothic);
}

img {
	max-width: 100%;
	height: auto;
}

p{
	--fs: 16;
	font-size: var(--font-size);
	line-height: calc(33/16);
}

:where(a, button) {
	transition: opacity var(--ts);
	&:hover {
		opacity: var(--op);
	}
}

a {
	color: var(--color-body-1);
	text-decoration: none;
	&:where(:not([href]), [href=""]) {
		pointer-events: none;
	}
	@media (min-width: 768px) {
		&[href^="tel:"] {
			pointer-events: none;
		}
	}
}

main {
	overflow-x: clip;
}


/* ==========================
   header
========================== */

.header {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-left: 30px;

	@media (min-width: 992px) {
		max-width: 1030px;
		margin: auto;
		height: 120px;
		padding-left: 15px;
		padding-right: 15px;
	}
}

.header-title {
	display: contents;
}

.footer-logo,
.header-logo {
	line-height: 1px;
}

.header-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-item {
	--fs: 17;
	display: inline-block;
	font-size: var(--font-size);
	letter-spacing: 0.06em;
	color: var(--color-body-1);
	text-align: center;
	font-weight: 700;
}

@media (min-width: 992px) {
	.header-menu{
		align-items: center;
		display: flex;
		gap: 30px;
	}
	.js-drawer,
	.header-drawer {
		display: contents;
	}
	.header-drawer-toggle,
	.header-drawer .header {
		display: none;
	}
}

@media (max-width: 991px) {
	body.noscroll {
		overflow: hidden;
		touch-action: pinch-zoom;
	}
	.header {
		padding-left: var(--padding);
		height: 65px;
	}
	.header-drawer-toggle {
		--fs: 12;
		aspect-ratio: 1;
		background: var(--color-theme-pink);
		color: #fff;
		border: 0;
		display: inline-grid;
		font-weight: 700;
		line-height: 1;
		place-content: center;
		place-items: center;
		width: 65px;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 11;

		&::before {
			--mask: url(./img/icon-menu.svg) no-repeat center/contain;
			aspect-ratio: 1;
			background: currentColor;
			content: "";
			display: inline-block;
			-webkit-mask: var(--mask);
			mask: var(--mask);
			width: 45px;
		}
	}
	.header-drawer {
		background: #fff;
		inset: 0;
		overflow: auto;
		position: fixed;
		transition: opacity 0.6s;
		z-index: 10;

		&:is(body:not(.noscroll) *) {
			opacity: 0;
			visibility: hidden;
			transition: 0s;
		}
	}
	.header-menu {
		padding: 50px var(--padding);
		display: grid;
		gap: 30px;
		justify-content: center;
		text-align: center;
	}
	.header-item{
		--fs: 15;
	}
}

@media (max-width: 1199px) {
	.header-logo img {
		width: 250px;
	}
}


/* ==========================
   footer
========================== */

.footer-wrapper{
	padding-top: 60px;
	padding-bottom: 90px;
	display: grid;
	grid-template-columns: 40% auto;
	gap: 10px;
	color: var(--color-theme-blue);
	max-width: 810px;
	margin-inline: auto;

	h2{
		--fs: 21;
		font-size: var(--font-size);
		font-weight: 500;
	}

	p{
		--fs: 15;
		font-size: var(--font-size);
		line-height: calc(23/15);
		margin-bottom: 20px;
	}
}

.footer-about-call{
	margin-inline: auto;
	width: fit-content;
	text-align: left;
}

.footer-nav {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 15px 40px;
	padding: 0;
	margin-bottom: 30px;
	flex-wrap: wrap;

	li {
		margin: 0;

		a {
			text-decoration: none;
			white-space: nowrap;
		}
	}
}

.footer .bg-gray{
	color: #fff;
	padding-top: 45px;
	padding-bottom: 35px;
	--fs: 15;
	font-size: var(--font-size);
	text-align: center;

	h3{
		--fs: 16;
		font-size: var(--font-size);
		background-color: #fff;
		color: var(--color-body-1);
		text-align: center;
		max-width: 497px;
		width: 100%;
		padding: 10px;
		border-radius: 20px;
		margin-inline: auto;
		letter-spacing: 0.1em;
		margin-bottom: 30px;
	}

	a{
		color: #fff;
		text-decoration: underline;
	}
}

.footer-copyright{
	--fs: 13;
	font-size: var(--font-size);
	margin: 35px 0px 0px 0px;
}

@media (max-width: 991px) {
	.footer-wrapper{
		grid-template-columns: 1fr;
		gap: 30px;
		padding-bottom: 45px;
	}
}


/* ==========================
   共通パーツ
========================== */

.content-white{
	background-color: #fff;
	padding: 65px;
	border-radius: 20px;
}

.button {
	position: relative;
	display: block;
	width: 100%;
	max-width: 760px;
	margin: auto;
	text-align: center;
	background-color: #fff;
	border-radius: 50px;
	font-weight: 500;
	text-decoration: none;
	border: 3px solid currentColor;
	padding: 10px 40px 10px 15px;
	box-shadow: 6px 6px 0 currentColor;
	--fs: 25;
	font-size: var(--font-size);
	line-height: calc(35 / 25);

	&::after {
		content: "";
		position: absolute;
		right: 25px;
		top: 50%;
		transform: translateY(-50%);
		width: 7px;
		height: 14px;
		background-repeat: no-repeat;
		background-size: contain;
	}

	&.is-blue {
		color: var(--color-theme-blue);

		&::after {
			background-image: url(img/arrow-right-blue.svg);
		}
	}

	&.is-black {
		color: #000;

		&::after {
			background-image: url(img/arrow-right-black.svg);
		}
	}

	&.is-short {
		max-width: 210px;
		padding: 10px;
		border-width: 2px;
		box-shadow: none;
		--fs: 16;
		color: var(--color-theme-blue);

		&::after {
			background-image: url(img/arrow-right-blue.svg);
		}
	}
}

.title-wave {
	--fs: 29;
	font-size: var(--font-size);
	line-height: calc(36/29);
	color: #fff;
	position: relative;
	text-align: center;
	display: block;
	margin: 0 auto 30px;
	padding-bottom: 20px;

	&::after {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
		width: clamp(200px, 90vw, 465px);
		height: 8px;
		background: url(img/line-wave.svg) repeat-x;
	}

	&.text-blue {
		color: var(--color-theme-blue);

		&::after {
			background-image: url(img/line-wave-blue.svg);
		}
	}
}

@media (max-width: 991px) {
	.content-white{
		padding: 40px 20px;
	}
	.button.is-blue,
	.button.is-black {
		--fs: 19;
	}
	.title-wave{
		--fs: 22;
	}
}


/* ==========================
   トップページ
========================== */

.top-nav__container,
.top-news__container{
	max-width: 1010px;
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	margin-inline: auto;
}

.top-news__container{
	max-width: 960px;
}

.top-mv::before,
.top-mv::after {
    content: "";
    display: block;
    background-image: url(img/line.png);
    background-repeat: repeat-x;
    background-position: center;
    height: 12px;
    width: 100%;
}

.nav-wrapper{
	margin-bottom: 55px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
}

.nav-box{
	position: relative;
    margin-top: 45px;
    border: 4px solid var(--color-theme-pink);
    padding-bottom: 15px;
    background-color: #fff;

    &::before{
    	content: "";
	    display: block;
	    background-image: url(img/bg-dotted.png);
	    background-repeat: repeat;
	    background-position: bottom right;
	    position: absolute;
	    bottom: -10px;
	    right: -10px;
	    width: 100%;
	    height: 100%;
	    z-index: -1;
    }

    .nav-box__title{
		--fs: 25;
		font-size: var(--font-size);
		color: #fff;
		background-color: var(--color-theme-pink);
		max-width: 277px;
		padding: 10px;
		border-radius: 25px;
		line-height: 1em;
		text-align: center;
		letter-spacing: 0.1em;
		margin: -25px auto 15px auto;
	}

	.nav-box__content{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

	.nav-box__item{
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding-top: 10px;

		&.border-right{
			border-right: 2px solid var(--color-theme-pink);
		}

		img{
			max-width: 96px;
			width: 100%;
			height: auto;
		}

		p{
			margin-bottom: 0px;
			--fs: 21;
			font-size: var(--font-size);
			font-weight: 500;
			line-height: calc(26/21);
		}
	}
}

.news-list{
	list-style: none;
	padding-left: 0px;

	li{
		border-bottom: 2px dotted var(--color-body-1);
		padding: 20px;

		&:first-child{
			border-top: 2px dotted var(--color-body-1);
		}

		dl{
		display: grid;
		grid-template-columns: 22% auto;
		gap: 20px;
		margin-bottom: 0px;

			dt{
				.date{
					font-weight: 500;
				}
				.icon-new{
					--fs: 11;
					font-size: var(--font-size);
					background-color: var(--color-theme-pink);
					color: #fff;
					width: 60px;
					padding: 1px; 
					text-align: center;
					letter-spacing: 0.1em;
				}
			}

			dd{
				margin-bottom: 0px;

				a:hover{
					text-decoration: underline;
				}

				h3{
					--fs: 20;
					font-size: var(--font-size);
				}
				p{
					display: -webkit-box;
					-webkit-box-orient: vertical;
					-webkit-line-clamp: 1;
					overflow: hidden;
					line-height: calc(23/16);
					margin-bottom: 0px;
				}
			}
		}
	}
}

.about-wrapper{
	display: grid;
	grid-template-columns: 46% auto;
	gap: 30px;
	align-items: center;
}

@media (max-width: 991px) {
	.nav-wrapper{
		grid-template-columns: 1fr;
		gap: 0px;
	}
	.nav-box .nav-box__title{
		--fs: 20;
	}
	.nav-box .nav-box__item p{
		--fs: 18;
	}
	.nav-box .nav-box__item img{
		max-width: 80px;
	}
	.news-list li{
		padding: 20px 0px;
	}
	.news-list li dl{
		grid-template-columns: 1fr;
		gap: 0;
	}
	.news-list li dl dd h3{
		--fs: 18;
	}
	.about-wrapper{
		grid-template-columns: 1fr;
		gap: 20px;
	}
}


/* ==========================
   下層ページ　共通
========================== */

.page-header h1{
	--fs: 36;
	font-size: var(--font-size);
	margin-bottom: 0px;
	letter-spacing: 0.1em;
}
.page-header .bg-img{
	background-image: url(img/bg-page-title.png?v2);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1280px auto;
	margin: 0 auto;
	background-position: center bottom;
	max-width: 1280px;
	height: 190px;
}

.page-header::before{
	content: "";
    display: block;
    background-image: url(img/line.png);
    background-repeat: repeat-x;
    background-position: center;
    height: 12px;
    width: 100%;
}

.page-header.border-bottom {
	position: relative;
}

.page-header.border-bottom::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 12px;
	background: linear-gradient(
		to right,
		var(--color-theme-pink) 0%,
		var(--color-theme-pink) 50%,
		var(--color-theme-blue) 50%,
		var(--color-theme-blue) 100%
	);
}

ol{
	line-height: 1.8em;
}

ol.list-number{
	position: relative;
    margin: 0;
    padding: 0;
    list-style: none;
}

ol.list-number li {
    list-style-position: outside;
    margin: 0;
    padding-left: 2em;
    margin-bottom: 5px;
}

ol.list-number li span {
    position: absolute;
    left: 0;
    margin: 0;
}

.line-dashed{
	border-top: dashed 1px var(--color-body-1);
	opacity: 0.8;
	margin: 2rem 0;
}

.heading {
	font-weight: 500;
	line-height: 1.6;
	font-size: var(--font-size);

	.label{
		--fs: 16;
		font-size: var(--font-size);
		padding: 1px 10px;
		margin-left: 10px;
		border-radius: 8px;
		display: inline-block;
		text-align: center;

		&.blue{
			background-color: var(--color-theme-blue);
			border: 1px solid var(--color-theme-blue);
			color: #fff;
		}

		&.white{
			background-color: #fff;
			border: 1px solid var(--color-theme-blue);
			color: var(--color-theme-blue);
		}
	}
}

.heading--lv1 {
	--fs: 29;
}

.heading--lv2 {
	--fs: 26;
}

.heading--lv3 {
	--fs: 21;
}

.text-small{
	--fs: 15;
	line-height: calc(26/15);
}

@media (max-width: 1280px) {
	.page-header .bg-img{
		max-width: 100%;
		background-size: 100% auto;
	}
}

@media (min-width: 992px) {
	.heading {
		.label{
			min-width: 120px;
		}
	}
}

@media (max-width: 991px) {
	.page-header h1{
		--fs: 26;
	}
	.page-header .bg-img{
		height: 150px;
	}
	.heading {
		line-height: 1.5;

		.label{
			--fs: 14;
		}
	}
	.heading--lv1 {
		--fs: 22;
	}
	.heading--lv2 {
		--fs: 20;
	}
	.heading--lv3 {
		--fs: 18;
	}
}

@media (max-width: 575px) {
	.page-header .bg-img{
		background-size: 120% auto;
	}
}


/* ==========================
   店舗一覧
========================== */

.text-store h2,
.search-title{
	color: var(--color-theme-pink);
	--fs: 20;
	font-size: var(--font-size);
	font-weight: 700;
	line-height: calc(29/20);
	margin-bottom: 15px;
}

.search-title{
	--fs: 30;
}

.text-store p{
	--fs: 14;
	font-size: var(--font-size);
	line-height: calc(24/14);
	margin-bottom: 30px;
}

.store-wrapper{
	display: grid;
	grid-template-columns: 30% auto;
	gap: 30px;
}

.store-pdf a{
	display: block;
	color: var(--color-theme-pink);
	border: 2px solid currentColor;
	border-radius: 12px;
	text-align: center;
	padding: 5px;
	width: 100%;
	font-weight: 700;
}

.store-pdf p{
	--fs: 15;
	font-size: var(--font-size);
	text-align: center;
	font-weight: 500;
}

.serch-box{
	border: 2px solid var(--color-theme-pink);;
	border-radius: 12px;
	padding: 15px;
}

.serch-box label{
	--fs: 16;
	font-size: var(--font-size);
	color: var(--color-theme-pink);
	font-weight: 700;
	text-align: center;
	margin-bottom: 10px;
	width: 100%;
}

.serch-box button{
	background-color: var(--color-theme-pink);
	color: #fff;
	border-color: var(--color-theme-pink);
}

.form-control{
	border-color: #666;
	padding: 3px;
}

.search-row {
	display: flex;
	gap: 12px;
	align-items: center;
}

.search-row .form-control {
	flex: 1;
}

.search-row button {
	white-space: nowrap;
}

.store-category-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	border: 1px solid var(--color-body-1);
	color: var(--color-body-1);
	text-decoration: none;
	--fs: 13;
	font-size: var(--font-size);
	white-space: nowrap;
	transition: all 0.2s ease;
	border-radius: 5px;
}

.store-category-link:hover {
	background: var(--color-body-1);
	color: #fff;
}

.store-category-link.is-current {
	background: var(--color-body-1);
	color: #fff;
	border-color: var(--color-body-1);
}

.pagination {
	justify-content: center;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    margin: 10px;
}

.pagination h2 {
    display: none;
}

.page-numbers {
    background-color: #fff;
    margin: 4px;
    color: #000000;
    display: inline-block;
    line-height: 1;
    padding: .5rem;
}

.page-numbers.current {
    background-color: #999;
    color: #fff;
    width: 28px;
    text-align: center;
}

.category-news .pagination {
	margin-top: 30px;
	margin-bottom: -20px;
}


.search-store {
    border-bottom: 2px solid var(--color-body-1);
    padding: 20px 15px;
}

.search-store:first-child {
    border-top: 2px solid var(--color-body-1);
}

.search-store:nth-child(odd) {
    background-color: #f6f3eb;
}

.store-category{
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.store-info{
	display: flex;
	gap: 5px 15px;
	flex-wrap: wrap;
}

.store-info p{
	line-height: 1.5em;
	margin-bottom: 0px;
}

.store-info a{
	text-decoration: underline;
}

.badge {
    padding: 5px 12px;
    border-radius: 4px;
    --fs: 12;
	font-size: var(--font-size);
    background-color: var(--color-theme-pink);
}

.search-store h3 {
    --fs: 20;
	font-size: var(--font-size);
    font-weight: 700;
}

@media (max-width: 991px) {
	.store-wrapper{
		grid-template-columns: 1fr;
		gap: 60px;
	}
	.search-title{
		--fs: 24;
	}
	#store-results {
		scroll-margin-top: 65px;
	}
}

.genre-box {
	border: 2px solid var(--color-theme-pink);
	border-radius: 12px;
	padding: 15px;

	p {
		--fs: 13;
		font-size: var(--font-size);
		font-weight: 500;
		line-height: calc(18 / 13);
		margin: 10px 0;
		width: 100%;
	}

	.genre-box__title {
		all: unset;
		display: block;
		width: 100%;
		text-align: center;
		font-weight: 700;
		color: var(--color-theme-pink);
		--fs: 16;
		font-size: var(--font-size);
		margin-bottom: 10px;
		position: relative;
		cursor: pointer;
	}

	.genre-box__content {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 5px;
	}

	&.is-open .genre-box__content {
		display: flex;
	}
}

@media (max-width: 991px) {
	.genre-box {
		.genre-box__content {
			display: none;
		}

		.genre-box__title::after {
			content: "";
			position: absolute;
			right: 0;
			top: 50%;
			transform: translateY(-50%);
			border-left: 6px solid transparent;
			border-right: 6px solid transparent;
			border-top: 8px solid var(--color-theme-pink);
			transition: transform 0.3s ease;
		}

		&.is-open .genre-box__title::after {
			transform: translateY(-50%) rotate(180deg);
		}
	}
}

@media (min-width: 992px) {
	.genre-box {
		.genre-box__title {
			cursor: default;
		}

		.genre-box__title::after {
			display: none;
		}
	}
}


/* ==========================
   参加店舗協力手続き
========================== */

.tel {
  --fs: 39;
  font-size: var(--font-size);
  font-weight: 700;
  color: var(--color-theme-blue);
  margin-bottom: 0;

  a {
    color: inherit;
  }
}

.step-wrapper {
	display: grid;
	grid-template-columns: 18% auto;
	gap: 20px;

	img {
		margin-top: 10px;
	}
}

@media (max-width: 991px) {
	.tel {
		--fs: 30;
	}
}

@media (max-width: 767px) {
	.step-wrapper{
		grid-template-columns: 1fr;
	}
}

@media (min-width: 768px) {
	.step-wrapper .arrow {
		position: relative;
		display: inline-block;

		&::before {
			content: "";
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translateX(-50%);
			width: 3px;
			height: 40px;
			background-color: var(--color-theme-blue);
		}

		&::after {
			content: "";
			position: absolute;
			top: calc(50% + 30px);
			left: 50%;
			width: 10px;
			height: 10px;
			border-right: 3px solid var(--color-theme-blue);
			border-bottom: 3px solid var(--color-theme-blue);
			transform: translateX(-50%) rotate(45deg);
		}

		&.long {
			&::before {
				height: 55px;
			}
			&::after {
				top: calc(50% + 45px);
			}
		}
	}
}


/* ==========================
   お知らせ詳細
========================== */

.post-title{
	background-color: var(--color-theme-blue);
	border-radius: 20px;
	padding: 10px;
	--fs: 25;
	font-size: var(--font-size);
	line-height: calc(32/25);
	font-weight: 500;
	text-align: center;
	color: #fff;
}

.post-body p a{
	color: var(--color-theme-blue);
	text-decoration: underline;
}

@media (max-width: 991px) {
	.post-title{
		--fs: 18;
	}
}


/* ==========================
   よくある質問
========================== */

.faq-group {
	--faq-color: var(--color-body-1);

	.faq-group__title {
		--fs: 30;
		font-size: var(--font-size);
		font-weight: 500;
		margin-bottom: 20px;

		&::before {
			content: "■";
			display: inline-block;
			color: var(--faq-color);
			margin-right: 10px;
		}
	}

	&.faq-group--user {
		--faq-color: var(--color-theme-pink);
	}

	&.faq-group--store {
		--faq-color: var(--color-theme-blue);
	}
}

.faq-row {
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.faq-label {
	--fs: 23;
	font-size: var(--font-size);
	flex-shrink: 0;
	width: 30px;
	font-weight: 700;
	color: var(--faq-color);
	display: inline-flex;
	justify-content: center;
	text-align: center;
}

.faq-title,
.faq-text {
	flex: 1;
	line-height: 1.5em;
	display: inline-block;
}

.accordion-button {
	align-items: flex-start;
	cursor: pointer;
}

.accordion-button.collapsed {
	background-color: #f5f5f5;
	color: var(--color-body-1);
}

.accordion-button:not(.collapsed) {
	background-color: var(--faq-color);
	color: #fff;
}

.accordion-button:not(.collapsed) .faq-label {
	color: #fff;
}

.accordion-button:focus {
	z-index: 3;
	outline: 0;
	box-shadow: none;
}

.accordion-button:hover {
	opacity: 1;
}

.faq-group--user .accordion-button::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23cb006b' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.5 6l6 6 6-6H1.5z'/%3E%3C/svg%3E");
}

.faq-group--user .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.5 6l6 6 6-6H1.5z'/%3E%3C/svg%3E");
}

.faq-group--store .accordion-button::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231c9dd4' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.5 6l6 6 6-6H1.5z'/%3E%3C/svg%3E");
}

.faq-group--store .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.5 6l6 6 6-6H1.5z'/%3E%3C/svg%3E");
}

.fap-button-wrapper{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.fap-button {
	--fs: 25;
	font-size: var(--font-size);
	font-weight: 500;
	border: 2px solid #fff;
	border-radius: 50px;
	color: #fff;
	padding: 10px 40px 10px 20px;
	display: block;
	text-align: center;
	position: relative;
	transition: background-color .2s, color .2s;

	&::after{
		content: "";
		position: absolute;
		right: 20px;
		top: 50%;
		width: 12px;
		height: 12px;
		border-top: 2px solid currentColor;
		border-right: 2px solid currentColor;
		transform: translateY(-50%) rotate(45deg);
		transition: border-color .2s, transform .2s;
	}

	&:hover{
		opacity: 1;
		background-color: #fff;

		&.user{
			color: var(--color-theme-pink);

		}
		&.store{
			color: var(--color-theme-blue);

		}
	}
}

@media (max-width: 991px) {
	.faq-group{
		.faq-group__title {
			--fs: 22;
		}
	}
	.faq-label {
		--fs: 20;
		width: 20px;
	}
	.fap-button {
		--fs: 18;
	}
}

@media (max-width: 575px) {
	.fap-button-wrapper{
		grid-template-columns: 1fr;
		gap: 15px;
	}
}


/* ==========================
   ご購入方法
========================== */

.list-circle{
	list-style: none;
	padding-left: 0;

	li{
		margin-left: 1em;
		margin-bottom: 8px;

		&::before{
			content: "⚫︎";
			display: inline-block;
			margin-left: -1em;
		}

	}

}

