:root {
	--font-family-base: Noto Sans JP, sans-serif;
	--font-weight-base: 400;
	--lineheight-base: 1.5;
	--font-size-base: clamp(10px, 1.3rem, 1.3rem);
	--font-en: "Barlow Condensed", sans-serif;
	--cl-primary: #1ABACF;
	--cl-secondary: #DEF0F5;
	--cl-border: #E2E2E2;
	--cl-light: #F1E8D6;
	--cl-warning: #A96303;
	--input-border-color: #e6e6e6;
	--input-border-width: 0.1rem;
	--input-font-size: 13px;
	--input-font-weight: 400;
	--input-background: #fff;
}

* {
	box-sizing: border-box;
}

html {
	font-size: 2.6666666667vw;
	overflow-x: hidden;
}

html.noscroll {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	background-color: #fff;
	color: #1E1E1E;
	margin: 0;
	font-family: var(--font-family-base);
	font-weight: var(--font-weight-base);
	font-size: var(--font-size-base);
	line-height: var(--lineheight-base);
	text-align: left;
	position: relative;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

ol,
ul,
dl {
	list-style-type: none;
	margin: 0;
	padding-left: 0;
}

b,
strong {
	font-weight: 700;
}

a {
	background-color: transparent;
	color: inherit;
	text-decoration: none;
}

img {
	vertical-align: middle;
	border-style: none;
	max-width: 100%;
	height: auto;
}

table {
	border-collapse: collapse;
}

th {
	font-weight: 400;
	text-align: inherit;
	text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

select {
	word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
}

textarea {
	overflow: auto;
	resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

[hidden] {
	display: none !important;
}

.aligncenter {
	text-align: center;
}

.alignright {
	text-align: right;
}

.alignleft {
	text-align: left;
}

img.aligncenter {
	display: block;
	margin: auto;
}

img.alignright {
	display: block;
	margin-left: auto;
}

img.alignleft {
	display: block;
	margin-right: auto;
}

.container {
	margin: auto;
	max-width: 126.6rem;
	padding-left: 1.6rem;
	padding-right: 1.6rem;
	width: 100%;
}

.slick-prev,
.slick-next {
	position: absolute;
	display: block;
	height: 20px;
	width: 20px;
	line-height: 0px;
	font-size: 0px;
	cursor: pointer;
	background: transparent;
	color: transparent;
	top: 50%;
	transform: translate(0, -50%);
	padding: 0;
	border: none;
	outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
	outline: none;
	background: transparent;
	color: transparent;
}

.slick-prev {
	left: -25px;
}

[dir=rtl] .slick-prev {
	left: auto;
	right: -25px;
}

.slick-next {
	right: -25px;
}

[dir=rtl] .slick-next {
	left: -25px;
	right: auto;
}

/* Dots */

.slick-dots {
	position: absolute;
	bottom: -4rem;
	list-style: none;
	display: flex;
	justify-content: center;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%;
}

.slick-dots li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 1.5rem;
	width: 1.5rem;
	margin: 0 0.2rem;
	padding: 0;
	text-align: center;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}

.slick-dots li button {
	border: 0;
	background: transparent;
	display: block;
	height: 0.7rem;
	width: 0.7rem;
	outline: none;
	line-height: 0px;
	font-size: 0px;
	color: transparent;
	padding: 0;
	cursor: pointer;
	background: #000;
	border-radius: 50%;
	transition: all 0.2s ease-in-out;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
	outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
	opacity: 0.75;
}

.slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	font-size: 6px;
	line-height: 20px;
	text-align: center;
	color: black;
	opacity: 0.25;
	-moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
	color: black;
	opacity: 1;
}

/* Slider */

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir=rtl] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
}

.slick-arrow.slick-hidden {
	display: none;
}

.animate_animated {
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-timing-function: ease;
}

.fadeUp {
	animation-name: fadeUp;
}

.fadeZoomOut {
	animation-name: fadeZoomOut;
	animation-duration: 0.8s;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
}

.btn:focus,
.btn.focus {
	outline: 0;
}

.btn.disabled,
.btn:disabled {
	opacity: 0.6;
	pointer-events: none;
}

.btn:not(:disabled):not(.disabled) {
	cursor: pointer;
}

.btn--primary {
	background-color: var(--cl-primary);
	color: #fff;
	transition: background 0.2s ease-in-out;
	border-radius: 5rem;
	height: 3.6rem;
	min-width: 16rem;
	position: relative;
}

.btn--primary:hover {
	background-color: #0E74CB;
}

.btn--primary:after {
	content: "";
	position: absolute;
	top: calc(50% - 0.6rem);
	right: 1.4rem;
	width: 1.4rem;
	height: 1.2rem;
	background: url(../images/common/arrow_icon_01.svg) no-repeat center/contain;
	filter: brightness(0) invert(1);
}

.btn--outline {
	background-color: #fff;
	border-radius: 5rem;
	transition: opacity 0.2s ease-in-out;
	height: 5rem;
	width: 27.6rem;
	border-color: var(--cl-primary);
	border-width: 0.3rem;
}

.btn--outline:hover {
	opacity: 0.8;
}

.p-header {
	background-color: #fff;
	z-index: 100;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
}

.p-header__wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 1.9rem;
}

.p-header__logo {
	position: relative;
	z-index: 19;
}

.p-header__logo img {
	width: 8.8rem;
	transition: all 0.2s ease-in-out;
}

.header-show .p-header__logo img {
	filter: brightness(0) invert(1);
}

.p-header__image {
	margin: 0 0 3rem -4.6rem;
}

.p-header__image img {
	width: 100%;
}

.p-header__acs {
	color: #1E1E1E;
}

.p-header__copyright {
	font-size: 1.1rem;
	color: #1E1E1E;
}

.p-header-info {
	display: flex;
	gap: 4rem;
	margin-bottom: 3rem;
}

.global-nav {
	display: flex;
	gap: 3rem;
}

.global-nav__anchor {
	display: inline-flex;
	align-items: center;
}

.global-nav__anchor img {
	width: inherit;
	display: block;
	transition: all 0.2s ease-in-out;
	height: 1.8rem;
	filter: brightness(0) invert(1);
}

.sub-nav {
	margin-top: 1.8rem;
}

.sub-nav__item:not(:last-child) {
	margin-bottom: 1.2rem;
}

.hamburger-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	height: 3.5rem;
	width: 3.5rem;
	z-index: 99;
}

.hamburger-box.is-active .hamburger-inner {
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transform: rotate(35deg);
}

.hamburger-box.is-active .hamburger-inner:before {
	transition: top 75ms ease, opacity 75ms ease 0.12s;
	opacity: 0;
	top: 0;
}

.hamburger-box.is-active .hamburger-inner:after {
	transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
	transform: rotate(-75deg);
	bottom: 0;
}

.hamburger-inner:after,
.hamburger-inner:before {
	display: block;
	content: "";
}

.hamburger-inner:after,
.hamburger-inner:before,
.hamburger-inner {
	width: 100%;
	height: 0.2rem;
	background-color: #121212;
	transition: transform 0.15s ease;
	border-radius: 3px;
}

.header-show .hamburger-inner:after,
.header-show .hamburger-inner:before,
.header-show .hamburger-inner {
	background-color: #fff;
}

.hamburger-inner {
	position: relative;
	display: block;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition-duration: 75ms;
}

.hamburger-inner:before {
	position: absolute;
	top: -1.2rem;
	transition: top 75ms ease 0.12s, opacity 75ms ease;
}

.hamburger-inner:after {
	position: absolute;
	bottom: -1.2rem;
	transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.p-footer {
	background-color: #1f1f1f;
	color: #fff;
	padding: 5.4rem 0;
}

.p-footer__wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	-moz-column-gap: 5.8rem;
	column-gap: 5.8rem;
	flex-flow: wrap;
}

.p-footer__logo {
	width: 12.2rem;
}

.p-footer__logo img {
	width: 100%;
}

.p-footer__body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.p-footer__copyright {
	font-weight: 300;
	font-size: 1rem;
}

.p-footer__col {
	gap: 3rem 4rem;
	display: grid;
	border-bottom: 1px solid #fff;
	margin-bottom: 2.5rem;
	padding-bottom: 3.8rem;
}

.p-footer__menu li:not(.--menu-ttl):not(:last-child) {
	margin-bottom: 0.7rem;
}

.p-footer__menu li.--menu-ttl {
	margin-bottom: 1.3rem;
}

.p-footer__menu li.--menu-ttl img {
	filter: brightness(0) invert(1);
	height: 1.3rem;
}

.p-footer__menu a {
	transition: all 0.2s ease-in-out;
	font-size: 1rem;
}

.p-footer__menu a:hover {
	color: var(--cl-primary);
}

.p-footer__nav {
	display: flex;
	gap: 4rem;
	font-size: 1rem;
	position: relative;
	z-index: 2;
}

.form-control {
	background-color: var(--input-background);
	background-clip: padding-box;
	border: var(--input-border-width) solid var(--input-border-color);
	color: #121212;
	display: block;
	font-family: var(--font-family-base);
	font-size: var(--input-font-size);
	font-weight: var(--input-font-weight);
	line-height: 1.5;
	padding: 0.5rem 1rem;
	width: 100%;
	height: 6rem;
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0;
}

.form-control:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #121212;
}

.form-control::-moz-placeholder {
	color: #e6e6e6;
	opacity: 1;
}

.form-control::placeholder {
	color: #e6e6e6;
	opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
	background-color: #1E1E1E;
	opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.hline01 {
	margin-bottom: 3rem;
}

.hline01__ttl {
	margin-bottom: 1rem;
}

.hline01__ttl img {
	display: block;
	height: 2.4rem;
}

.hline01__sub {
	font-size: 1.1rem;
	font-weight: 500;
}

.hline01__sub::before,
.hline01__sub::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.hline01__sub::before {
	margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.hline01__sub::after {
	margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

body.is-loaded {
	opacity: 1 !important;
}

.nospace::before,
.nospace::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.nospace::before {
	margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.nospace::after {
	margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

main {
	padding-top: var(--headHeight);
	min-height: calc(100vh - var(--footHeight));
}

.txt-danger {
	color: var(--cl-danger);
}

.c-shoplist {
	display: grid;
	gap: 2rem 0.8rem;
	grid-template-columns: repeat(2, 1fr);
}

.c-shoplist__item {
	display: flex;
	flex-direction: column;
	transition: opacity 0.25s ease-in-out;
}

.c-shoplist__item:hover {
	opacity: 0.85;
}

.c-shoplist__image {
	aspect-ratio: 287/209;
	position: relative;
	margin-bottom: 1.2rem;
	overflow: hidden;
}

.c-shoplist__image::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	border: 2px solid var(--cl-border);
	z-index: 1;
}

.c-shoplist__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-shoplist__ttl {
	font-weight: 600;
	margin-bottom: 0.8rem;
}

.c-shoplist__sub {
	font-size: 1.2rem;
	margin-top: auto;
}

.c-shoplist__info {
	margin-bottom: 0.9rem;
}

.c-news {
	display: block;
	transition: all 0.2s ease-in-out;
}

.c-news::before,
.c-news::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.c-news::before {
	margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.c-news::after {
	margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.c-news:hover {
	opacity: 0.85;
}

.c-news:not(:last-child) {
	margin-bottom: 3rem;
}

.c-news__ttl {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-webkit-line-clamp: 2;
}

.c-shopnews {
	transition: all 0.2s ease-in-out;
}

.c-shopnews:hover {
	opacity: 0.85;
}

.c-shopnews__image img {
	aspect-ratio: 280/180;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-shopnews__body {
	padding: 0.8rem 0.5rem;
	background-color: #fff;
}

.c-shopnews__ttl::before,
.c-shopnews__ttl::after,
.c-shopnews__time::before,
.c-shopnews__time::after,
.c-shopnews__txt::before,
.c-shopnews__txt::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.c-shopnews__ttl::before,
.c-shopnews__time::before,
.c-shopnews__txt::before {
	margin-block-end: calc((1 - 1.3846153846) * 0.5em);
}

.c-shopnews__ttl::after,
.c-shopnews__time::after,
.c-shopnews__txt::after {
	margin-block-start: calc((1 - 1.3846153846) * 0.5em);
}

.c-shopnews__ttl {
	font-weight: 600;
	margin-bottom: 1.8rem;
}

.c-shopnews__time {
	margin-bottom: 1rem;
}

.c-shopnews__txt {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.c-mv {
	margin-bottom: 5.4rem;
	height: 22.5rem;
}

.c-mv img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-pagination {
	margin-top: 8rem;
}

.c-pagination ul {
	display: flex;
	gap: 0.4rem;
	justify-content: center;
	flex-flow: wrap;
}

.c-pagination ul li,
.c-pagination ul .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	flex-shrink: 0;
}

.c-pagination .first a::before,
.c-pagination .first a::after,
.c-pagination .prev a::before,
.c-pagination .prev a::after,
.c-pagination .next a::before,
.c-pagination .next a::after,
.c-pagination .last a::before,
.c-pagination .last a::after {
	content: "";
	display: inline-block;
	background: var(--cl-primary);
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	width: 0.8rem;
	height: 1.1rem;
}

.c-pagination .prev,
.c-pagination .next {
	width: 3.4rem;
}

.c-pagination .prev a::before,
.c-pagination .next a::before {
	content: none;
}

.c-pagination .next a::before,
.c-pagination .next a::after,
.c-pagination .last a::before,
.c-pagination .last a::after {
	transform: scaleX(-1);
}

.c-pagination .page-numbers {
	aspect-ratio: 1;
	border-radius: 50%;
	border: 1px solid var(--cl-primary);
	line-height: 1;
	font-family: var(--font-en);
	transition: all 0.2s ease-in-out;
	width: 3.4rem;
	font-size: clamp(10px, 1.6rem, 1.6rem);
}

.c-pagination .page-numbers.current,
.c-pagination .page-numbers:hover {
	background-color: var(--cl-primary);
	color: #fff;
}

.c-news-detail {
	padding: 4.9rem 0 18rem;
}

.c-news-detail > *:last-child {
	margin-bottom: 0 !important;
}

.c-news-detail__time {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}

.c-news-detail__time::before,
.c-news-detail__time::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.c-news-detail__time::before {
	margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.c-news-detail__time::after {
	margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.c-news-detail h1 {
	font-weight: 600;
	border-bottom: 2px solid var(--cl-primary);
	font-size: 1.6rem;
	padding-bottom: 1.5rem;
	margin-bottom: 3.5rem;
}

.c-news-detail h1::before,
.c-news-detail h1::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.c-news-detail h1::before {
	margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.c-news-detail h1::after {
	margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.c-news-detail p {
	min-height: 1px;
}

.c-news-detail p:not([class]) {
	font-size: 1.2rem;
	line-height: 2;
}

.c-news-detail p:not([class]):not(:last-child) {
	margin-bottom: 2.5rem;
}

.c-news-detail .detail-gallery:not(:last-child) {
	margin-bottom: 1.2rem;
}

.c-news-detail .detail-gallery img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	margin-inline: auto;
}

.c-news-detail .detail-gallery.--type-2col .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.c-news-detail .detail-gallery.--type-2col img {
	aspect-ratio: 388/259;
}

.c-news-detail .detail-gallery.--type-3col .wp-block-group__inner-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.4rem;
}

.c-news-detail .detail-gallery.--type-3col img {
	aspect-ratio: 259/388;
}

.c-news-detail .detail-gallery.--type-1col-horizontal {
	max-width: 53.3rem;
}

.c-news-detail .detail-gallery.--type-1col-horizontal img {
	aspect-ratio: 533/800;
}

.c-news-detail .detail-gallery.--type-1col-vertical {
	max-width: 80rem;
}

.c-news-detail .detail-gallery.--type-1col-vertical img {
	aspect-ratio: 800/533;
}

.c-news-detail .detail-gallery.--type-2row {
	max-width: 80rem;
}

.c-news-detail .detail-gallery.--type-2row .wp-block-group__inner-container {
	display: grid;
	gap: 24px;
}

.c-news-detail .detail-gallery.--type-2row img {
	aspect-ratio: 800/533;
}

.c-news-detail .detail-gallery .wp-block-image {
	margin: 0;
}

.c-news-detail .wp-block-image,
.c-news-detail .wp-block-video {
	margin-bottom: 1.2rem;
}

.c-news-detail .wp-block-video {
	margin-bottom: 0;
}

.c-news-detail .wp-block-video video {
	height: auto;
	width: 100%;
}

.c-shop-detail {
	padding: 4.9rem 0 9rem;
}

.c-shop-detail h1 {
	font-size: 1.6rem;
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 2px solid var(--cl-primary);
}

.c-shop-detail h1::before,
.c-shop-detail h1::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.c-shop-detail h1::before {
	margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.c-shop-detail h1::after {
	margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.c-shop-detail .detail-name {
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.c-shop-detail .detail-name::before,
.c-shop-detail .detail-name::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.c-shop-detail .detail-name::before {
	margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.c-shop-detail .detail-name::after {
	margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.c-shop-detail .detail-slider {
	margin-bottom: 5rem;
}

.c-shop-detail .detail-slider .slick-dots {
	bottom: -1.8rem;
}

.c-shop-detail .detail-slider .slick-dots li {
	width: 0.8rem;
	height: 0.8rem;
}

.c-shop-detail .detail-slider .slick-dots li.slick-active button {
	background-color: var(--cl-primary);
}

.c-shop-detail .detail-slider .slick-dots li button {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #BFBFBF;
	transition: all 0.2s ease-in-out;
}

.c-shop-detail .detail-slider__item {
	position: relative;
	margin-inline: 0.2rem;
	aspect-ratio: 660/430;
	width: 100vw;
}

.c-shop-detail .detail-slider__item img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.c-shop-detail .detail-media {
	display: flex;
	align-items: center;
	gap: 4.8rem;
	margin-bottom: 3.8rem;
}

.c-shop-detail .detail-media__image {
	aspect-ratio: 232/169;
	position: relative;
	border: 2px solid var(--cl-border);
	flex-shrink: 0;
	width: 15rem;
}

.c-shop-detail .detail-media__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.c-shop-detail .detail-tab-head {
	display: flex;
	gap: 0.7rem;
	margin-bottom: 3rem;
}

.c-shop-detail .detail-tab-head__item {
	border-radius: 0.7rem;
	background-color: #fff;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--cl-primary);
	padding-inline: 1rem;
	height: 3rem;
}

.c-shop-detail .detail-tab-head__item.is-active {
	background-color: var(--cl-primary);
	color: #fff;
}

.c-shop-detail .detail-tab__box {
	display: none;
}

.c-shop-detail .detail-tab__box.is-active {
	display: block;
}

.c-shop-detail .detail-tab__txt {
	padding-left: 0.5rem;
}

.c-shop-detail .detail-info table {
	width: 100%;
	border-top: 1px solid #00bcd4;
}

.c-shop-detail .detail-info tr {
	border-bottom: 1px solid #00bcd4;
}

.c-shop-detail .detail-info th {
	font-weight: bold;
}

.c-shop-detail .detail-sns {
	display: flex;
	align-items: center;
	margin-top: 1.6rem;
}

.c-shop-detail .detail-sns__ttl {
	font-weight: bold;
	width: 12.2rem;
	font-size: 1.4rem;
	padding-left: 0.8rem;
}

.c-shop-detail .detail-sns__list {
	display: flex;
	gap: 1.5rem;
}

.c-shop-detail .detail-sns__list a {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.1s ease-in-out;
	width: 3.5rem;
}

.c-shop-detail .detail-sns__list a img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.c-shop-detail .detail-shopnew {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem 0.8rem;
}

.c-shop-detail .detail-shopnew .c-shopnews {
	display: flex;
	flex-direction: column;
}

.c-shop-detail .detail-shopnew .c-shopnews__body {
	flex: 1 1;
}

.p-404 {
	text-align: center;
	font-size: 4rem;
}

.p-bnr {
	position: fixed;
	z-index: 2;
	right: 1rem;
	bottom: 1rem;
	width: 17.6rem;
	filter: drop-shadow(0.5rem 0.5rem 0.4rem rgba(0, 0, 0, 0.3));
	transition: all 0.3s ease-in-out;
}

.p-bnr.is-hide {
	opacity: 0;
	visibility: hidden;
}

.d-none {
	display: none !important;
}

.d-block {
	display: block !important;
}

.d-flex {
	display: flex !important;
}

.text-justify {
	text-align: justify !important;
}

.text-wrap {
	white-space: normal !important;
}

.text-nowrap {
	white-space: nowrap !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

@media (min-width: 576px) {

.d-sm-none {
	display: none !important;
}

.d-sm-block {
	display: block !important;
}

.d-sm-flex {
	display: flex !important;
}

.text-sm-left {
	text-align: left !important;
}

.text-sm-right {
	text-align: right !important;
}

.text-sm-center {
	text-align: center !important;
}

}

@media (min-width: 768px) {

html {
	font-size: 0.7320644217vw;
}

.slick-dots li {
	margin: 0 0.5rem;
}

.slick-dots li button {
	height: 1rem;
	width: 1rem;
}

.btn--primary {
	min-width: 14.3rem;
}

.btn--outline {
	width: 30.4rem;
}

.p-header__wrap {
	max-width: 123.4rem;
	margin: 0 auto;
	padding: 1.9rem 0 1.6rem 0;
}

.p-header__logo img {
	width: 14.9rem;
}

.p-header__image {
	margin: 0 0 2.8rem -3.5rem;
}

.p-header-info {
	display: none;
}

.global-nav {
	gap: 3.2rem;
}

.global-nav__anchor {
	height: 4.5rem;
}

.global-nav__anchor:hover img {
	filter: initial;
}

.global-nav__anchor img {
	height: 1.4rem;
	filter: brightness(0) invert(0.15);
}

.sub-nav {
	position: absolute;
	display: none;
}

.hamburger-box {
	display: none;
}

.p-footer {
	padding: 6rem 0 5.3rem;
}

.p-footer__logo {
	width: 14.2rem;
}

.p-footer__body {
	align-items: flex-end;
}

.p-footer__copyright {
	width: 100%;
	margin-top: -1rem;
}

.p-footer__col {
	padding-bottom: 3.5rem;
	margin-bottom: 3.5rem;
	gap: 3rem;
	display: flex;
}

.p-footer__menu:not(:last-child) {
	min-width: 10.5rem;
}

.p-footer__menu li.--menu-ttl {
	margin-bottom: 1.4rem;
}

.p-footer__menu li.--menu-ttl img {
	height: 1.4rem;
}

.p-footer__menu a {
	font-size: 1.2rem;
}

.p-footer__nav {
	gap: 3.3rem;
	font-size: 1.2rem;
}

.hline01 {
	margin-bottom: 4.5rem;
}

.hline01__ttl {
	margin-bottom: 1.8rem;
}

.hline01__ttl img {
	height: 2.9rem;
}

.hline01__sub {
	font-size: 1.4rem;
}

.sp {
	display: none !important;
}

a[href^=tel] {
	pointer-events: none;
}

.c-shoplist {
	gap: 2.866rem;
	grid-template-columns: repeat(4, 1fr);
}

.c-shoplist__ttl {
	margin-bottom: 1rem;
}

.c-shoplist__info {
	margin-bottom: 1.5rem;
}

.c-news:not(:last-child) {
	margin-bottom: 2.2rem;
}

.c-news__ttl {
	-webkit-line-clamp: 1;
}

.c-shopnews__body {
	padding: 1rem 1.4rem;
}

.c-shopnews__ttl {
	margin-bottom: 2rem;
}

.c-shopnews__time {
	margin-bottom: 2rem;
}

.c-mv {
	height: 28.6rem;
}

.c-pagination {
	margin-top: 9.5rem;
}

.c-pagination .first a::before,
.c-pagination .first a::after,
.c-pagination .prev a::before,
.c-pagination .prev a::after,
.c-pagination .next a::before,
.c-pagination .next a::after,
.c-pagination .last a::before,
.c-pagination .last a::after {
	width: 0.7rem;
	height: 1rem;
}

.c-pagination .prev,
.c-pagination .next {
	width: 3rem;
}

.c-pagination .page-numbers {
	width: 3rem;
	font-size: clamp(10px, 1.4rem, 1.4rem);
}

.c-news-detail {
	padding: 9rem 0;
	max-width: 80rem;
	margin-inline: auto;
}

.c-news-detail__time {
	font-size: 1.6rem;
	margin-bottom: 2rem;
}

.c-news-detail h1 {
	font-size: 2rem;
	padding-bottom: 2rem;
	margin-bottom: 4.5rem;
}

.c-news-detail p:not([class]) {
	font-size: 1.4rem;
	line-height: 1.7142857143;
}

.c-news-detail .detail-gallery:not(:last-child) {
	margin-bottom: 2.5rem;
}

.c-news-detail .detail-gallery {
	margin-inline: auto;
}

.c-news-detail .detail-gallery.--type-2col .wp-block-group__inner-container {
	gap: 2.4rem;
}

.c-news-detail .detail-gallery.--type-3col .wp-block-group__inner-container {
	gap: 1.1rem;
}

.c-news-detail .wp-block-image,
.c-news-detail .wp-block-video {
	margin-bottom: 2.5rem;
}

.c-shop-detail {
	padding: 8rem 0 16rem;
	max-width: 100rem;
	margin-inline: auto;
}

.c-shop-detail h1 {
	font-size: 2.2rem;
	padding-bottom: 2rem;
	margin-bottom: 2.7rem;
}

.c-shop-detail .detail-name {
	font-size: 1.4rem;
	margin-bottom: 2rem;
}

.c-shop-detail .detail-slider {
	margin-bottom: 7.7rem;
}

.c-shop-detail .detail-slider .slick-dots {
	bottom: -2.3rem;
}

.c-shop-detail .detail-slider .slick-dots li {
	width: 1rem;
	height: 1rem;
}

.c-shop-detail .detail-slider__item {
	margin-inline: 0.5rem;
	width: 66rem;
}

.c-shop-detail .detail-media__image {
	width: 23.2rem;
}

.c-shop-detail .detail-media__txt {
	max-width: 63rem;
	font-size: 1.6rem;
	line-height: 1.75;
}

.c-shop-detail .detail-tab-head {
	gap: 1.3rem;
}

.c-shop-detail .detail-tab-head__item {
	flex-shrink: 0;
	min-width: 15.5rem;
	height: 3.4rem;
	padding: 0.5rem 1.6rem;
	font-size: 1.4rem;
}

.c-shop-detail .detail-tab__txt {
	padding-left: 1rem;
	font-size: 1.6rem;
}

.c-shop-detail .detail-info table {
	font-size: 1.5rem;
}

.c-shop-detail .detail-info th,
.c-shop-detail .detail-info td {
	padding: 1.6rem 0.8rem;
}

.c-shop-detail .detail-info th {
	width: 16rem;
}

.c-shop-detail .detail-sns__ttl {
	width: 16rem;
	font-size: 1.5rem;
}

.c-shop-detail .detail-sns__list {
	gap: 1.2rem;
}

.c-shop-detail .detail-sns__list a {
	width: 3.6rem;
}

.c-shop-detail .detail-shopnew {
	padding-inline: 4.2rem;
	grid-template-columns: repeat(3, 1fr);
	gap: 4.2rem 3.7rem;
}

.c-shop-detail .detail-shopnew .c-shopnews__body {
	padding-bottom: 1.5rem;
}

.p-bnr {
	right: 2rem;
	bottom: 2rem;
	width: 28.75rem;
}

.d-md-none {
	display: none !important;
}

.d-md-block {
	display: block !important;
}

.d-md-flex {
	display: flex !important;
}

.text-md-left {
	text-align: left !important;
}

.text-md-right {
	text-align: right !important;
}

.text-md-center {
	text-align: center !important;
}

}

@media (min-width: 1230px) {

.d-lg-none {
	display: none !important;
}

.d-lg-block {
	display: block !important;
}

.d-lg-flex {
	display: flex !important;
}

.text-lg-left {
	text-align: left !important;
}

.text-lg-right {
	text-align: right !important;
}

.text-lg-center {
	text-align: center !important;
}

}

@media (min-width: 1366px) {

html {
	font-size: 10px;
}

.d-xl-none {
	display: none !important;
}

.d-xl-block {
	display: block !important;
}

.d-xl-flex {
	display: flex !important;
}

.text-xl-left {
	text-align: left !important;
}

.text-xl-right {
	text-align: right !important;
}

.text-xl-center {
	text-align: center !important;
}

}

@media (max-width: 767px) {

.p-header__block {
	overflow: hidden;
	position: fixed;
	inset: 0;
	padding-top: calc(var(--headHeight) + 3rem);
	display: flex;
	z-index: -12;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease-in-out;
}

.header-show .p-header__block {
	z-index: 12;
	opacity: 1;
	visibility: visible;
}

.header-show .p-header__block::after {
	transform: scale(6);
}

.p-header__block::after {
	content: "";
	position: fixed;
	z-index: -1;
	right: 0;
	top: -50vw;
	left: 50%;
	background: var(--cl-primary);
	width: 100vw;
	height: 100vw;
	border-radius: 50%;
	transform: scale(0);
	transition: transform 0.5s ease-in 0s;
}

.p-header__box {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	color: #fff;
	padding-left: 4.6rem;
	padding-bottom: 3rem;
}

.p-header__content {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	transition-delay: 0.3s;
	margin-top: auto;
}

.header-show .p-header__content {
	opacity: 1;
	visibility: visible;
}

.global-nav {
	flex-direction: column;
	border-bottom: 1px solid #fff;
	padding-bottom: 3rem;
	margin-bottom: 1.5rem;
}

.p-footer__wrap {
	row-gap: 5.8rem;
	flex-direction: column;
	align-items: center;
}

.p-footer__body {
	width: 100%;
}

.p-footer__col {
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
	max-width: 30rem;
	padding-inline: 4.5rem;
}

.p-footer__nav {
	justify-content: center;
}

.pc {
	display: none !important;
}

.c-news__date {
	margin-bottom: 0.8rem;
	font-size: 1.2rem;
}

.c-news__ttl {
	font-size: 1.2rem;
}

.c-news-detail h1 {
	margin-inline: -0.8rem;
	padding-inline: 0.8rem;
}

.c-news-detail .detail-gallery {
	margin-inline: -0.8rem;
}

.c-news-detail .wp-block-image {
	margin-inline: -0.8rem;
}

.c-shop-detail h1 {
	padding-left: 1.4rem;
}

.c-shop-detail .detail-name {
	padding-left: 1.4rem;
}

.c-shop-detail .detail-slider .slick-list {
	margin-inline: -1.6rem;
}

.c-shop-detail .detail-slider .slick-dots li {
	margin-inline: 0.5rem;
}

.c-shop-detail .detail-media {
	margin-bottom: 5rem;
	gap: 2rem;
	flex-direction: column;
}

.c-shop-detail .detail-tab-head__item {
	flex: 1 1;
}

.c-shop-detail .detail-info tr {
	display: block;
	padding: 1.4rem 0.8rem;
}

.c-shop-detail .detail-info th,
.c-shop-detail .detail-info td {
	display: block;
}

.c-shop-detail .detail-info th {
	font-size: 1.4rem;
	margin-bottom: 0.3rem;
}

}

@keyframes fadeUp {

0% {
	opacity: 0;
	transform: translate(0px, 40px);
}

100% {
	opacity: 1;
	transform: translate(0px, 0);
}

}

@keyframes fadeZoomOut {

0% {
	opacity: 0;
	transform: scale(1.1);
}

100% {
	opacity: 1;
	transform: scale(1);
}

}

