@charset "UTF-8";

:root {
	--main-color: #004CA0;
}

.breadcrumbs {
	max-width: 1300px;
	width: 90%;
	margin: 30px auto 0;
	position: relative;
	font-family: "Noto Sans", "Noto Sans JP";
	font-weight: 500;
	font-style: normal;
	font-size: 14px;
	z-index: 1;
}

.breadcrumbs p {
	font-size: 14px;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	position: relative;
	padding: 0 0 0 1.5em;
}

.breadcrumbs p::before {
	position: absolute;
	content: "\f015";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	left: 0;
}

@media screen and (max-width: 480px) {
	.breadcrumbs {
		margin: 20px auto 0;
	}
	.breadcrumbs p {
		font-size: 12px;
	}
}

.breadcrumbs p>span {
	display: flex;
	gap: 0 10px;
}

.cta {
	display: block;
	width: 100%;
	max-width: 370px;
	margin: 0 auto;
	text-align: center;
	font-weight: 400;
	font-size: 18px;
	color: #FFF;
	padding: 23px 20px 23px 10px;
	border-radius: 50px;
	border: solid 1px #FFF;
	background-color: var(--main-color);
	position: relative;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 480px) {
	.cta {
		font-size: 16px;
		padding: 16px 20px 16px 10px;
	}
}

.cta::before {
	position: absolute;
	content: "";
	background-color: #FFF;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	transition: 0.5s;
}

@media screen and (max-width: 480px) {
	.cta::before {
		width: 25px;
		height: 25px;
	}
}

.cta::after {
	position: absolute;
	content: "〉";
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-weight: bold;
	font-size: 16px;
	color: #171C61;
	top: 50%;
	right: 27px;
	transform: translateY(-50%);
	transition: 0.5s;
}

@media screen and (max-width: 480px) {
	.cta::after {
		font-size: 12px;
		right: 23px;
	}
}

@media (hover: hover) {
	.cta:hover::before {
		right: 8px;
	}

	.cta:hover::after {
		right: 13px;
	}
}

.cta.reverse {
	color: var(--main-color);
	background-color: #FFF;
	border: solid 1px var(--main-color);
}

.cta.reverse::before {
	background-color: var(--main-color);
}

.cta.reverse::after {
	color: #FFF;
}

.cta.beige {
	color: #171C61;
	background-color: #FFFCF3;
	border: solid 1px var(--main-color);
}

.cta.beige::before {
	background-color: var(--main-color);
}

.cta.beige::after {
	color: #FFF;
}

.cta.green {
	color: #FFF;
	background-color: #00B900;
	border: solid 1px #00B900;
	margin: 75px auto 0;
	padding: 23px 40px 23px 10px;
}

.cta.green::before {
	background-color: #FFF;
}

.cta.green::after {
	color: #00B900;
}

@media screen and (max-width: 480px) {
	.cta.green {
		padding: 16px 40px 16px 10px;
	}
}

.shop-information {
	background-color: #FFFCF3;
	padding: 100px 0;
}

@media screen and (max-width: 768px) {
	.shop-information {
		padding: 50px 0;
	}
}

.shop-information__list {
	display: flex;
	justify-content: space-between;
	gap: 30px 20px;
	margin: 50px auto 0;
}

@media screen and (max-width: 1200px) {
	.shop-information__list {
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 768px) {
	.shop-information__list {
		flex-direction: column;
		gap: 0;
	}
}

.shop-information__list>li {
	width: 15.4333%;
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}

@media screen and (max-width: 1200px) {
	.shop-information__list>li {
		width: 31%;
	}
}

@media screen and (max-width: 768px) {
	.shop-information__list>li {
		width: 100%;
	}
}

.shop-information__list>li:nth-child(1).fadeInUpScroll {
	transition-delay: 0s;
}

.shop-information__list>li:nth-child(2).fadeInUpScroll {
	transition-delay: 0.1s;
}

.shop-information__list>li:nth-child(3).fadeInUpScroll {
	transition-delay: 0.2s;
}

.shop-information__list>li:nth-child(4).fadeInUpScroll {
	transition-delay: 0.3s;
}

.shop-information__list>li:nth-child(5).fadeInUpScroll {
	transition-delay: 0.4s;
}

.shop-information__list>li:nth-child(6).fadeInUpScroll {
	transition-delay: 0.5s;
}

.shop-information__head {
	color: #FFF;
	background-color: var(--main-color);
	padding: 10px;
	text-align: center;
	border-radius: 5px;
	position: relative;
	line-height: 1;
}

.shop-information__head.pc-only {
	display: block;
}

@media screen and (max-width: 768px) {
	.shop-information__head.pc-only {
		display: none;
	}
}

.shop-information__head.sp-only {
	display: none;
}

@media screen and (max-width: 768px) {
	.shop-information__head.sp-only {
		display: block;
	}
}

.shop-information__in {
	display: flex;
	flex-direction: column;
	gap: 10px 10px;
	transition: all 1s;
}

@media screen and (max-width: 1200px) {
	.shop-information__in {
		flex-direction: row;
		flex-wrap: wrap;
	}
}

@media screen and (max-width: 768px) {
	.shop-information__in {
		transition: all 0.5s;
		margin-bottom: 20px;
	}

	.shop-information__in.open {
		padding: 0 0 30px;
		margin: 0 0 10px;
	}
}

.shop-information__in>li {
	width: 100%;
	font-size: 14px;
	position: relative;
	padding-left: 20px;
}

@media screen and (max-width: 1200px) {
	.shop-information__in>li {
		width: 47%;
	}
}

.shop-information__in>li::before {
	position: absolute;
	content: "▶︎";
	font-weight: 900;
	color: #E1C871;
	font-size: 14px;
	top: 0;
	left: 0;
}

.shop-information__in>li a {
	transition: opacity 0.5s;
}

@media (hover: hover) {
	.shop-information__in>li a:hover {
		opacity: 0.8;
	}
}

.shop-information__none {
	width: 100% !important;
	padding: 0 !important;
}

.shop-information__none::before {
	content: none !important;
}

.ZoomIn {
	opacity: 0;
	transition-delay: 0.2s;
	pointer-events: none;
	transform: scale(0.5);
	transition: opacity 0.5s, transform 1s;
}

.ZoomIn.is_show {
	opacity: 1;
	pointer-events: all;
}

.ZoomIn.is_show {
	transform: scale(1);
}

.zoomIn {
	opacity: 0;
	transition-delay: 0.2s;
	pointer-events: none;
	transform: scale(0.5);
	transition: opacity 0.5s, transform 0.5s;
}

.zoomIn.is_show {
	opacity: 1;
	pointer-events: all;
}

.zoomIn.is_show {
	transform: scale(1);
}

.fadeInScroll {
	transition: opacity 0.5s;
	opacity: 0;
	transition-delay: 0.2s;
	pointer-events: none;
}

.fadeInScroll.is_show {
	opacity: 1;
	pointer-events: all;
}

.fadeInScroll.is_show {
	opacity: 1;
}

.BlurScroll {
	filter: blur(10px);
	transition: opacity 0.5s, filter 1s;
	opacity: 0;
	transition-delay: 0.2s;
	pointer-events: none;
	opacity: 1;
}

.BlurScroll.is_show {
	opacity: 1;
	pointer-events: all;
}

.BlurScroll.is_show {
	filter: blur(0);
	opacity: 1;
}

.fadeInUpScroll {
	transform: translateY(50px);
	transition: opacity 0.5s, transform 0.5s;
	opacity: 0;
	transition-delay: 0.2s;
	pointer-events: none;
}

.fadeInUpScroll.is_show {
	opacity: 1;
	pointer-events: all;
}

.fadeInUpScroll.is_show {
	transform: translateY(0);
}

.fadeInLeftScroll {
	transform: translateX(-50px);
	transition: opacity 0.5s, transform 0.5s;
	opacity: 0;
	transition-delay: 0.2s;
	pointer-events: none;
}

.fadeInLeftScroll.is_show {
	opacity: 1;
	pointer-events: all;
}

.fadeInLeftScroll.is_show {
	transform: translateX(0);
}

.fadeInRightScroll {
	transform: translateX(50px);
	transition: opacity 0.5s, transform 0.5s;
	opacity: 0;
	transition-delay: 0.2s;
	pointer-events: none;
}

.fadeInRightScroll.is_show {
	opacity: 1;
	pointer-events: all;
}

.fadeInRightScroll.is_show {
	transform: translateX(0);
}

@keyframes navy-fuwa {

	0%,
	100% {
		transform: scale(1) translateY(0);
	}

	50% {
		transform: scale(1) translateY(-20px);
	}
}

@keyframes lightblue-fuwa {

	0%,
	100% {
		transform: scale(1) translateY(2px);
	}

	50% {
		transform: scale(1) translateY(-15px);
	}
}

.whiteShow {
	position: relative;
	transform: scale(0.0001, 1);
	transform-origin: left;
	transition: transform 1s;
	transition-delay: 0.3s;
}

.whiteShow::before {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #FFF;
	content: "";
	transition: transform 0.6s;
	transform-origin: right;
	transition-delay: 0.9s;
	z-index: 10;
}

.whiteShow.is_show {
	transform: scale(1, 1);
}

.whiteShow.is_show::before {
	transform: scale(0, 1);
}

/***************************************************
 * Generated by SVG Artista on 4/29/2024, 10:55:11 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
@keyframes animate-svg-fill-1 {
	0% {
		fill: transparent;
	}

	100% {
		fill: rgb(23, 28, 97);
	}
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

@media screen and (max-width: 1024px) {
	.header {
		display: none;
	}
}

.header__flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0 15px;
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

.header__logo {
	display: flex;
	align-items: center;
	gap: 0 15px;
	margin: 10px 0 0 15px;
}



@media screen and (max-width: 1024px) {
	.header__logo {
		margin: 15px 0 0 15px;
	}
}

@media screen and (max-width: 480px) {
	.header__logo {
		gap: 0 7px;
		margin: 5px 0 0 5px;
	}
}

.header__img {
	max-width: 200px;
}

@media screen and (max-width: 1200px) {
	.header__img {
		max-width: 150px;
	}
}

@media screen and (max-width: 480px) {
	.header__img {
		max-width: 120px;
	}
}

.header__tit {
	font-size: clamp(13px, 1.2vw, 18px);
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
	text-shadow: 0 0 4px #FFF;
	transition: all 0.3s;
}

@media screen and (max-width: 480px) {
	.header__tit {
		font-size: 14px;
	}
}

.header__tit.change {
	transition: all 0.3s;
	color: #FFF;
	text-shadow: 1px 1px 3px #171C61;
}

.header__menu {
	display: flex;
	transition: all 0.5s;
}

.header__menu.hide {
	transform: translateY(-100%);
}

.header__nav {
	display: flex;
	align-items: flex-start;
}

.header__nav--sub {
	position: relative;
}

.header__nav--sub span {
	display: block;
	padding: 0 20px 0 0;
	position: relative;
	cursor: pointer;
}

@media screen and (max-width: 1200px) {
	.header__nav--sub span {
		padding: 0 15px 0 0;
	}
}

.header__nav--sub span::before,
.header__nav--sub span::after {
	position: absolute;
	content: "";
	background-color: #171C61;
	width: 10px;
	height: 1px;
	top: calc(50% + 2px);
}

@media screen and (max-width: 1200px) {

	.header__nav--sub span::before,
	.header__nav--sub span::after {
		width: 8px;
	}
}

.header__nav--sub span::before {
	border-radius: 0 10px 10px 0;
	right: 2px;
	transform: rotate(35deg) translateY(-50%);
}

.header__nav--sub span::after {
	border-radius: 10px 0 0 10px;
	right: -7px;
	transform: rotate(-35deg) translateY(-50%);
}

@media screen and (max-width: 1200px) {
	.header__nav--sub span::after {
		right: -5px;
	}
}

.header__nav--in {
	display: none;
	position: absolute;
	padding: 25px 25px 20px 15px;
	width: max-content;
	background-color: #FFF;
	border-radius: 0 0 15px 15px;
	box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.03);
	top: calc(100% + 0px);
	left: -10px;
}

.header__nav--in.show {
	display: block;
	animation-name: opacity;
	animation-duration: 1s;
}

.header__nav--in li {
	color: #171C61;
	position: relative;
	padding-left: 1rem;
	margin: 0 0 15px;
	transition: opacity 0.5s;
}

@media (hover: hover) {
	.header__nav--in li:hover {
		opacity: 0.8;
	}
}

.header__nav--in li:last-of-type {
	margin: 0;
}

.header__nav--in li a::before {
	position: absolute;
	content: "\f0da";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--main-color);
	font-size: 15px;
	top: calc(50% + 1px);
	left: 0;
	transform: translateY(-50%);
}

.header__nav>li>ul {
	display: flex;
	margin-left: -10px;
}

.header__nav>li>ul>li {
	font-size: clamp(11px, 1vw, 14px);
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
	transition: all 0.5s;
	position: relative;
	display: inline-block;
}

.header__nav>li>ul>li::before {
	position: absolute;
	content: "";
	background-color: transparent;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s;
}

@media screen and (max-width: 1200px) {
	.header__nav>li>ul>li::before {
		width: 4px;
		height: 4px;
	}
}

@media (hover: hover) {
	.header__nav>li>ul>li:hover {
		color: #C9A333;
	}
}

.header__nav>li>ul>li:hover>ul>li {
	color: #171C61;
}

.header__nav>li>ul>li:hover::before {
	background-color: #C9A333;
}

.header__nav>li:first-of-type>ul {
	display: flex;
	gap: 0 25px;
	background-color: #FFF;
	border-radius: 0 0 0 35px;
	padding: 28px 25px 28px 30px;
	padding: 28px 60px 28px 60px;
	max-width: 825px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 1440px) {
	.header__nav>li:first-of-type>ul {
		gap: 0 20px;
	}
}

@media screen and (max-width: 1200px) {
	.header__nav>li:first-of-type>ul {
		gap: 0 15px;
		padding: 28px 18px 28px 14px;
	}
}

.header__nav>li:last-of-type>ul>li {
	color: #FFF;
	font-size: clamp(12px, 1vw, 15px);
	max-width: 225px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.08);
	position: relative;
}

@media (hover: hover) {
	.header__nav>li:last-of-type>ul>li:hover {
		transform: scale(1.05);
	}
}

.header__nav>li:last-of-type>ul>li>a {
	display: block;
	position: relative;
	padding: 50px 38px 22px 38px;
}

@media screen and (max-width: 1440px) {
	.header__nav>li:last-of-type>ul>li>a {
		padding: 50px 20px 22px 20px;
	}
}

@media screen and (max-width: 1200px) {
	.header__nav>li:last-of-type>ul>li>a {
		padding: 50px 12px 22px 12px;
	}
}

.header__nav>li:last-of-type>ul>li>a::before {
	position: absolute;
	content: "";
	background-size: cover;
	width: 23px;
	height: 20px;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}

.header__nav>li:last-of-type>ul>li:last-of-type {
	background-color: var(--main-color);
	border-radius: 0 0 0 40px;
}

.header__nav>li:last-of-type>ul>li:last-of-type a::before {
	background-image: url(../img/herder-icon02.webp);
}

.header__btns {
	display: flex;
}

.sp-header {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
}

@media screen and (max-width: 1024px) {
	.sp-header {
		display: block;
	}
}

.sp-header__flex {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.sp-header__menu {
	background-color: #F5F7FF;
	width: calc(100vw - 10%);
	height: 100vh;
	padding: 60px 15px 20px;
	top: 0;
	right: 0;
	position: absolute;
	overflow-y: scroll;
	visibility: hidden;
	transition: all 0.5s ease;
	opacity: 0;
}

.sp-header__menu.active {
	visibility: visible;
	opacity: 1;
}

@media screen and (max-width: 480px) {
	.sp-header__menu {
		width: 100%;
	}
}

@keyframes header-in {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(0);
	}
}

.sp-header__content {
	background-color: #FFF;
	padding: 15px 20px 45px;
	margin: 0 auto;
	position: absolute;
	top: 150px;
	left: 50%;
	transform: translateX(-50%);
	width: 96%;
	animation-duration: 2s;
	border-radius: 0 0 20px 20px;
}

@media screen and (max-width: 768px) {
	.sp-header__content {
		padding: 15px 10px 45px;
	}
}

@media screen and (max-width: 480px) {
	.sp-header__content {
		padding: 15px 20px 70px;
		top: 105px;
	}
}

.sp-header__content::before {
	position: absolute;
	content: "";
	background-image: url(../images/common/header-bg.webp);
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 115px;
	bottom: 100%;
	left: 0;
}

@media screen and (max-width: 480px) {
	.sp-header__content::before {
		height: 52px;
	}
}

.sp-header__content img {
	display: block;
	margin: 0 auto;
	max-width: 125px;
}

@media screen and (max-width: 480px) {
	.sp-header__content img {
		max-width: 75px;
	}
}

.sp-header__in {
	margin: -155px 0 0;
}

@media screen and (max-width: 480px) {
	.sp-header__in {
		margin: -85px 0 0;
	}
}

.sp-header__tit {
	position: relative;
	display: block;
	margin: 12px auto 0;
	text-align: center;
	width: fit-content;
}

@media screen and (max-width: 480px) {
	.sp-header__tit {
		font-size: 14px;
	}
}

.sp-header__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px 15px;
}

@media screen and (max-width: 480px) {
	.sp-header__list {
		flex-direction: column;
	}
}

.sp-header__list li {
	width: 31%;
	position: relative;
	padding: 0 0 0 1.2em;
	line-height: 1;
}

@media screen and (max-width: 480px) {
	.sp-header__list li {
		padding: 0 0 0 1.2em;
	}
}

.sp-header__list li::before {
	position: absolute;
	content: "";
	background-image: url(../images/common/triangle-radius-yellow.webp);
	background-size: contain;
	background-repeat: no-repeat;
	width: 10px;
	height: 20px;
	top: 0;
	left: 0;
}

.sp-header__list li:after {
	position: absolute;
	content: "";
	background-color: #F5F7FF;
	width: 100%;
	height: 1px;
	bottom: -15px;
	left: 0;
}

@media screen and (max-width: 480px) {
	.sp-header__list li:last-child::after {
		content: none;
	}
}

@media screen and (max-width: 768px) {
	.sp-header__list li {
		width: 47%;
	}
}

@media screen and (max-width: 480px) {
	.sp-header__list li {
		width: 100%;
	}
}

.sp-header__btns {
	margin: 45px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 8px;
}

@media screen and (max-width: 480px) {
	.sp-header__btns {
		margin: 15px auto 25px;
	}
}

.sp-header__btn {
	text-align: center;
	display: block;
	color: #171C61;
	background-color: #FFFCF3;
	border-radius: 30px;
	border: solid 1px #171C61;
	padding: 16px 10px 16px 30px;
	font-size: 14px;
	width: 100%;
	max-width: 155px;
	position: relative;
	box-shadow: 0px 0px 4px 0px rgba(255, 251, 238, 0.25);
	transition: all 0.5s;
}

@media (hover: hover) {
	.sp-header__btn:hover {
		box-shadow: 0px 0px 6px 4px rgba(255, 251, 238, 0.25);
	}
}

.sp-header__btn span {
	position: relative;
}

.sp-header__btn span::before {
	position: absolute;
	content: "";
	background-size: cover;
	top: 50%;
	left: -22px;
	transform: translateY(-50%);
}

.sp-header__btn.shop span::before {
	background-image: url(../images/common/icon-shop.webp);
	width: 18px;
	height: 15px;
}

.sp-header__btn.online span::before {
	background-image: url(../images/common/icon-arrow.webp);
	width: 15px;
	height: 15px;
}

.sp-header__hamburger {
	background-color: #FFF;
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
	border-radius: 0 0 0 20px;
	z-index: 10;
	position: absolute;
	top: 0;
	right: 0;
	width: 55px;
	height: 51px;
}

.sp-header__hamburger span {
	width: 27px;
	height: 2px;
	background-color: var(--main-color);
	border-radius: 20px;
	display: block;
	position: absolute;
	left: 16px;
	transform: translateY(-50%);
	transition: all 0.4s;
}

.sp-header__hamburger span:nth-child(1) {
	top: 19px;
}

.sp-header__hamburger span:nth-child(2) {
	top: 27px;
}

.sp-header__hamburger span:nth-child(3) {
	top: 35px;
}

.sp-header__hamburger.active span:nth-child(1) {
	top: 25px;
	transform: rotate(135deg);
}

.sp-header__hamburger.active span:nth-child(2) {
	display: none;
}

.sp-header__hamburger.active span:nth-child(3) {
	top: 25px;
	transform: rotate(-135deg);
}

.footer {
	padding: 55px 0 25px;
	background-color: var(--main-color);
	color: #FFF;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.footer::before {
		background-image: url(../images/common/footer-bg-sp.webp);
		background-position: top;
	}
}

.footer.blank {
	padding: 55px 0 75px;
}

.footer__logo {
	max-width: 150px;
	display: block;
	margin: 0 auto;
}

.footer__menu {
	display: flex;
	flex-direction: column;
	gap: 20px 15px;
	margin: 50px auto 45px;
}

@media screen and (max-width: 480px) {
	.footer__menu {
		flex-wrap: wrap;
		flex-direction: row;
	}

	.footer__menu>li {
		display: contents;
	}

	.footer__menu>li>ul {
		display: contents;
	}
}

.footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 35px;
}

@media screen and (max-width: 480px) {
	.footer__nav li {
		width: 45%;
	}
}

@media screen and (max-width: 480px) {
	.footer__nav.upper li:nth-child(1) {
		order: 0;
	}

	.footer__nav.upper li:nth-child(2) {
		order: 2;
	}

	.footer__nav.upper li:nth-child(3) {
		order: 4;
	}

	.footer__nav.upper li:nth-child(4) {
		order: 6;
	}

	.footer__nav.upper li:nth-child(5) {
		order: 8;
	}

	.footer__nav.upper li:nth-child(6) {
		order: 1;
	}

	.footer__nav.upper li:nth-child(7) {
		order: 3;
	}

	.footer__nav.upper li:nth-child(8) {
		order: 5;
	}
}

@media screen and (max-width: 480px) {
	.footer__nav.lower li:nth-child(1) {
		order: 7;
	}

	.footer__nav.lower li:nth-child(2) {
		order: 9;
	}
}

.footer__btns {
	margin: 45px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.footer__btn {
	text-align: center;
	display: block;
	color: #171C61;
	background-color: #FFF;
	border-radius: 30px;
	border: solid 1px #171C61;
	padding: 17px 10px 17px 10px;
	font-size: 14px;
	width: 100%;
	max-width: 190px;
	position: relative;
	box-shadow: 0px 0px 4px 0px rgba(255, 251, 238, 0.25);
	transition: all 0.5s;
}

@media screen and (max-width: 480px) {
	.footer__btn {
		max-width: 240px;
	}
}

@media (hover: hover) {
	.footer__btn:hover {
		box-shadow: 0px 0px 6px 4px rgba(255, 251, 238, 0.25);
	}
}

.footer__btn i {
	padding: 0 0.5em 0 0;
}

.footer__copy {
	font-size: 12px;
	text-align: center;
}

.footer__copy a {
	transition: all 0.5s;
}

@media (hover: hover) {
	.footer__copy a:hover {
		opacity: 0.8;
	}
}

.front {
	overflow: hidden;
}

.mv {
	position: relative;
}

.mv__box {
	position: absolute;
	top: 46%;
	left: 10vw;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.mv__box {
		width: 90%;
		top: auto;
		bottom: 0;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

.mv__balloon {
	display: flex;
	align-items: flex-end;
	width: fit-content;
	text-align: center;
	color: #FFF;
	font-size: 24px;
	font-size: clamp(18px, 2vw, 24px);
	background-color: #C9A333;
	padding: 3px 20px 10px 20px;
	border-radius: 30px;
	position: relative;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
	letter-spacing: 1px;
	line-height: 1;
}

.mv__balloon::before {
	position: absolute;
	content: "";
	background-color: #C9A333;
	width: 37px;
	height: 20px;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	clip-path: polygon(100% 0, 0 0, 50% 80%);
}

.mv__balloon>span {
	font-size: 32px;
	font-size: clamp(24px, 2vw, 32px);
	position: relative;
}

.mv__balloon img {
	width: 26px;
	height: 28px;
	padding: 4px 0 0;
}

.mv__subtit {
	color: var(--main-color);
	line-height: 1;
	width: fit-content;
	background-color: #FFF;
	font-size: 24px;
	font-size: clamp(16px, 2vw, 24px);
	padding: 12px 10px 12px 20px;
	margin: 18px 0 10px;
}

@media screen and (max-width: 1024px) {
	.mv__subtit {
		padding: 6px 10px 6px 16px;
		margin: 12px 0 5px;
	}
}

@media screen and (max-width: 768px) {
	.mv__subtit {
		padding: 12px 10px 12px 20px;
		font-size: clamp(18px, 3.5vw, 28px);
	}
}

@media screen and (max-width: 480px) {
	.mv__subtit {
		padding: 7px 5px;
		font-size: clamp(14px, 3.8vw, 18px);
	}
}

.mv__tit {
	max-height: 71px;
	color: var(--main-color);
	line-height: 1;
	background-color: #FFF;
	font-size: 48px;
	padding: 12px 10px;
	width: fit-content;
	font-size: clamp(26px, 3.3vw, 48px);
}

@media screen and (max-width: 1024px) {
	.mv__tit {
		padding: 6px 10px;
	}
}

@media screen and (max-width: 768px) {
	.mv__tit {
		padding: 12px 10px;
		font-size: clamp(28px, 6vw, 44px);
	}
}

@media screen and (max-width: 480px) {
	.mv__tit {
		padding: 10px 5px;
		font-size: clamp(20px, 6.2vw, 28px);
	}
}

.mv__banner {
	max-width: 730px;
	margin: 0 auto;
	position: absolute;
	top: -110px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	transition: all 3s;
	border-radius: 25px;
	display: inline-block;
}

@media screen and (max-width: 1024px) {
	.mv__banner {
		top: -70px;
	}
}

@media screen and (max-width: 768px) {
	.mv__banner {
		width: 95%;
		max-width: 480px;
		margin: 0 auto 100px;
		position: relative;
		top: 0;
	}
}

.mv__banner img {
	border-radius: 25px;
	box-shadow: 0px 3px 10px 0px rgba(38, 37, 85, 0.25);
	transition: all 0.3s;
}

@media (hover: hover) {
	.mv__banner img:hover {
		transform: translate(0, -5px) !important;
		box-shadow: 0px 10px 10px 0px rgba(38, 37, 85, 0.25);
	}
}

.mv__swiper .swiper-slide img {
	transform: scale(1);
	transition: 8s;
}

@media screen and (max-width: 768px) {
	.mv__swiper .swiper-slide img {
		height: 500px;
		object-fit: cover;
	}
}

.mv__swiper .swiper-slide-active img {
	transform: scale(1.1);
}

.wave-wrp {
	bottom: -30px;
	height: 180px;
	left: 0;
	position: absolute;
	width: 100%;
}

.wave-wrp>canvas {
	height: 180px;
	width: 100%;
}

.h2_subtitle {
	display: block;
	text-align: center;
	font-size: 20px;
	margin-bottom: 20px;
	position: relative;
}

.about {
	background-color: #FFF;
	position: relative;
	z-index: 2;
	padding: 100px 0 0 0;
}

.about_flex {
	display: flex;
	justify-content: space-between;
	margin: 70px auto 55px;
	gap: 50px;
}

@media screen and (max-width: 768px) {
	.about_flex {
		flex-direction: column;
		align-items: center;
		gap: 0;
		margin: 45px auto;
	}
}

.about_flex_img {
	width: 45%;
}

.about_flex_txt {
	width: 50%;
}

@media screen and (max-width: 768px) {
	.about_flex_img,
	.about_flex_txt {
		width: 100%;
	}
}

.about h3 {
	font-size: 24px;
	line-height: 1.5;
	text-align: left;
	margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
	.about h3 {
		margin: 30px 0 20px;
	}
}

.effect {
	padding: 100px 0 100px 0;
	background-color: #FFF;
}

@media screen and (max-width: 768px) {
	.effect {
		padding: 50px 0;
	}
}

.effect h2 {
	text-align: center;
}

.effect__flex {
	display: flex;
	justify-content: space-between;
	margin: 70px auto 55px;
}

@media screen and (max-width: 768px) {
	.effect__flex {
		flex-direction: column;
		align-items: center;
		gap: 50px 0;
		margin: 45px auto;
	}
}

.effect__item {
	width: 31%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media screen and (max-width: 768px) {
	.effect__item {
		width: 100%;
	}
}

.effect__item:nth-child(1).fadeInUpScroll {
	transition-delay: 0s;
}

.effect__item:nth-child(2).fadeInUpScroll {
	transition-delay: 0.2s;
}

.effect__item:nth-child(3).fadeInUpScroll {
	transition-delay: 0.4s;
}

.effect__item img {
	max-width: 365px;
	border-radius: 0;
	margin: 0 auto;
	display: block;
}

@media screen and (max-width: 768px) {
	.effect__item img {
		max-width: initial;
	}
}

.effect h3 {
	font-size: 24px;
	height: 1.5em;
	text-align: center;
	margin: 40px 0 30px;
}

@media screen and (max-width: 768px) {
	.effect h3 {
		margin: 30px 0 20px;
	}
}

.effect__txt {
	margin: 0 auto 20px;
}

@media screen and (max-width: 768px) {
	.effect__txt {
		margin: 0 auto;
	}
}

.features {
	background-color: #FFFCF3;
	position: relative;
	padding: 100px 0;
}

@media screen and (max-width: 768px) {
	.features {
		padding: 50px 0;
	}
}

.features__bg {
	background-color: #FFFCF3;
}

.features__list {
	margin: 75px auto;
	display: flex;
	flex-direction: column;
	gap: 60px 0;
}

@media screen and (max-width: 768px) {
	.features__list {
		gap: 20px 0;
		margin: 50px 0 0 0;
	}
}

.features__list li:nth-child(even) .features__flex {
	flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
	.features__list li:nth-child(even) .features__flex {
		flex-direction: column;
	}
}

.features__flex {
	display: flex;
	justify-content: space-between;
	gap: 60px 30px;
}

@media screen and (max-width: 768px) {
	.features__flex {
		flex-direction: column;
		gap: 0px 30px;
	}
}

.features__left {
	max-width: 740px;
	width: 49%;
}

@media screen and (max-width: 768px) {
	.features__left {
		width: 100%;
		display: contents;
	}
}

/* .features__left img {
	border-radius: 30px;
} */

@media screen and (max-width: 768px) {
	.features__left img {
		order: 3;
	}
}

.features__right {
	width: 45%;
}

@media screen and (max-width: 768px) {
	.features__right {
		width: 100%;
		max-width: 100%;
		display: contents;
	}
}

.features__right h3 {
	font-size: 28px;
	font-weight: 500;
	color: var(--main-color);
	margin: 5px 0 20px;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.features__right h3 {
		order: 2;
		margin: 15px 0;
		z-index: 1;
		font-size: 24px;
	}
}

@media screen and (max-width: 768px) {
	.features__right p {
		order: 4;
		margin: 30px 0 0;
	}
}

.features__number {
	font-size: 65px;
	font-family: "Tangerine", cursive;
	font-weight: 400;
	font-style: normal;
	line-height: 1;
	color: #C9A333;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 768px) {
	.features__number {
		order: 1!important;
		font-size: 50px;
	}
}

.features__number::before {
	position: absolute;
	content: "";
	background-size: cover;
	width: 128px;
	height: 128px;
	top: 0;
	left: -50px;
	z-index: -1;
}

.features__number span {
	font-size: 120px;
}

@media screen and (max-width: 480px) {
	.features__number span {
		font-size: 50px;
	}
}

.recommendation {
	z-index: 1;
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
}

.recommendation::before {
	position: absolute;
	content: "";
	background-image: url(../images/top/recommendation-bg.webp);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	max-width: 1920px;
	height: 250px;
	top: -115px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

@media screen and (max-width: 768px) {
	.recommendation::before {
		top: auto;
		bottom: calc(100% - 2px);
		height: 97px;
	}
}

.recommendation__bg {
	background: linear-gradient(180deg, transparent 74px, var(--main-color) 74px);
}

@media screen and (max-width: 768px) {
	.recommendation__bg {
		background-color: var(--main-color);
		padding: 0 0 30px;
	}
}

.recommendation__bg::after {
	position: absolute;
	content: "";
	background-image: url(../images/top/recommendation-bg-under.webp);
	background-size: cover;
	background-position: center;
	width: 100%;
	max-width: 1920px;
	height: 90px;
	top: calc(100% - 2px);
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
	.recommendation__bg::after {
		height: 40px;
	}
}

@media screen and (max-width: 480px) {
	.recommendation__bg::after {
		height: 24px;
	}
}

.recommendation .wrapper {
	max-width: 1000px;
}

.recommendation h3 {
	text-align: center;
	color: #FFF;
	font-size: 28px;
}

@media screen and (max-width: 480px) {
	.recommendation h3 {
		font-size: 20px;
	}
}

.recommendation__flex {
	display: flex;
	gap: 20px 30px;
	align-items: center;
	margin: 40px auto 0;
}

@media screen and (max-width: 768px) {
	.recommendation__flex {
		flex-direction: column;
	}
}

.recommendation__left {
	width: 100%;
	max-width: 350px;
}

.recommendation__left img {
	border-radius: 30px;
}

@media screen and (max-width: 768px) {
	.recommendation__left img {
		border-radius: 45px;
	}
}

.recommendation__right {
	color: #FFF;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 10px 0 0;
}

.recommendation__right span {
	font-family: "Oooh Baby", cursive;
	font-weight: 400;
	font-style: normal;
	text-shadow: 0px 0px 3px #FFF;
	font-size: 42px;
}

@media screen and (max-width: 480px) {
	.recommendation__right span {
		font-size: 28px;
	}
}

.recommendation__right h4 {
	color: #171C61;
	background-color: #FFF;
	padding: 5px;
	margin: 10px 0;
	display: block;
	width: fit-content;
	font-size: 18px;
}

.recommendation__right p {
	line-height: 1.8;
}

.price {
	padding: 100px 0;
}

@media screen and (max-width: 480px) {
	.price {
		padding: 50px 0 80px;
	}
}

.price__txt {
	text-align: center;
	margin: 40px auto 0 0;
}

.price__flex {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 30px 20px;
	justify-content: space-between;
	margin: 50px auto 0;
}

@media screen and (max-width: 1024px) {
	.price__flex {
		gap: 45px 20px;
	}
}

@media screen and (max-width: 768px) {
	.price__flex {
		flex-direction: column;
		align-items: center;
	}
}

@media screen and (max-width: 768px) {
	.price__flex {
		gap: 35px 20px;
		width: 100%;
		margin: 50px 0 0 auto;
	}
}

.price__flex li {
	width: 48%;
	min-height: 80px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border: solid 1px var(--main-color);
	border-radius: 13px;
	background: #FFF;
	position: relative;
}

@media screen and (max-width: 1024px) {
	.price__flex li {
		padding: 10px 10px 10px 20px;
	}
}

@media screen and (max-width: 768px) {
	.price__flex li {
		max-width: 500px;
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	.price__flex li {
		min-height: 63px;
	}
}

.price__flex li::before {
	position: absolute;
	content: "";
	background-size: cover;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.price__flex li .price__item {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.price__flex li .price__price {
		margin: 0 0 0 auto;
	}
}

.price__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 1;
}

@media screen and (max-width: 768px) {
	.price__item {
		flex-direction: column;
	}
}

.price__menu {
	font-size: 20px;
	line-height: 1;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
}

@media screen and (max-width: 1024px) {
	.price__menu {
		font-size: clamp(16px, 2vw, 20px);
	}
}

@media screen and (max-width: 768px) {
	.price__menu {
		font-size: 20px;
	}
}

@media screen and (max-width: 480px) {
	.price__menu {
		font-size: clamp(18px, 5vw, 20px);
	}
}

.price__price {
	font-size: 22px;
	line-height: 1;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
}

@media screen and (max-width: 1024px) {
	.price__price {
		font-size: clamp(16px, 2vw, 22px);
	}
}

@media screen and (max-width: 768px) {
	.price__price {
		font-size: 22px;
	}
}

@media screen and (max-width: 480px) {
	.price__price {
		font-size: clamp(20px, 6vw, 22px);
	}
}

.price__price span {
	font-size: 14px;
}

@media screen and (max-width: 1024px) {
	.price__price span {
		font-size: clamp(12px, 1.5vw, 14px);
	}
}

@media screen and (max-width: 768px) {
	.price__price span {
		font-size: 14px;
	}
}

.price__option {
	font-size: 12px;
}

.shopinfo {
	padding: 100px 0;
	background-color: #F5F7FF;
	position: relative;
}

@media screen and (max-width: 480px) {
	.shopinfo {
		padding: 50px 0 70px;
	}
}

.shopinfo::before {
	position: absolute;
	content: "";
	background-image: url(../images/common/light-blue-bg.webp);
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 105px;
	bottom: calc(100% - 1px);
	left: 0;
	transform: rotate(180deg);
}

@media screen and (max-width: 480px) {
	.shopinfo::before {
		height: 25px;
	}
} 

.shopinfo .h2_subtitle {
	text-align: left;
}

.shopinfo h2 {
	text-align: left;
	margin: 0 auto 0 0;
}

.shopinfo h3 {
	font-size: 24px;
	margin: 40px 0 45px;
}

@media screen and (max-width: 480px) {
	.shopinfo h3 {
		font-size: 20px;
		margin: 40px 0 25px;
	}
}

.shopinfo__flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px 10px;
}

@media screen and (max-width: 768px) {
	.shopinfo__flex {
		display: block;
	}
}

.shopinfo__left {
	width: 59%;
}

@media screen and (max-width: 768px) {
	.shopinfo__left {
		width: 100%;
		margin: 0 0 30px;
	}
}

.shopinfo__mainslider {
	width: 51%;
	max-width: 450px;
}

@media screen and (max-width: 768px) {
	.shopinfo__mainslider {
		width: 100%;
		max-width: initial;
		margin: 0 auto;
	}
}

/* .shopinfo__mainslider .swiper-slide {
	border-radius: 46% 54% 55% 45%/51% 48% 52% 49%;
	overflow: hidden;
} */

.shopinfo__mainslider .swiper-slide img {
	width: 100%;
	max-width: 450px;
	height: 100%;
	display: block;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.shopinfo__mainslider .swiper-slide img {
		max-width: initial;
	}
}

.shopinfo__backslider {
	margin: 50px 0 0;
}

.shopinfo__backslider .swiper-wrapper {
	transition-timing-function: linear !important;
}

@media screen and (max-width: 768px) {
	.shopinfo__backslider {
		margin: 30px 0 0;
	}
}

.shopinfo__backslider .swiper-slide {
	overflow: hidden;
}

/* .shopinfo__backslider .swiper-slide.odd {
	border-radius: 46% 54% 55% 45%/51% 48% 52% 49%;
}

.shopinfo__backslider .swiper-slide.even {
	border-radius: 56% 44% 55% 45%/53% 56% 44% 47%;
} */

.shopinfo__cta.upper {
	margin: 45px auto 0 0;
}

@media screen and (max-width: 768px) {
	.shopinfo__cta.upper {
		display: none;
	}
}

.shopinfo__cta.lower {
	display: none;
	margin: 45px auto 0;
}

@media screen and (max-width: 768px) {
	.shopinfo__cta.lower {
		display: block;
	}
}

.column {
	padding: 100px 0 0 0;
}

@media screen and (max-width: 480px) {
	.column {
		padding: 50px 0;
	}
}

.column__txt {
	margin: 55px auto;
	text-align: center;
}

@media screen and (max-width: 768px) {
	.column__txt {
		text-align: left;
	}
}

.column__img {
	max-width: 365px;
	transition: box-shadow 0.5s;
}

@media screen and (max-width: 768px) {
	.column__img {
		max-width: initial;
	}
}

.column__date {
	color: #000;
	font-size: 16px;
	line-height: 1;
	margin: 15px 0;
}

.column__list {
	margin: 0 auto 100px;
	display: flex;
	justify-content: space-between;
	gap: 20px 20px;
}

@media screen and (max-width: 768px) {
	.column__list {
		margin: 0 auto 50px;
		flex-direction: column;
		align-items: center;
	}
}

.column__list li {
	width: 100%;
	max-width: 365px;
}

.column__list li:nth-child(1).fadeInUpScroll {
	transition-delay: 0s;
}

.column__list li:nth-child(2).fadeInUpScroll {
	transition-delay: 0.2s;
}

.column__list li:nth-child(3).fadeInUpScroll {
	transition-delay: 0.4s;
}

@media (hover: hover) {
	.column__list li a:hover img {
		box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.18);
	}
}

@media screen and (max-width: 768px) {
	.column__list li {
		max-width: initial;
	}
}

.column__tit {
	font-size: 18px;
	line-height: 1.5;
}

@media screen and (max-width: 768px) {
	.column__tit {
		font-size: 20px;
	}
}

.news {
	padding: 100px 0;
}

@media screen and (max-width: 768px) {
	.news {
		width: 100%;
		padding: 50px 0;
	}
	.news .wrapper {
		width: 100%;
	}
}

.news__list {
	background-color: var(--main-color);
	padding: 80px 85px 70px;
	display: flex;
	flex-direction: column;
	margin: 80px auto;
	box-shadow: inset 0 0 6px 10px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 768px) {
	.news__list {
		gap: 20px 0;
	}
}

@media screen and (max-width: 768px) {
	.news__list {
		margin: 50px auto 0;
		padding: 0px 20px;
		border-radius: 0;
		box-shadow: none;
	}
}

.news__list li {
	padding: 30px 0;
	position: relative;
	border-bottom: 1px solid #FFF;
}

.news__list li:last-child {
	border-bottom: 0;
}

.news__item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.news__item p,
.news__item h3 {
	color: #FFF;
}

.news__item a {
	width: 100%;
}

.news__info a {
	display: flex;
	align-items: center;
	gap: 30px 30px;
}

@media screen and (max-width: 768px) {
	.news__info a {
		/* flex-direction: column; */
		gap: 5px 30px;
	}
}

.new-mark {
	color: #FFF;
	background-color: #C9A333;
	font-size: 12px;
	padding: 3px 6px;
}


body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
	background-color: #FFF;
	color: var(--main-color);
}

body h2 {
	font-size: 42px;
	text-align: center;
	font-weight: 500;
	position: relative;
	display: block;
	width: fit-content;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	body h2 {
		font-size: 28px;
	}
}

body p {
	font-size: 16px;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 2;
}

body img {
	width: 100%;
	height: auto;
	object-fit: cover;
	vertical-align: bottom;
}

@media screen and (max-width: 480px) {
	body .pc-only {
		display: none;
	}
}

body .sp-only {
	display: none;
}

@media screen and (max-width: 480px) {
	body .sp-only {
		display: block;
	}
}

body .wrapper {
	width: 95%;
	max-width: 1150px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	body .wrapper {
		width: 90%;
	}
}

.logged-in.admin-bar .header {
	top: 32px;
}

.logged-in.admin-bar .sp-header {
	top: 32px;
}

@media screen and (max-width: 768px) {
	.logged-in.admin-bar #wpadminbar {
		position: fixed;
		top: 0;
	}

	.logged-in.admin-bar .header {
		top: 46px;
	}

	.logged-in.admin-bar .sp-header {
		top: 46px;
	}
}


/* 会社概要ページ */

.page-mv {
	position: relative;
	height: 320px;
}

@media screen and (max-width: 480px) {
	.page-mv {
		height: 200px;
	}
}

.page-mv__titwrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.page-mv h1 {
	color: #FFF;
	font-size: 42px;
	text-align: center;
	line-height: 1.2;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.page-mv h1 {
		font-size: clamp(34px, 7vw, 42px);
	}
}

@media screen and (max-width: 480px) {
	.page-mv h1 {
		font-size: 28px;
	}
}

.page-mv .single-tit {
	color: #FFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 42px;
	text-align: center;
	line-height: 1.2;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.page-mv .single-tit {
		font-size: clamp(34px, 7vw, 42px);
	}
}

@media screen and (max-width: 480px) {
	.page-mv .single-tit {
		font-size: 28px;
	}
}

.page-mv img {
	object-position: center;
	width: 100%;
	height: 100%;
	filter: brightness(65%);
}

.page-company {
	background-color: #FFF;
}

.company {
	padding: 55px 0 100px 0;
}

@media screen and (max-width: 768px) {
	.company {
		padding: 50px 0;
	}
}

.company .wrapper {
	max-width: 1000px;
}

.company__table {
	width: 100%;
}

.company__table tr th {
	color: #FFF;
	font-weight: normal;
	font-size: 16px;
	text-align: center;
	background-color: var(--main-color);
	padding: 25px 5px;
	width: 26.6666%;
	border-collapse: collapse;
	border: solid 2px #FFF;
	vertical-align: middle;
}

@media screen and (max-width: 480px) {
	.company__table tr th {
		font-size: 16px;
	}
}

.company__table tr td {
	font-size: 14px;
	background-color: #F9F9F9;
	padding: 14px 10px 14px 20px;
	border-collapse: collapse;
	vertical-align: middle;
	border: solid 2px #FFF;
}

@media screen and (max-width: 480px) {
	.company__table tr td {
		padding: 14px 10px 14px 10px;
	}
}

.company__list {
	line-height: 1.5;
	margin: 0 0 15px;
}

.company__list li {
	position: relative;
	padding: 0 0 0 1em;
}

.company__list li::before {
	position: absolute;
	content: "・";
	left: 0;
}

.company__list li a {
	color: blue;
	text-decoration: underline;
	transition: opacity 0.5s;
}

@media (hover: hover) {
	.company__list li a:hover {
		opacity: 0.8;
	}
}

/* 店舗一覧ページ */

.page-shoplist {
	padding: 50px 0 100px;
}

.page-shoplist .wrapper {
	max-width: 1150px;
}

.page-shoplist h2 {
	font-size: 32px;
}

.page-shoplist__content {
	display: none;
	animation-name: shop__fadeIn;
	animation-duration: 1s;
}

@keyframes shop__fadeIn {
	0% {
		opacity: 0;
		transform: translateY(15px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.page-shoplist__content.active {
	display: block;
	animation-name: shop__fadeIn;
	animation-duration: 1s;
}

.page-shoplist__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 40px 15px;
}

.page-shoplist__list li {
	width: 32.3%;
	max-width: 370px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media screen and (max-width: 1024px) {
	.page-shoplist__list li {
		width: 31.955555%;
	}
}

@media screen and (max-width: 768px) {
	.page-shoplist__list li {
		width: 48.3333333%;
	}
}

@media screen and (max-width: 480px) {
	.page-shoplist__list li {
		width: 100%;
		max-width: none;
	}
}

.page-shoplist__img {
	max-width: 370px;
	max-height: 245px;
	min-height: 170px;
	height: 16vw;
}

@media screen and (max-width: 480px) {
	.page-shoplist__img {
		max-width: 100%;
	}
}

.page-shoplist__img img {
	height: 100%;
}

.page-shoplist__name {
	display: block;
	font-size: 20px;
	padding: 10px 15px;
	margin: 8px 0 10px;
	border: solid 1px #E8E9F3;
	border-radius: 5px;
	position: relative;
	background-color: #FFFEFB;
	transition: all 0.5s;
}

@media screen and (max-width: 1024px) {
	.page-shoplist__name {
		padding: 10px 15px 10px 10px;
		font-size: clamp(17px, 2vw, 20px);
	}
}

@media screen and (max-width: 480px) {
	.page-shoplist__name {
		font-size: 20px;
	}
}

.page-shoplist__name::before {
	position: absolute;
	content: "";
	background-color: var(--main-color);
	border-radius: 50px;
	width: 26px;
	height: 26px;
	top: 50%;
	right: 5px;
	transform: translateY(-50%);
	transition: all 0.5s;
}

.page-shoplist__name::after {
	position: absolute;
	content: "〉";
	color: #FFF;
	font-size: 14px;
	top: calc(50% - 1px);
	right: 5px;
	transform: translateY(-50%);
	transition: all 0.5s;
}

@media (hover: hover) {
	.page-shoplist__name:hover {
		color: #FFF;
		background-color: var(--main-color);
		border: solid 1px var(--main-color);
	}

	.page-shoplist__name:hover::before {
		background-color: #FFFEFB;
	}

	.page-shoplist__name:hover::after {
		color: var(--main-color);
	}
}

.page-shoplist__tel {
	font-family: "Noto Sans", "Noto Sans JP";
	font-weight: 500;
	font-style: normal;
	text-decoration: underline;
}

.page-shoplist__tel i {
	padding: 0 0.5em 0 0;
}

.page-shoplist__hours {
	margin: 8px 0 0;
}

.page-shoplist__flex {
	display: flex;
	gap: 10px 10px;
	margin: 5px 0 0;
}

@media screen and (max-width: 1024px) {
	.page-shoplist__flex {
		flex-direction: column;
	}
}

.page-shoplist__btn {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
	color: #FFF;
	text-align: center;
	padding: 13px 5px;
	border-radius: 5px;
	width: 100%;
	display: block;
	max-width: 180px;
	font-size: clamp(15px, 1.5vw, 16px);
	transition: all 0.5s;
}

@media screen and (max-width: 1024px) {
	.page-shoplist__btn {
		font-size: 16px;
		max-width: none;
	}
}

.page-shoplist__btn.line {
	background: #00B900;
	border: solid 1px #00B900;
}

@media (hover: hover) {
	.page-shoplist__btn.line:hover {
		background-color: #FFF;
		color: #00B900;
	}
}

.page-shoplist__btn.hotpepper {
	background-color: #9F1547;
	border: solid 1px #9F1547;
}

@media (hover: hover) {
	.page-shoplist__btn.hotpepper:hover {
		background-color: #FFF;
		color: #9F1547;
	}
}


.search__panel {
	margin: 50px auto 70px;
}

.search__panel::before {
	position: absolute;
	content: "";
	background-color: #A8A8A8;
	width: 100%;
	height: 1px;
	bottom: -15px;
	left: 0;
}

.search__area {
	display: flex;
	justify-content: space-evenly;
	gap: 0 40px;
	position: relative;
	max-width: 900px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.search__area {
		gap: 0 20px;
	}
}

@media screen and (max-width: 480px) {
	.search__area {
		display: none;
	}
}

.search__area li {
	color: #A8A8A8;
	font-size: 20px;
	position: relative;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	.search__area li {
		font-size: clamp(15px, 3vw, 20px);
	}
}

.search__area li::before {
	position: absolute;
	content: "";
	background-color: transparent;
	border-radius: 50%;
	width: 16px;
	height: 16px;
	bottom: -23px;
	left: 50%;
	right: 50%;
	transform: translateX(-50%);
	transition: background-color 0.5s;
}

.search__area li.active {
	color: #C9A333;
	pointer-events: none;
}

.search__area li.active::before {
	background-color: #C9A333;
}

.search__select {
	display: none;
	position: relative;
}

@media screen and (max-width: 480px) {
	.search__select {
		display: block;
	}
}

.search__select::before {
	position: absolute;
	content: "";
	background-color: var(--main-color);
	width: 41px;
	height: 100%;
	top: 0;
	right: 0;
	border-radius: 0 8px 8px 0;
}

.search__select span::before,
.search__select span:after {
	position: absolute;
	content: "";
	transform-origin: center;
	width: 10px;
	height: 2px;
	top: 50%;
	background-color: #FFF;
	transition: all 0.5s;
}

.search__select span::before {
	right: 21px;
	transform: rotate(25deg) translateY(-50%);
}

.search__select span::after {
	right: 11px;
	transform: rotate(-25deg) translateY(-50%);
}

.search__select--in {
	font-family: "Noto Sans", "Noto Sans JP";
	font-weight: 500;
	font-style: normal;
	font-size: 14px;
	color: #171C61;
	appearance: none;
	-webkit-appearance: none;
	padding: 10px 10px;
	width: 100%;
	border: solid 1px #E8E9F3;
	border-radius: 8px;
	background-color: #FFFEFB;
}

/* 店舗詳細ページ */

.shop__info {
	padding: 80px 0 0 0;
}
@media screen and (max-width: 768px) {
	.shop__info {
		padding: 30px 0 0 0;
	}
}

.shop__head {
	display: flex;
	justify-content: space-between;
}

.shop__head__img {
	width: 45%;
}

.shop__head__txt {
	width: 50%;
}

.shop__head__title {
	font-size: 30px;
	width: 100%;
	text-align: left;
	margin-bottom: 30px;
}

.shop__head__btn {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.shop__head__btn a {
	min-width: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
}

.reserve {
	color: #FFF;
	background-color: var(--main-color);
}

.line {
	color: #FFF;
	background-color: #02C300;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.line img {
	width: 30px;
}

.shop__head__txt h3 {
	font-size: 20px;
	margin: 30px 0 15px 0;
}

.shop__head__txt p {
	line-height: 1.5;
}

.shop__info__backslider {
	margin: 50px 0 0;
}

@media screen and (max-width: 768px) {
	.shop__info__backslider {
		margin: 30px 0 0;
	}
}

.shop__info__backslider{
	overflow: hidden;
}

.shop__info__backslider .swiper-pagination {
	position: relative;
	margin-top: 15px;
	text-align: center;
}

.shop__info__backslider .swiper-pagination-bullet {
	background: #004CA0;
	opacity: 0.4;
	width: 20px;
	height: 4px;
	border-radius: 40px;
}

.shop__info__backslider .swiper-pagination-bullet-active {
	opacity: 1;
}

.shop__info__backslider {
	overflow: hidden;
	position: relative;
}

.shop__info__backslider__img {
	margin: 0 10px;
} 

.shop__info__backslider__wrapper img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.slick-dots {
	bottom: -45px;
	padding-bottom: 30px!important;
}

/* ドット全体の位置・間隔 */
.shop__info__backslider .slick-dots {
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 8px; /* ドットの間隔 */
	padding: 0;
	list-style: none;
}

/* 各ドットのボタン */
.shop__info__backslider .slick-dots li button {
	width: 24px;              /* 横幅：棒の長さ */
	height: 3px;              /* 高さ：棒の太さ */
	background-color: #9ea5ad; /* 非アクティブの色 */
	border: none;
	border-radius: 2px;
	text-indent: -9999px;    /* テキスト非表示 */
	padding: 0;
	transition: background-color 0.3s ease, opacity 0.3s ease;
	opacity: 0.4;
	cursor: pointer;
}

/* アクティブ状態（選択中） */
.shop__info__backslider .slick-dots li.slick-active button {
	background-color: #002033; /* アクティブカラー（紺など） */
	opacity: 1;
}

/* hover時（お好み） */
.shop__info__backslider .slick-dots li button:hover {
	opacity: 0.7;
}

.shop__price {
	padding: 80px 0;
}

.shop__price__title {
	font-size: 30px;
}

.shop__price__table {
	width: 100%;
	max-width: 800px;
	margin: auto;
	border-collapse: collapse;
	margin-top: 50px;
}

.shop__price__table th,
.shop__price__table td {
	vertical-align: middle;
	padding: 15px;
}

.shop__price__table th {
	color: #FFF;
	background-color: var(--main-color);
	font-size: 22px;
	font-weight: bold;
}

.shop__price__table td {
	border-bottom: 1px solid #d5d5d5;
}

.shop__price__table__price {
	width: 25%;
	font-size: 20px;
}

@media screen and (max-width: 768px) {
	.shop__head {
		flex-direction: column;
		gap: 30px;
	}

	.shop__head__img {
		width: 100%;
	}

	.shop__head__txt {
		width: 100%;
	}

	.shop__head__btn a {
		min-width: initial;
		padding: 10px 0;
		width: 47%;
	}

	.shop__price__table td {
		display: block;
		border-bottom: none;
	}

	.shop__price__table__price {
		width: 100%;
		border-bottom: 1px solid #d5d5d5!important;
		font-size: 16px;
		padding-top: 0!important;
	}
}

/* ページネーション */

.pagenavigation {
	text-align: center;
	margin: 40px 0;
}

.pagenavigation ul.page-numbers {
	display: inline-flex;
	gap: 8px;
	list-style: none;
	padding: 0;
}

.pagenavigation a,
.pagenavigation span {
	display: block;
	padding: 6px 12px;
	border: 1px solid #ccc;
	color: #333;
	text-decoration: none;
}

.pagenavigation .current {
	background: #333;
	color: #fff;
}

/* お知らせ記事 */

.single {
	margin: 6rem 0;
}

.single__info {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-bottom: 30px;
}

.single__info__date {
	font-size: 14px;
    letter-spacing: 0.1em;
	line-height: 1.7;
}

.single__info__category {
	font-size: 14px;
    letter-spacing: 0.1em;
	line-height: 1.7;
}

.single h1 {
	font-size: 30px;
    letter-spacing: 0.04em;
	line-height: 1.5;
	font-weight: bold;
	margin: 1.5rem 0 6.5rem 0;
}

.single_thumb {
	margin-bottom: 50px;
}

.single_thumb img {
	width: 100%;
	height: initial;
	object-fit: cover;
}

.single h2,
.single h3,
.single h4,
.single h5,
.single h6,
.single p {
    letter-spacing: 0.12em;
	line-height: 1.8;
	margin-bottom: 18px;
	text-align: left;
}

.single h2 {
	font-size: 26px;
}

.single h3 {
	font-size: 22px;
}

.single h4 {
	font-size: 20px;
}

.single h5 {
	font-size: 18px;
}

.single h6 {
	font-size: 17px;
}

.single p {
	font-size: 16px;
}

.single_btn {
	margin-top: 80px;
}

.single_btn a {
	margin: auto;
}

@media screen and (max-width: 768px) {
	.single {
		margin: 50px 0;
	}
	.single_thumb {
		margin-bottom: 30px;
	}
	.single h2 {
		font-size: 24px;
	}

	.single h3 {
		font-size: 20px;
	}

	.single h4 {
		font-size: 18px;
	}

	.single h5 {
		font-size: 16px;
	}

	.single h6 {
		font-size: 16px;
	}

	.single p {
		font-size: 16px;
	}

	.single_btn {
		margin-top: 50px;
	}
}