@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital@0;1&family=Plus+Jakarta+Sans:wght@200..800&display=swap');

/*変数定義*/
:root {
	--color-nav-bg: #ece7d5;
	--color-nav-border: #ffffff;
	--color-text-base: #1a1a1a;
	--color-accent: #f7b500;
	--color-border-light: #ececec;
	--color-note-bg: #e9f6f1;
	--color-plans-bg: #f4f1e0;
	--color-teal: #14988a;
	--color-teal-light: #e3f6f2;
	--color-price-bg: #faf6d9;
	--color-link: #1a73e8;
	--color-location-bg: #f5f4f0;
	--color-hotel-marker: #e2004f;
	--color-white: #ffffff;
	--content-max-width: 1100px;
	--breakpoint-pc: 768px;
}

/* ========== 共通 ========== */
body{
	font-family: "Noto Sans JP", sans-serif,"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3","Yu Gothic", "Yu Gothic medium", "Arial", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
	color: var(--bk);
	margin: 0 auto;/*MV中央揃え*/
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

a{
	text-decoration: none;
	color: inherit;
}
a:hover{
	color: inherit;
}
a:link, a:visited, a:hover, a:active, a:focus{
	text-decoration: none;
	outline: none;
}

h1,
h2,
h3,
h4,
ul,
ol,
dl,
dt,
dd,
p,
figure{
	margin:0;
	padding:0;
}

ul,
ol{
	list-style-type: none;
}

button:focus {
	outline: none;
}

/* ========== フォント ========== */
@font-face {
  font-family: "notosansjp";
  font-weight: 400;
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 500;
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 600;
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 700;
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}
article {
  font-family: "notosansjp", sans-serif;
  overflow-x: hidden;
}

/* ==========================================================================
   Object: Component（c-）汎用UIパーツ
   ========================================================================== */

/* c-section-inner: セクション共通の内側幅制御ラッパー */
.c-section-inner {
	max-width: var(--content-max-width);
	margin-inline: auto;
	padding-inline: 1rem;
}

/* c-section-heading: セクション共通の見出しブロック（eyebrow + title + lead） */
.c-section-heading {
	text-align: center;
}

.c-section-heading__lead {
	text-align: left;
}

@media (min-width: 768px) {
	.c-section-heading__lead {
		text-align: center;
	}
}

.c-section-heading__eyebrow {
	color: var(--color-accent);
	font-family: "Open Sans", sans-serif;
	font-size: 0.8125rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.c-section-heading__title {
	margin-block-start: 0.5rem;
	color: var(--color-text-base);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: bold;
}

.c-section-heading__lead {
	margin-block-start: 1.5rem;
	color: var(--color-text-base);
	font-size: 1rem;
	line-height: 1.8;
}

/* c-btn: 再利用ボタン */
.c-btn {
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	padding: 1rem 1.5rem;
	border: 2px solid transparent;
	border-radius: 999px;
	font-size: 1rem;
	font-weight: bold;
	text-align: center;
}

.c-btn--primary {
	background-color: var(--color-accent);
	border-color: var(--color-accent);
	color: var(--color-text-base);
}

.c-btn--primary::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 1.5rem;
	width: 0.6875rem;
	height: 1.125rem;
	background-image: url("/static/img/campaign/baggageplan/yamato/ico-arrow-right.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: translateY(-50%);
}

.c-btn--outline {
	background-color: #ffffff;
	border-color: var(--color-accent);
	color: var(--color-text-base);
}

.c-btn--disabled {
	background-color: #ffffff;
	border-color: #e0e0e0;
	color: #b3b3b3;
	pointer-events: none;
	cursor: not-allowed;
}

.c-btn--disabled.c-btn--primary::after {
	background-color: #b3b3b3;
	background-image: none;
	-webkit-mask-image: url("/static/img/campaign/baggageplan/yamato/ico-arrow-right.svg");
	mask-image: url("/static/img/campaign/baggageplan/yamato/ico-arrow-right.svg");
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}

@media (min-width: 768px) {
	.c-btn {
		max-width: 350px;
		align-self: center;
		font-size: 1.0625rem;
	}
}

@media (min-width: 769px) and (max-width: 900px){
	.c-btn {
		font-size: 0.9rem;
	}
	.c-btn--primary::after {
		right: 1rem;
	}
}

/* ==========================================================================
   Object: Project（p-）ページ固有のUIパーツ
   ========================================================================== */

/* p-mv: メインビジュアル */
.p-mv__heading {
	margin: 0;
	font-size: 0;
	line-height: 0;
}

.p-mv__img {
	display: block;
	width: 100%;
	height: auto;
}

/* p-page-nav: ページ内アンカーリンク */
.p-page-nav {
	background-color: var(--color-nav-bg);
}

.p-page-nav__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin: 0;
	padding: 0;
	list-style: none;
}

.p-page-nav__item {
	position: relative;
	border-right: 1px solid var(--color-nav-border);
	border-bottom: 1px solid var(--color-nav-border);
}

.p-page-nav__item:nth-child(2n) {
	border-right: none;
}

.p-page-nav__item:nth-last-child(-n + 2) {
	border-bottom: none;
}

.p-page-nav__link {
	display: block;
	padding: 1rem 0.5rem;
	color: var(--color-text-base);
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}

@media (min-width: 768px) {
	.p-page-nav__list {
		grid-template-columns: repeat(4, 1fr);
		max-width: var(--content-max-width);
		margin-inline: auto;
	}

	.p-page-nav__item {
		border-right: none;
		border-bottom: none;
		border-left: none;
	}

	.p-page-nav__item::before {
		content: "";
		position: absolute;
		top: 1rem;
		bottom: 1rem;
		left: 0;
		width: 1px;
		background-color: var(--color-nav-border);
	}

	.p-page-nav__item:nth-child(4)::after {
		content: "";
		position: absolute;
		top: 1rem;
		bottom: 1rem;
		right: 0;
		width: 1px;
		background-color: var(--color-nav-border);
	}

	.p-page-nav__link {
		padding: 1.25rem 1rem;
	}
}

/* p-delivery-area: 配送エリア */
.p-delivery-area {
	position: relative;
	background-image: url("/static/img/campaign/baggageplan/yamato/bg-delivery.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.p-delivery-area::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(20, 20, 20, 0.6);
}

.p-delivery-area > .c-section-inner {
	position: relative;
	z-index: 1;
}

.p-delivery-area .c-section-heading__title,
.p-delivery-area .c-section-heading__lead {
	color: #ffffff;
}

.p-delivery-area__map {
	position: relative;
	display: block;
	width: 100%;
	margin-block-start: 2.5rem;
	padding: 0;
	background: none;
	border: none;
	overflow: hidden;
	cursor: pointer;
}

.p-delivery-area__map-img {
	display: block;
	width: 100%;
	height: auto;
}

.p-delivery-area__map-expand {
	position: absolute;
	bottom: 1rem;
	right: 14px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background-color: rgba(26, 26, 26, 0.75);
	border-radius: 999px;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: bold;
}

.p-delivery-area__map-wrap {
	display: none;
	padding: 1.25rem;
	background-color: var(--color-white);
}

.p-delivery-area__map-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 3rem;
	
}

.p-delivery-area__map-list {
	counter-reset: map-item;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.p-delivery-area__map-list li {
	counter-increment: map-item;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-text-base);
	font-size: 0.9375rem;
	font-weight: bold;
	margin-top: 0.5rem;
}

.p-delivery-area__map-list li .num {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	color: #ffffff;
	font-size: 0.8125rem;
	font-weight: bold;
}

.p-delivery-area__map-inner > .p-delivery-area__map-list.hotel-list li .num {
	width: 1.375rem;
	height: 1.75rem;
	background: url("/static/img/campaign/baggageplan/yamato/ico-hotel-pin.svg") no-repeat center center/ contain;
	padding-block-end: 0.25rem;
}

.p-delivery-area__map-inner > .p-delivery-area__map-list.station-list li .num {
	border-radius: 2px;
	background-color: var(--color-text-base);
}

.p-delivery-area__caption {
	margin-block-start: 1.5rem;
	color: #ffffff;
	font-size: 0.8125rem;
	line-height: 1.8;
	text-align: center;
}

.p-attention-list li {
	position: relative;
	padding-left: 1rem;
	text-align: left;
	color: #ffffff;
	font-size: 0.8125rem;
	display: block;
	width: fit-content;
	margin: 0.5rem auto 0 0;
}
.p-attention-list li::before {
	content: '※';
	position: absolute;
	left: 0;
	color: #ffffff;
	font-size: 0.8125rem;
}

.p-delivery-area__link {
	color: #ffffff;
	text-decoration: underline;
}


@media (min-width: 768px) {
	.p-delivery-area__map {
		pointer-events: none;
	}

	.p-delivery-area__map-expand {
		display: none;
	}

	.p-delivery-area__map-wrap {
		display: block;
		padding: 1.25rem 1.25rem 1.5rem;
	}
	.p-delivery-area__map-list li {
		font-size: 1.15rem;
	}
	.p-delivery-area__map-list li .num{
		font-size: 0.8rem;
	}
	.p-attention-list li {
		margin: 0.3rem auto 0;
	}
}
@media (min-width: 768px) and (max-width: 859px) {
	.p-delivery-area__map-list li {
		font-size: 0.8rem;
	}
}
@media (min-width: 860px) and (max-width: 1024px) {
	.p-delivery-area__map-list li {
		font-size: 1rem;
	}
}
@media (min-width: 768px) and (max-width: 1024px) {
	.p-delivery-area__map-inner {
		gap: 0.75rem 2rem;
	}
}


@media (max-width: 330px) {
	.p-delivery-area__map-wrap {
		padding: 0;
		font-size: 1rem;
	}
	.p-delivery-area__map-expand {
		font-size: 0.7rem;
	}
}

/* p-about: What is TeburaGO? */
.p-about,
.p-delivery-area,
.p-plans,
.p-how-to-use {
	padding: 5rem 0 6.25rem;
}

@media (min-width: 768px) {
	.p-about,
	.p-delivery-area,
	.p-plans,
	.p-how-to-use {
		padding: 6.25rem 0 9.375rem;
	}
}

.p-about-card-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-block-start: 2.5rem;
	padding: 0;
	list-style: none;
}

.p-about-card {
	display: flex;
	flex-direction: column;
	padding: 1.25rem 1.5rem 1.5rem;
	border: 1px solid var(--color-border-light);
	border-radius: 4px;
	overflow: hidden;
}

.p-about-card__media {
	background-color: var(--color-accent);
}

.p-about-card__img {
	display: block;
	width: 100%;
	height: auto;
}

.p-about-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.75rem;
	margin-block-start: 1.25rem;
}

.p-about-card__title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-text-base);
	font-size: 1.125rem;
	font-weight: bold;
}

.p-about-card__number {
	width: 3.5rem;
	height: auto;
}

.p-about-card__text {
	color: var(--color-text-base);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.p-about-card__note {
	margin-block-start: auto;
	padding: 0.75rem 1rem;
	background-color: var(--color-note-bg);
	color: var(--color-text-base);
	font-size: 0.8125rem;
	line-height: 1.6;
	text-align: center;
}

.p-about-card__caption {
	color: var(--color-text-base);
	font-size: 0.8125rem;
}

@media (min-width: 768px) {
	.p-about-card-list {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}
}

/* p-plans: Plans */
.p-plans {
	background-color: var(--color-plans-bg);
}

.p-plan-card-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin-block-start: 2.5rem;
	padding: 0;
	list-style: none;
}

.p-plan-card {
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	border: 1px solid var(--color-border-light);
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.p-plan-card__header {
	padding: 1.5rem 1.75rem;
	background-color: var(--color-teal);
}

.p-plan-card__title {
	color: #ffffff;
	font-size: 1.375rem;
	font-weight: bold;
}

.p-plan-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 1.5rem;
	padding: 1.25rem;
}

.p-plan-card__intro {
	padding: 1.25rem;
	border: 1px solid var(--color-teal);
	border-radius: 8px;
	background-color: var(--color-teal-light);
	color: var(--color-text-base);
	font-weight: bold;
	line-height: 1.6;
}

.p-plan-card__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 0;
	list-style: none;
}

.p-plan-card__list-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	color: var(--color-text-base);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.p-plan-card__check {
	flex-shrink: 0;
	width: 0.9375rem;
	height: 0.9375rem;
	margin-block-start: 0.25em;
}

.p-plan-card__price {
	padding: 1.25rem;
	background-color: var(--color-price-bg);
	border-radius: 8px;
	text-align: right;
}

.p-plan-card__price-label {
	margin-inline-end: 0.5rem;
	color: var(--color-text-base);
	font-size: 0.875rem;
}

.p-plan-card__price-value {
	color: var(--color-teal);
	font-family: "Plus Jakarta Sans", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
}

.p-plan-card__price-currency {
	font-size: 1.25rem;
}

.p-plan-card__price-note {
	margin-block-start: 0.25rem;
	color: var(--color-text-base);
	font-size: 0.75rem;
}

.p-plan-card__actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-block-start: -0.5rem;
}

.p-plan-card__link {
	display: block;
	margin-block-start: 0.5rem;
	color: var(--color-link);
	font-size: 0.875rem;
	text-align: center;
	text-decoration: underline !important;
}

@media (min-width: 768px) {
	.p-plans > .c-section-inner {
		max-width: 1280px;
	}

	.p-plan-card-list {
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem;
	}

	.p-plan-card__body {
		padding: 1.75rem;
	}

}

@media (min-width: 768px) and (max-width: 1024px) {
	.p-plan-card__title {
		font-size: 1.2rem;
	}
	.p-plan-card-list {
		gap: 1rem;
		grid-template-columns: repeat(2, 1fr);
		justify-self: center;
	}
    .p-plan-card-list > :nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center; 
        width: 100%;
        max-width: 420px;
    }
}

/* p-hotel-modal: 対象ホテル一覧*/
.p-hotel-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1050;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.p-hotel-modal.is-open {
	display: block;
}

.p-hotel-modal__content {
	position: relative;
	box-sizing: border-box;
	width: 90%;
	max-width: 500px;
	margin: 30px auto;
	background-color: #ffffff;
	border-radius: 8px;
}

.p-hotel-modal__close-btn {
	background: none;
	border: none;
	cursor: pointer;
}

.p-hotel-modal__close-btn.-v1 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0.75rem;
	color: var(--color-text-base);
	font-size: 1.75rem;
	line-height: 1;
}

.p-hotel-modal__close-btn.-v2 {
	display: block;
	width: 100%;
	max-width: 167px;
	margin: 0 auto 1.25rem;
	padding: 0.75rem 1.25rem;
	border: 1px solid var(--color-text-base);
	border-radius: 999px;
	font-size: 0.8125rem;
	text-align: center;
	color: var(--color-text-base);
}

.p-hotel-modal__header {
	align-items: center;
	padding: 1.25rem 1.5rem;
}

.p-hotel-modal__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: bold;
}

.p-hotel-modal__body {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 0 1.5rem;
}

.p-hotel-modal__ward-title {
	padding-block-end: 0.75rem;
	border-bottom: 2px solid var(--color-text-base);
	color: var(--color-text-base);
	font-size: 1.125rem;
	font-weight: bold;
}

.p-hotel-modal__group-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-block-start: 1rem;
	color: #767676;
	font-size: 0.8125rem;
	font-weight: bold;
}

.p-hotel-modal__list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	list-style: none;
}

.p-hotel-modal__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding-block: 1rem;
	border-bottom: 1px solid var(--color-border-light);
}

.p-hotel-modal__name {
	color: var(--color-text-base);
	font-size: 1rem;
	font-weight: bold;
}

.p-hotel-modal__address {
	margin-block-start: 0.25rem;
	color: var(--color-text-base);
	font-size: 0.8125rem;
	line-height: 1.6;
}

.p-hotel-modal__map-btn {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	gap: 0.375rem;
	padding: 0.5rem 0.875rem;
	border: 1px solid var(--color-text-base);
	border-radius: 4px;
	color: var(--color-text-base);
	font-size: 0.8125rem;
	font-weight: bold;
}
.p-hotel-modal__map-btn:hover {
	opacity: 0.6;
}

/* p-map-modal: 配送エリアマップ拡大 */
.p-map-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 1050;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.p-map-modal.is-open {
	display: block;
}

.p-map-modal__content {
	position: relative;
	box-sizing: border-box;
	width: 90%;
	max-width: 500px;
	margin: 30px auto;
	background-color: #ffffff;
	border-radius: 8px;
}

.p-map-modal__close-btn {
	background: none;
	border: none;
	cursor: pointer;
}

.p-map-modal__close-btn.-v1 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0.75rem;
	color: var(--color-text-base);
	font-size: 1.75rem;
	line-height: 1;
}

.p-map-modal__close-btn.-v2 {
	display: block;
	width: 100%;
	max-width: 167px;
	margin: 0 auto 1.25rem;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	font-size: 0.8125rem;
	text-align: center;
	border: 1px solid var(--color-text-base);
	color: var(--color-text-base);
}

.p-map-modal__header {
	padding: 1.25rem 1.5rem;
}

.p-map-modal__title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: bold;
}

.p-map-modal__body {
	padding: 0 1.5rem 0.5rem;;
}

.p-map-modal__scroll {
	overflow-x: auto;
}

.p-map-modal__img {
	display: block;
	width: 610px;
	max-width: none;
	height: auto;
}

/*モーダル内のマップリスト*/
.p-map-modal__body .p-delivery-area__map-wrap {
	display: block;
	padding: 1.25rem 0;
}
.p-map-modal__body .p-delivery-area__map-list.hotel-list li{
	width: 100%;
	gap: 0.2rem;
}

/* p-how-to-use: How to Use（Bootstrap collapseを基盤に独自クラスでスタイリング） */
.p-how-to-use__accordion {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-block-start: 2.5rem;
}

.p-how-to-use__item {
	border: 1px solid var(--color-border-light);
	border-radius: 8px;
	overflow: hidden;
}

.p-how-to-use__header {
	margin: 0;
}

.p-how-to-use__toggle {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	padding: 1.25rem 1.5rem;
	background-color: var(--color-price-bg);
	border: none;
	color: var(--color-text-base);
	font-size: 1.0625rem;
	font-weight: bold;
	text-align: left;
	cursor: pointer;
}

.p-how-to-use__toggle-icon {
	flex-shrink: 0;
	margin-inline-start: 1rem;
	font-size: 1.25rem;
	line-height: 1;
}

.p-how-to-use__toggle-icon::before {
	content: "+";
}

.p-how-to-use__toggle[aria-expanded="true"] .p-how-to-use__toggle-icon::before {
	content: "−";
}

.p-how-to-use__body {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding: 1.5rem;
	background-color: #ffffff;
}

.p-how-to-use__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.p-how-to-use__list-item {
	position: relative;
	padding-inline-start: 1.125rem;
	color: var(--color-text-base);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.p-how-to-use__list-item::before {
	content: "";
	position: absolute;
	top: 0.65em;
	left: 0;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--color-text-base);
}

.p-how-to-use__link {
	color: var(--color-link);
	text-decoration: underline !important;
}

.p-how-to-use__link-icon {
	margin-inline-start: 0.3em;
	font-size: 0.75em;
}

.p-how-to-use__location {
	padding: 1.25rem;
	background-color: var(--color-location-bg);
	border-radius: 8px;
}

.p-how-to-use__location-icon {
	flex-shrink: 0;
	width: 0.75rem;
	height: auto;
}

.p-how-to-use__location-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-block-end: 0.75rem;
	color: var(--color-text-base);
	font-size: 1.125rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.p-how-to-use__location-address {
	margin-block-end: 0.75rem;
	color: var(--color-text-base);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.p-how-to-use__steps-heading {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding-block-end: 0.75rem;
	border-bottom: 1px solid var(--color-border-light);
	color: var(--color-text-base);
	font-size: 1.125rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.p-how-to-use__steps-heading-icon {
	flex-shrink: 0;
	width: 1.25rem;
	height: auto;
}

.p-how-to-use__steps {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0;
	padding: 1rem 0 0;
	list-style: none;
}

.p-how-to-use__step {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.p-how-to-use__step-number {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border: 1.5px solid var(--color-teal);
	border-radius: 50%;
	color: var(--color-teal);
	font-size: 0.875rem;
	font-weight: bold;
}

.p-how-to-use__step-text {
	padding-block-start: 0.25rem;
	color: var(--color-text-base);
	font-size: 0.9375rem;
	line-height: 1.7;
}
