/* 
common.css には以下のCSS定義を行う

（１）タグ単位（body, input, p, h1 など）のCSS定義
（２）全ての画面で読み込まれるパーツ
・ヘッダー、フッター
・ハンバーガーメニュー
・パンクズリスト、セクションタイトル、共通ボタン、共通inner

※ 注意
・common.css以外でタグのCSS定義を行う際は「子結合子」または「子孫結合子」を使用すること
■ OK
.test-class > p {}
.test-class p {}
■ NG
p {}
*/

html {
	font-size: 16px;
}

body {
	font-family: "Noto Sans JP", "Quicksand", sans-serif;
}

input {
	font-family: "Noto Sans JP", "Quicksand", sans-serif;
}

/* === リセットcss start === */

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	color: #221a15;
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
	font-family: "Noto Sans JP", "Robot", sans-serif;
}

label {
	cursor: auto !important;
	cursor: initial !important;
}

/* フォームリセット */

button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	font-family: "Noto Sans JP", "Robot", sans-serif;
	outline: none;
}

textarea {
	resize: none;
}

input[type=checkbox] {
	cursor: pointer;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

*::-webkit-scrollbar {
	background-color: #f1f1f1;
	height: 3px;
	width: 5px;
}

/* スクロールバーのサム（つまみ）部分のスタイル */

*::-webkit-scrollbar-thumb {
	background-color: #4f5d6b;
}

html,
body {
	height: 100%;
	width: 100%;
}

a,
button {
	transition-duration: 0.5s;
	transition-property: opacity;
}

a:hover,
button:hover {
	opacity: 0.7;
}

*::-webkit-scrollbar {
	background-color: #f4f4f4;
	border: 1px solid #221a15;
	border-radius: 24px;
	height: 6px;
	width: 5px;
}

/* スクロールバーのサム（つまみ）部分のスタイル */

*::-webkit-scrollbar-thumb {
	background-color: #f090a9;
	border: 1px solid #221a15;
	border-radius: 24px;
}

dialog {
	all: unset;
	display: block;
}

address small {
	all: unset;
}

pre {
	margin: 0;
	overflow: auto;
	padding: 0;
	white-space: pre-wrap;
}

/* === リセットcss end === */

/* === innerのクラス start === */

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1260px;
	padding-left: 30px;
	padding-right: 30px;
	width: 100%;
}

/* === innerのクラス end === */

/* === フッターー関連のクラス start === */

.footer {
	background-color: #ffcfdc;
	background-image: url("../images/common/bg_footer.svg");
	background-size: cover;
	padding: 5.5rem 7.5rem 1rem;
}

.footer__container {
	align-items: center;
	background-color: white;
	border: 0.0625rem solid #221a15;
	border-radius: 1.5rem;
	box-shadow: 0.5rem 0.5rem 0rem 0rem #221a15;
	display: flex;
	justify-content: space-between;
	padding: 3.5rem 7.84375rem 4rem;
}

.footer__left {
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer__name span {
	margin-left: 0.5rem;
}

.footer__name {
	-webkit-text-decoration-skip-ink: none;
	color: #f090a9;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.266875rem;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.footer__logo {
	height: 3rem;
	width: 17rem;
}

.footer__tag {
	background-color: #ffcfdc;
	border: 0.0625rem solid #221a15;
	border-radius: 2.5rem;
	padding: 0.25rem 1rem;
}

.footer__menu {
	align-items: center;
	display: flex;
	gap: 3.5rem;
}

.footer__menu-item {
	cursor: pointer;
	position: relative;
}

.footer__menu-item:hover {
	color: #eb537b;
}

.footer__menu-item::after {
	background-color: #f090a9;
	border: 0.0625rem solid #221a15;
	border-radius: 11.25rem;
	content: "";
	height: 0.5rem;
	left: -0.875rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.5rem;
}

.footer__menu-item a {
	-webkit-text-decoration-skip-ink: none;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 0.9375rem;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.footer__menu-home {
	color: #f090a9;
	cursor: pointer;
}

.footer__copyright {
	-webkit-text-decoration-skip-ink: none;
	display: block;
	font-family: Quicksand;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.2rem;
	margin-top: 4.5rem;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

/* === フッターー関連のクラス end === */

/* === ヘッダーメニューのクラス start === */

.header__container {
	align-items: center;
	border-bottom: 0.0625rem solid #221a15;
	display: flex;
	justify-content: space-between;
	padding: 1rem 2.5rem;
}

.header__menu {
	align-items: center;
	display: flex;
	gap: 2.5rem;
	padding: 0 2rem;
}

.header__menu-item {
	cursor: pointer;
	position: relative;
}

.header__menu-item a {
	font-size: max(0.9375rem, 10px);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: left;
}

.header__menu-item:hover {
	color: #eb537b;
}

.header__menu-item::after {
	background-color: #f090a9;
	border: 0.0625rem solid #221a15;
	border-radius: 11.25rem;
	content: "";
	height: 0.5rem;
	left: -1.5625rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.5rem;
}

.header__menu-home {
	color: #f090a9;
	cursor: pointer;
}

.header__menu-home a {
	font-size: max(0.9375rem, 11px);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: left;
}

.header__sp-nav {
	height: 100vh;
	position: fixed;
	right: -100%;
	top: 0;
	transition: right 0.4s ease;
	width: 100%;
}

.is-active .header__sp-nav--home {
	right: 0;
}

.header__sp-nav--region.is-open {
	right: 0;
}

.header__sp-nav--prefecture.is-open {
	right: 0;
}

.header__sp-nav--home {
	z-index: 100;
}

.header__sp-nav--region {
	z-index: 200;
}

.header__sp-nav--prefecture {
	z-index: 300;
}

/* === ヘッダーメニューのクラス end === */

/* === ヘッダーロゴ関連のクラス start === */

.header-logo {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	position: relative;
}

.header-logo__name {
	color: #f090a9;
	font-size: max(0.875rem, 12px);
	letter-spacing: 0.04em;
	text-align: center;
	white-space: nowrap;
}

.header-logo__logo {
	align-items: center;
	display: flex;
	gap: 1rem;
	height: 1.875rem;
	margin-top: 0.5rem;
	width: 10.625rem;
}

.header-logo__tag {
	-webkit-text-decoration-skip-ink: none;
	background-color: #ffcfdc;
	border: 0.0625rem solid #221a15;
	border-radius: 2.5rem;
	bottom: 0.1875rem;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.6;
	padding: 0.25rem 1rem;
	position: absolute;
	right: 1.25rem;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

/* === ヘッダーロゴ関連のクラス end === */

/* === ヘッダーの地域選択モーダルのクラス start === */

.header-modal {
	background-color: white;
	border: 0.0625rem solid #221a15;
	border-radius: 0.5rem;
	display: none;
	left: 26px;
	margin: 0;
	margin: initial;
	padding: 1rem;
	position: absolute;
	top: 5.5rem;
	z-index: 10;
}

.header-modal__list {
	-moz-column-gap: 0.25rem;
	column-gap: 0.25rem;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 0.5rem;
}

.header-modal__item {
	border: 0.0625rem solid #221a15;
	border-radius: 2.5rem;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.4rem;
	text-align: center;
	width: 90px;
}

.header-modal__item:hover {
	background-color: #ffcfdc;
	border: 0.0625rem solid transparent;
}

.header-modal__item a {
	display: inline-block;
	height: 100%;
	padding: 0.25rem 0;
	width: 100%;
}

.header-modal__link {
	-webkit-text-decoration-skip-ink: none;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.4rem;
	margin-top: 1.5rem;
	text-align: center;
	text-decoration-line: underline;
	text-decoration-skip-ink: none;
	text-decoration-style: solid;
	text-underline-position: from-font;
}

/* === ヘッダーの地域選択モーダルのクラス end === */

/* === ハンバーガーアイコンのクラス start === */

.hamburger {
	align-items: center;
	background-color: #221a15;
	border-radius: 3.75rem;
	cursor: pointer;
	display: flex;
	height: inherit;
	height: 3.75rem;
	justify-content: center;
	position: fixed;
	right: 0.6875rem;
	top: 0.5625rem;
	width: 2rem;
	width: 3.75rem;
	z-index: 9999;
}

.hamburger span {
	background-color: #eb537b;
	display: inline-block;
	height: 0.125rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	transition: 0.3s transform, 0.3s background-color;
	width: 1.375rem;
}

.hamburger span:nth-child(1) {
	top: 1.3125rem;
}

.hamburger span:nth-child(2) {
	top: 1.8125rem;
}

.hamburger span:nth-child(3) {
	top: 2.3125rem;
}

.is-active .hamburger {
	background-color: transparent;
}

.is-active .hamburger span:nth-child(1) {
	top: 1.1875rem;
	transform: rotate(-45deg);
}

.is-active .hamburger span:nth-child(2) {
	opacity: 0;
}

.is-active .hamburger span:nth-child(3) {
	top: 1.1875rem;
	transform: rotate(45deg);
}

/* === ハンバーガーアイコンのクラス end === */

/* === hamburgerメニュークリック時のコンテンツクラス start === */

.nav-home__items {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	width: 100%;
}

.nav-home__menu-item {
	position: relative;
}

.nav-home__menu-item:not(:first-child):after {
	background-color: #f090a9;
	border: 0.0625rem solid #221a15;
	border-radius: 11.25rem;
	content: "";
	height: 0.5rem;
	left: 50%;
	position: absolute;
	top: -105%;
	transform: translateX(-50%);
	width: 0.5rem;
}

.nav-home__menu-item a {
	-webkit-text-decoration-skip-ink: none;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.5rem;
	position: relative;
	text-align: left;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.nav-home__menu-item.active a {
	color: #f090a9;
}

.nav-home__header-logo {
	display: flex;
	justify-content: center;
	margin-top: 2.5rem;
}

/* === hamburgerメニュークリック時のコンテンツクラス end === */

/* === hamburgerメニュー「他の地域を選択」後のクラス start === */

.nav-select__title {
	-webkit-text-decoration-skip-ink: none;
	font-size: max(1rem, 15px);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1.3rem;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

.nav-select__arrow-link {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.nav-select__arrow {
	height: 1.25rem;
	position: relative;
	width: 1.25rem;
}

.nav-select__arrow::after {
	background-image: url("../images/common/icon-arrow.svg");
	content: "";
	height: 0.75rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0.375rem;
}

.nav-select__arrow-link--next .nav-select__arrow::after {
	right: 50%;
	top: 20%;
	transform: rotate(180deg);
}

.nav-select__link {
	-webkit-text-decoration-skip-ink: none;
	color: #eb537b;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.6;
	position: relative;
	text-align: center;
	text-decoration-line: underline;
	text-decoration-skip-ink: none;
	text-decoration-style: solid;
	text-underline-position: from-font;
}

/* === hamburgerメニュー「他の地域を選択」後のクラス end === */

/* === ハンバーガーメニューの共通ラッパー start === */

.sp-nav {
	background-color: #ffecf1;
	height: 100vh;
	overflow: auto;
	position: relative;
	width: 100%;
}

.sp-nav__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3.75rem 0.9375rem;
}

.nav.is-active {
	display: block;
}

.sp-nav__back span {
	background-image: url("../images/common/icon-arrow.svg");
	height: 0.6875rem;
	width: 0.4375rem;
}

.sp-nav__back-text {
	-webkit-text-decoration-skip-ink: none;
	color: #eb537b;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.4rem;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
}

/* === ハンバーガーメニューの共通ラッパー end === */

/* === 地域県選択のリスト用クラス start === */

.nav-select .region-list {
	margin-top: 1.5rem;
}

.region-list--top {
	-moz-column-gap: 0.75rem;
	column-gap: 0.75rem;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 1rem;
}

.region-list--region {
	-moz-column-gap: 1rem;
	column-gap: 1rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 0.75rem;
}

.region-list--prefectures {
	-moz-column-gap: 1rem;
	column-gap: 1rem;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 0.75rem;
}

.region-list--nav-region {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(2, 1fr);
}

.region-list--prefecture {
	-moz-column-gap: 0.75rem;
	column-gap: 0.75rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 1rem;
}

.region-list--nav-prefecture {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(2, 1fr);
}

/* === 地域県選択のリスト用クラス end === */

/* === 都道府県アイテムのクラス start === */

.region-item {
	-webkit-text-decoration-skip-ink: none;
	background-color: #a4ecec;
	border: 0.0625rem solid #221a15;
	border-radius: 3rem;
	box-shadow: 0rem 0.1875rem 0rem 0rem #221a15;
	cursor: pointer;
	font-size: max(1.25rem, 18px);
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 2rem;
	list-style: none;
	padding: 0.59375rem 0;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
	transition: box-shadow 0.3s ease, transform 0.1s ease; /* スムーズな変化 */
}

.region-item a {
	display: block;
	height: 100%;
	width: 100%;
}

.region-select .region-item {
	padding: 0.6875rem 0;
}

.region-list--top .region-item {
	width: 100%;
}

/* === 都道府県アイテムのクラス end === */

/* === セクションタイトル(影付きタイトル)のクラス start === */

.section-title {
	align-items: center;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 10;
}

.section-title__board-box {
	background-color: #ffffff;
	border: 1px solid #221a15;
	border-radius: 4px;
	box-shadow: 4px 4px 0px 0px #221a15;
	padding: 7px 10.73px;
	position: relative;
	position: relative;
}

.section-title__board-box::before,
.section-title__board-box::after {
	background-color: #221a15;
	border-radius: 180px;
	content: "";
	height: 4px;
	position: absolute;
	top: 4px;
	width: 4px;
}

.section-title__board-box::after {
	right: 4px;
}

.section-title__board-box::before {
	left: 4px;
}

.section-title__board-triangle {
	height: 22px;
	position: relative;
}

.section-title__board-triangle::before,
.section-title__board-triangle::after {
	background-color: #221a15;
	content: "";
	height: 1px;
	position: absolute;
}

.section-title__board-pin {
	height: 17.8px;
	left: 54%;
	position: absolute;
	top: -12px;
	transform: translateX(-50%);
	width: 17.46px;
	z-index: 2;
}

.section-title__board--2 .section-title__board-triangle::before {
	left: 3px;
	top: 15px;
	transform: rotate(-34deg);
	width: 29px;
}

.section-title__board--2 .section-title__board-triangle::after {
	right: 1px;
	top: 15px;
	transform: rotate(34deg);
	width: 29px;
}

.section-title__board--2 .section-title__board-pin {
	left: 57%;
	top: -6px;
}

.section-title__board--3 .section-title__board-triangle::before {
	left: 11px;
	top: 15px;
	transform: rotate(-28deg);
	width: 28px;
}

.section-title__board--3 .section-title__board-triangle::after {
	right: 11px;
	top: 15px;
	transform: rotate(29deg);
	width: 28px;
}

.section-title__board--3 .section-title__board-pin {
	left: 56%;
	top: -6px;
}

.section-title__board--4 .section-title__board-triangle::before {
	left: 11px;
	top: 15px;
	transform: rotate(-24deg);
	width: 35px;
}

.section-title__board--4 .section-title__board-triangle::after {
	right: 11px;
	top: 15px;
	transform: rotate(24deg);
	width: 35px;
}

.section-title__board--4 .section-title__board-pin {
	top: -5px;
}

.section-title__board--5 .section-title__board-triangle::before {
	left: 11px;
	top: 16px;
	transform: rotate(-21deg);
	width: 44px;
}

.section-title__board--5 .section-title__board-triangle::after {
	right: 11px;
	top: 16px;
	transform: rotate(21deg);
	width: 43px;
}

.section-title__board--5 .section-title__board-pin {
	top: -6px;
}

.section-title__board--6 .section-title__board-triangle::before {
	left: 11px;
	top: 16px;
	transform: rotate(-21deg);
	width: 53px;
}

.section-title__board--6 .section-title__board-triangle::after {
	right: 11px;
	top: 16px;
	transform: rotate(21deg);
	width: 51px;
}

.section-title__board--6 .section-title__board-pin {
	top: -6px;
}

.section-title__board--7 .section-title__board-triangle::before {
	left: 11px;
	top: 15px;
	transform: rotate(-15deg);
	width: 60px;
}

.section-title__board--7 .section-title__board-triangle::after {
	right: 11px;
	top: 15px;
	transform: rotate(16deg);
	width: 60px;
}

.section-title__board--7 .section-title__board-pin {
	left: 52%;
	top: -6px;
}

.section-title__board--8 .section-title__board-triangle::before {
	left: 11px;
	top: 15px;
	transform: rotate(-15deg);
	width: 69px;
}

.section-title__board--8 .section-title__board-triangle::after {
	right: 11px;
	top: 15px;
	transform: rotate(16deg);
	width: 68px;
}

.section-title__board--8 .section-title__board-pin {
	left: 53%;
	top: -7px;
}

.section-title__board--10 .section-title__board-triangle::before {
	left: 11px;
	top: 16px;
	transform: rotate(-12deg);
	width: 86px;
}

.section-title__board--10 .section-title__board-triangle::after {
	right: 11px;
	top: 16px;
	transform: rotate(11deg);
	width: 84px;
}

.section-title__board--10 .section-title__board-pin {
	left: 52%;
	top: -6px;
}

.section-title__board-text {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1;
	text-align: center;
}

.section-title__wrapper {
	margin-top: 1rem;
	position: relative;
	right: 0.0625rem;
}

.section-title__text {
	-webkit-text-decoration-skip-ink: none;
	color: white;
	font-family: Quicksand;
	font-size: 4.5rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 4.5rem;
	text-align: center;
	text-decoration-skip-ink: none;
	text-shadow: -0.0625rem -0.0625rem 0 #221a15, 0.0625rem -0.0625rem 0 #221a15, -0.0625rem 0.0625rem 0 #221a15, 0.0625rem 0.0625rem 0 #221a15; /* 縁取り */
	text-underline-position: from-font;
	white-space: nowrap;
}

.section-title__text-wrapper {
	left: 50.6%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: -moz-fit-content;
	width: fit-content;
}

.section-title__shadow {
	-webkit-text-decoration-skip-ink: none;
	color: #eb537b;
	font-family: Quicksand;
	font-size: 4.5rem;
	font-weight: 700;
	left: 0.3125rem;
	letter-spacing: 0.1em;
	line-height: 4.5rem;
	position: absolute;
	position: absolute;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
	top: 0.3125rem;
	white-space: nowrap;
	z-index: -1;
}

.section-title__bg-text {
	-webkit-text-decoration-skip-ink: none;
	background: linear-gradient(0deg, #fff4f7, #fff4f7), linear-gradient(92.87deg, #ffcfdc 0%, #f090a9 100.18%);
	color: #eb537b;
	font-family: Quicksand;
	font-size: 7.5rem;
	font-weight: 700;
	left: 0.125rem;
	letter-spacing: 0.1em;
	line-height: 5.5rem;
	opacity: 0.06;
	position: relative;
	text-align: center;
	text-decoration-skip-ink: none;
	text-underline-position: from-font;
	top: -0.125rem;
	white-space: nowrap;
	z-index: -2;
}

.section-title--shop-blog .section-title__bg-text,
.section-title--cast-blog .section-title__bg-text {
	background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
	background: initial;
	color: #fff4f7;
}

.section-title__bg-img img {
	aspect-ratio: 356/84;
}

/* === セクションタイトル(影付きタイトル)のクラス end === */

/* === パンクズのクラス start === */

.page-bread {
	font-size: 14px;
	left: -1.375rem;
	position: relative;
}

.page-bread__list {
	display: flex;
	gap: 0.25rem;
	left: 1.375rem;
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.page-bread__item + .page-bread__item::before {
	background-image: url("../images/common/icon-arrow-bread.svg");
	background-size: cover;
	content: "";
	display: inline-block;
	height: 0.875rem;
	width: 0.875rem;
}

.page-bread__item {
	align-items: center;
	display: flex;
	flex: 0 1 auto;
	font-size: 13px;
	font-weight: 400;
	gap: 0.25rem;
	letter-spacing: 0.04em;
	line-height: 1.6;
	text-align: center;
	white-space: nowrap;
}

.page-bread__item--home::before {
	background-image: url("../images/common/icon-home.svg");
	background-size: cover;
	content: "";
	display: inline-block;
	height: 1rem;
	width: 1rem;
}

.page-bread__item a {
	-webkit-text-decoration-skip-ink: none;
	color: #f090a9;
	text-decoration-line: underline;
	text-decoration-skip-ink: none;
	text-decoration-style: solid;
	text-underline-position: from-font;
}

.page-bread__item[aria-current=page] {
	color: #221a15;
}

.page-bread__item:last-child {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.page-bread__item:last-child p {
	flex: 1;
	overflow: hidden;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* === パンクズのクラス end === */

/* === 共通リンク付きボタンのクラス start === */

.link-button {
	align-items: center;
	background-color: #a4ecec;
	border: 0.0625rem solid #221a15;
	border-radius: 3rem;
	box-shadow: 0rem 0.1875rem 0rem 0rem #221a15;
	cursor: hover;
	display: flex;
	font-size: max(1.125rem, 14px);
	font-weight: 600;
	height: 100%;
	justify-content: center;
	letter-spacing: 0.04em;
	line-height: 1;
	padding: 1.5rem 0;
	position: relative;
	text-align: center;
	text-align: center;
	transition: box-shadow 0.3s ease, transform 0.1s ease; /* スムーズな変化 */
	width: 100%;
}

.link-button--pink {
	background-color: #ffcfdc;
}

.link-button::after,
.link-button::before {
	border: 0.0625rem solid #221a15;
	border-radius: 11.25rem;
	content: "";
	height: 0.75rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.75rem;
}

.x-item .link-button::after,
.x-item .link-button::before {
	height: 0.5rem;
	width: 0.5rem;
}

.link-button--green::after,
.link-button--green::before {
	background-color: #0c8d8d;
}

.link-button--pink::after,
.link-button--pink::before {
	background-color: #f090a9;
}

.link-button::after {
	left: 1rem;
}

.link-button::before {
	right: 1rem;
}

.x-item .link-button::after {
	left: 0.625rem;
}

.x-item .link-button::before {
	right: 0.625rem;
}

.link-button__icon {
	height: 1.125rem;
	margin-left: 0.5rem;
	width: 1.125rem;
}

.blog-item .link-button,
.press-detail__button .link-button {
	font-size: max(1rem, 15px);
}

.side-profile .link-button {
	font-size: 14px;
}

.side-profile .link-button {
	padding: 0.9375rem 0;
}

.side-info .link-button {
	box-shadow: none;
	padding: 0.6875rem 0;
}

.side-info .link-button {
	font-size: 14px;
}

.side-info .link-button::after,
.side-info .link-button::before,
.shop-map .link-button::after,
.shop-map .link-button::before {
	display: none;
}

.side-info .link-button__icon {
	height: 1rem;
	margin-left: 0.5rem;
	width: 1rem;
}

.timeline-insta__list .link-button,
.shop-map .link-button {
	font-size: 14px;
}

.timeline-insta__list .link-button {
	font-size: max(0.875rem, 13px);
	height: 46px;
	margin: 0 auto;
	margin-top: 1rem;
	max-width: 200px;
	padding: 0.9375rem 0;
}

.x-item .link-button,
.shop-map .link-button {
	padding: 0.625rem 0;
}

.side-phone .link-button {
	font-size: 12px;
}

.side-phone .link-button {
	padding: 0.8125rem 0;
}

.side-phone .link-button::after,
.side-phone .link-button::before {
	height: 0.375rem;
	width: 0.375rem;
}

.shop-card .ink-button {
	padding: 1.4375rem 0;
}

.timeline-insta__btn .link-button {
	margin: 0 auto;
	margin-top: 1rem;
	max-width: 200px;
	width: 100%;
}

.timeline-insta .link-button::after,
.timeline-insta .link-button::before,
.side-phone .link-button::after,
.side-phone .link-button::before {
	height: 0.5rem;
	width: 0.5rem;
}

/* === 共通リンク付きボタンのクラス end === */

/* === 表示/非表示切り替えのクラス start === */

.md-none {
	display: block;
}

.md-show {
	display: none;
}

/* === 表示/非表示切り替えのクラス end === */

@media (hover: hover) {

.region-item:hover {
	box-shadow: none; /* ホバー時に影を消す */
	transform: translateY(0.125rem); /* 押下時に少し下に動かす */
}

.link-button:hover {
	box-shadow: none; /* ホバー時に影を消す */
	transform: translateY(0.125rem); /* 押下時に少し下に動かす */
}

}

@media screen and (max-width: 1300px) {

.footer {
	padding: 2.5rem 4.375rem 1rem;
}

.footer__container {
	padding: 3.5rem 3.15625rem 4rem;
}

}

@media (max-width: 1200px) {

html {
	font-size: 1.3333333333vw;
}

}

@media screen and (max-width: 1023px) {

.footer {
	padding: 2.5rem 1rem 1rem;
}

.footer__container {
	box-shadow: 0.25rem 0.25rem 0rem 0rem #221a15;
	flex-direction: column;
	padding: 2.5rem 2.28125rem 3.125rem;
}

.footer__name span {
	margin-left: 0;
}

.footer__logo {
	height: 2.25rem;
	width: 12.75rem;
}

.footer__menu {
	align-items: flex-start;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 2.125rem;
}

.footer__menu-item {
	padding-left: 0.5rem;
}

.footer__menu-item::after {
	left: -0.1875rem;
}

.footer__menu-item a {
	font-size: 15px;
	line-height: 0.9375rem;
}

.footer__copyright {
	margin-top: 2.5rem;
}

.header__container {
	padding: 1rem 2rem;
}

.header__menu {
	padding: 0 0.5rem;
}

.header-logo__tag {
	bottom: -0.1875rem;
	right: 0.9375rem;
}

}

@media (max-width: 768px) {

*::-webkit-scrollbar {
	width: 3px;
}

*::-webkit-scrollbar {
	width: 5px;
}

}

@media screen and (max-width: 767px) {

html {
	font-size: 16px;
}

.inner {
	max-width: 600px;
	padding-left: 7.5px;
	padding-right: 7.5px;
}

.footer__container {
	margin: 0 auto;
	max-width: 600px;
}

.header__container {
	display: none;
}

.header-logo__name {
	font-size: 12px;
	line-height: 1.08625rem;
}

.header-logo__name span {
	margin-left: 0.5rem;
}

.header-logo__logo {
	left: -0.625rem;
	position: relative;
}

.header-logo__tag {
	bottom: 0;
	font-size: 14px;
	padding: 0.175rem 1rem;
	right: -0.375rem;
}

.hamburger {
	right: 0.75rem;
	top: 0.75rem;
}

.nav-home__header-logo {
	margin-top: 2.375rem;
}

.nav-home__button {
	background-color: #a4ecec;
	border: 0.0625rem solid #221a15;
	border-radius: 3rem;
	box-shadow: 0rem 0.1875rem 0rem 0rem #221a15;
	display: block;
	font-size: max(1rem, 15px);
	font-weight: 600;
	height: 3rem;
	letter-spacing: 0.04em;
	line-height: 1rem;
	margin: 0 auto;
	margin-top: 1rem;
	padding: 0.9375rem 0;
	text-align: center;
	width: 12.5rem;
}

.nav-select__link {
	font-size: 13px;
}

.header__sp-nav--region .sp-nav__inner,
.header__sp-nav--prefecture .sp-nav__inner {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	padding-top: 6.3125rem;
}

.sp-nav__back {
	text-outline: 1.25rem;
	align-items: center;
	display: flex;
	gap: 0.4375rem;
	left: 1.625rem;
	position: absolute;
	top: 1.25rem;
}

.region-list--top {
	-moz-column-gap: 0.5rem;
	column-gap: 0.5rem;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 0.75rem;
}

.region-list--prefectures {
	gap: 0.75rem;
	grid-template-columns: repeat(2, 1fr);
}

.region-list--prefecture {
	-moz-column-gap: 0.5rem;
	column-gap: 0.5rem;
	row-gap: 0.75rem;
}

.region-item {
	font-size: 13px;
	line-height: 1.3rem;
	padding: 0.69375rem 0;
}

.modal__list .region-item {
	font-size: max(1rem, 15px);
	height: auto;
	height: initial;
	padding: 0.875rem 0;
}

.sp-nav .region-item {
	font-size: max(1rem, 15px);
	height: auto;
	height: initial;
	line-height: 1;
	padding: 0.9375rem 0;
}

.section-title {
	gap: 0.3125rem;
}

.section-title__board-box {
	box-shadow: 3px 3px 0px 0px #221a15;
	padding: 5px 8px;
}

.section-title__board-box::before,
.section-title__board-box::after {
	height: 3px;
	top: 3px;
	width: 3px;
}

.section-title__board-box::after {
	right: 3.5px;
}

.section-title__board-box::before {
	left: 3.5px;
}

.section-title__board-pin {
	height: 13.35px;
	width: 13.09px;
}

.section-title__board--2 .section-title__board-triangle::before {
	left: 4px;
	top: 17px;
	transform: rotate(-28deg);
	width: 21px;
}

.section-title__board--2 .section-title__board-triangle::after {
	right: 2px;
	top: 18px;
	transform: rotate(28deg);
	width: 21px;
}

.section-title__board--2 .section-title__board-pin {
	top: 2px;
}

.section-title__board--3 .section-title__board-triangle::before {
	left: 4px;
	top: 17px;
	transform: rotate(-28deg);
	width: 24px;
}

.section-title__board--3 .section-title__board-triangle::after {
	right: 1px;
	top: 18px;
	transform: rotate(28deg);
	width: 28px;
}

.section-title__board--3 .section-title__board-pin {
	top: 2px;
}

.section-title__board--4 .section-title__board-triangle::before {
	left: 11px;
	top: 17px;
	width: 23px;
}

.section-title__board--4 .section-title__board-triangle::after {
	right: 11px;
	top: 17px;
	width: 24px;
}

.section-title__board--4 .section-title__board-pin {
	top: 3px;
}

.section-title__board--5 .section-title__board-triangle::before {
	width: 32px;
}

.section-title__board--5 .section-title__board-triangle::after {
	width: 29px;
}

.section-title__board--5 .section-title__board-pin {
	top: 2px;
}

.section-title__board--6 .section-title__board-triangle::before {
	left: 11px;
	top: 17px;
	transform: rotate(-18deg);
	width: 37px;
}

.section-title__board--6 .section-title__board-triangle::after {
	right: 11px;
	top: 17px;
	transform: rotate(18deg);
	width: 35px;
}

.section-title__board--6 .section-title__board-pin {
	top: 2px;
}

.section-title__board--7 .section-title__board-triangle::before {
	left: 11px;
	top: 17px;
	transform: rotate(-18deg);
	width: 42px;
}

.section-title__board--7 .section-title__board-triangle::after {
	right: 11px;
	top: 17px;
	transform: rotate(18deg);
	width: 43px;
}

.section-title__board--7 .section-title__board-pin {
	top: 2px;
}

.section-title__board--8 .section-title__board-triangle::before {
	left: 11px;
	top: 17px;
	transform: rotate(-18deg);
	width: 49px;
}

.section-title__board--8 .section-title__board-triangle::after {
	right: 11px;
	top: 17px;
	transform: rotate(18deg);
	width: 50px;
}

.section-title__board--8 .section-title__board-pin {
	left: 52%;
	top: 0;
}

.section-title__board--10 .section-title__board-triangle::before {
	width: 61px;
}

.section-title__board--10 .section-title__board-triangle::after {
	width: 61px;
}

.section-title__board--10 .section-title__board-pin {
	top: 0;
}

.section-title__board-text {
	font-size: 12px;
}

.section-title__wrapper {
	margin-top: -0.25rem;
}

.blog-list .section-title__wrapper {
	margin-top: -0.3125rem;
}

.section-title__text {
	font-size: 2.5rem;
	line-height: 3rem;
}

.section-title__shadow {
	font-size: 2.5rem;
	left: 0.21875rem;
	line-height: 3rem;
	top: 0.1875rem;
}

.section-title__bg-text {
	font-size: 3.5rem;
	line-height: 3.85rem;
	top: -0.3125rem;
}

.section-title--shop-blog .section-title__bg-text,
.section-title--cast-blog .section-title__bg-text {
	font-size: 2.8125rem;
	line-height: 3.09375rem;
}

.section-title--pick-up .section-title__bg-text {
	font-size: 2.875rem;
}

.section-title--shop-cast .section-title__bg-text {
	font-size: 2.875rem;
	line-height: 3.1625rem;
}

.section-title--pick-up .section-title__text,
.section-title--pick-up .section-title__shadow {
	font-size: 2.25rem;
	line-height: 2.7rem;
}

.section-title--shop-blog .section-title__bg-text,
.section-title--shop-blog-list .section-title__bg-text {
	font-size: 2.8125rem;
	line-height: 3.09375rem;
}

.section-title--information .section-title__bg-text {
	font-size: 2.625rem;
	line-height: 2.8875rem;
}

.section-title__bg-img img {
	aspect-ratio: 180/52;
	height: 3.25rem;
}

.page-bread {
	display: none;
}

.link-button {
	font-size: max(1rem, 15px);
	line-height: 1rem;
	padding: 0.9375rem 0;
}

.x-item .link-button {
	font-size: 12px;
}

.link-button::after,
.link-button::before {
	height: 0.5rem;
	width: 0.5rem;
}

.top-history .link-button::after,
.top-history .link-button::before,
.ranking .link-button::after,
.ranking .link-button::before,
.top-blog .link-button::after,
.top-blog .link-button::before,
.sns__button .link-button::after,
.sns__button .link-button::before,
.shop-cast .link-button::after,
.shop-cast .link-button::before,
.shop-blog .link-button::after,
.shop-blog .link-button::before,
.casts-blog .link-button::after,
.casts-blog .link-button::before,
.sns-swiper .link-button::after,
.sns-swiper .link-button::before,
.side-profile .link-button::after,
.side-profile .link-button::before,
.press-detail__button .link-button::after,
.press-detail__button .link-button::before {
	height: 0.75rem;
	width: 0.75rem;
}

.link-button__icon {
	display: none;
}

.side-info .link-button__icon {
	display: block;
}

.side-phone .link-button__icon,
.shop-map__info .link-button__icon {
	display: block;
}

.shop-map__info .link-button__icon {
	height: 12px;
	margin-left: 4px;
	width: 12px;
}

.timeline-insta__list .link-button,
.shop-map .link-button {
	font-size: 12px;
}

.timeline-insta__list .link-button {
	font-size: 12px;
	padding: 0.875rem 0;
}

.x-item .link-button,
.shop-map .link-button {
	padding: 0.4375rem 0;
}

.timeline-insta__btn .link-button {
	height: 2.75rem;
	margin-top: 0.75rem;
}

.md-none {
	display: none;
}

.md-show {
	display: block;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

