@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
*,
::before,
::after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	line-height: 1;
	tab-size: 4;
	font-family: "Zen Maru Gothic", serif;
	scroll-behavior: smooth;
	color: #444444;
}
html::-webkit-scrollbar {
	display: none;
}

body {
	margin: 0;
	line-height: inherit;
	position: relative;
	background: #f9f5f3;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

a {
	color: inherit;
	text-decoration: inherit;
}

b,
strong {
	font-weight: bold;
}

small {
	font-size: 80%;
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	background-color: transparent;
	background-image: none;
}

:-moz-focusring {
	outline: auto;
}

:-moz-ui-invalid {
	box-shadow: none;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
	margin: 0;
}

ol,
ul,
menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

:disabled {
	cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle;
}

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

.not-scroll {
	touch-action: none;
	overflow: hidden;
}

.no-scroll-bar::-webkit-scrollbar {
	display: none;
}

[x-cloak] {
	display: none !important;
}

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

::-webkit-scrollbar-thumb {
	background-color: rgba(197, 197, 197, 0.55);
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

header,
footer {
	overflow: hidden;
}

.pc {
	display: block;
}
.sp {
	display: none;
}
br.pc {
	display: inline;
}
br.sp {
	display: none;
}

@media screen and (max-width: 999px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
}

/* ------ header ------ */
header {
	position: fixed;
	z-index: 999;
	width: 100%;
	padding: 0 1.38%;
	top: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* header */
.header-contents {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	max-width: 1920px;
	margin: 0 auto;
	background: #fff;
	height: 100%;
	border-radius: 10px;
	padding-left: 2.14%;
	overflow: hidden;
}

.header-logo {
	width: 150px;
	height: auto;
	aspect-ratio: 150 / 45;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	transition: all ease 0.33s;
}
.header-logo:hover {
	opacity: 0.6;
}
.header-nav-group {
	width: auto;
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 50px;
}
.header-nav-group > nav {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.header-nav-group > nav > a {
	transition: all ease 0.33s;
	font-size: 16px;
	font-weight: bold;
}
.header-nav-group > nav > a:hover {
	color: #e35c51;
}
.btn-header-contact {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 100%;
	color: #fefefe;
	font-size: 20px;
	font-weight: bold;
	background: #e35c51;
	flex-shrink: 0;
	transition: all ease 0.33s;
}
.btn-header-contact > span {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}
.btn-header-contact > span::after {
	content: "";
	width: 16px;
	height: auto;
	aspect-ratio: 16 / 22;
	position: relative;
	background-image: url("../images/common/icon-phone.svg");
	background-size: contain;
	background-repeat: no-repeat;
}
.btn-header-contact:hover {
	background: #e87c73;
	opacity: 1 !important;
}

.btn-menu {
	display: none;
}
.nav-menu {
	display: none;
}
main {
	overflow: hidden;
}

@media screen and (max-width: 1200px) {
	.header-nav-group {
		gap: 30px;
	}
	.header-nav-group > nav {
		gap: 20px;
	}
	.header-nav-group > nav > a {
		font-size: 14px;
	}
}
@media screen and (max-width: 999px) {
	header {
		padding: 0 20px;
		height: 65px;
	}
	.header-logo {
		width: 112px;
	}
	.header-nav-group {
		gap: 25px;
	}
	.header-nav-group nav {
		display: none;
	}
	.btn-header-contact {
		width: 120px;
		font-size: 16px;
	}

	.btn-menu {
		position: relative;
		display: flex;
		height: auto;
		width: 25px;
		aspect-ratio: 25 / 19;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}
	.btn-menu-close {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 9999;
		display: flex;
		justify-content: center;
		align-items: center;
		background: #e35c51;
		width: 60px;
		height: auto;
		aspect-ratio: 1 / 1;
		border-radius: 0 0 0 15px;
	}
	.btn-menu-close > img {
		max-width: 18px;
	}
	.nav-menu {
		pointer-events: none;
		position: fixed;
		top: 0px;
		right: 0px;
		z-index: 60;
		display: flex;
		height: 100vh;
		width: 100%;
		justify-content: flex-end;
		overflow-x: hidden;
		opacity: 0;
	}

	.nav-menu.nav-menu-active {
		pointer-events: auto;
		opacity: 1;
	}

	.nav-menu::after {
		content: "";
		position: fixed;
		top: 0px;
		right: 0px;
		z-index: 40;
		height: 100vh;
		width: 100vw;
		background: rgba(255, 255, 255, 0.01);
		backdrop-filter: blur(14px);
	}

	a.nav-menu-header-logo {
		width: 122px;
		height: auto;
		aspect-ratio: 61 / 40;
		position: absolute;
		top: 30px;
		left: 30px;
	}

	.nav-menu-wrapper {
		position: relative;
		z-index: 50;
		height: 100vh;
		width: 100%;
		max-width: 500px;
		overflow-y: auto;
		overflow-x: hidden;
		padding-top: 160px;
		transition: all ease 0.33s;
		opacity: 0;
		transform: translateY(-100%);
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		background-image: url("../images/common/bg-nav-menu.png");
		background-size: cover;
		background-repeat: no-repeat;
	}

	.nav-menu.nav-menu-active .nav-menu-wrapper {
		margin: 0px;
		opacity: 1;
		transform: translateY(0%);
	}

	.header-nav-sp {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 30px;
		padding: 0px 50px;
		margin-bottom: 50px;
	}
	.header-nav-sp > a {
		width: 100%;
		font-size: 18px;
		font-weight: bold;
		color: #e35c51;
		letter-spacing: 0.05em;
	}
	.header-nav-btns {
		width: 100%;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 15px;
	}
	.header-nav-btns > .btn {
		width: 100%;
		max-width: 310px;
		font-size: 20px;
		padding: 18px;
		filter: drop-shadow(0px 3px 6px rgb(0 0 0 / 16%));
	}
}

/* ------ bnr fixed ------ */
.bnr-fixed-area {
	width: 330px;
	height: auto;
	aspect-ratio: 330 / 220;
	position: fixed;
	bottom: 50px;
	right: 50px;
	z-index: 998;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 1;
	transition: all ease 0.33s;
	border-radius: 10px;
	overflow: hidden;
}
.bnr-fixed-area.is-hidden {
	opacity: 0;
	pointer-events: none;
}
.btn-bnr-close {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgb(255 255 255 / 50%);
	width: 40px;
	height: auto;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 0 10px 0 10px;
	cursor: pointer;
	opacity: 1;
	z-index: 10;
	transition: all ease 0.33s;
}
.btn-bnr-close:hover {
	background: rgb(255 255 255 / 20%);
}
.btn-bnr-close > img {
	max-width: 18px;
}
.bnr-fixed {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.bnr-fixed:hover > img {
	transform: scale(1.04);
}

@media screen and (max-width: 768px) {
	.bnr-fixed-area {
		display: none;
	}
}
/* ------ common ------ */

.sec-inner {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

.btn {
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 999px;
	color: #fefefe;
	line-height: 1;
	transition: all ease 0.33s;
	overflow: hidden;
	font-weight: bold;
}
.btn.btn-primary {
	background: #ea5963;
}
.btn.btn-accent {
	background: #3cc486;
}
.btn.btn-primary:hover {
	background: #ee7a82;
}
.btn.btn-accent:hover {
	background: #63cf9e;
}

.txt-link {
	text-decoration: underline;
	transition: all ease 0.33s;
	text-underline-offset: 2px;
	line-height: 1.5;
}
.txt-link:hover {
	opacity: 0.7;
}

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

img.img-contain {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all ease-in-out 0.4s;
}
img.img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all ease-in-out 0.4s;
}

/* ------ Heading style ------ */
.h2-box {
	width: 100%;
	display: flex;
	align-items: center;
	flex-flow: column;
	gap: 10px;
	position: relative;
	overflow: hidden;
}
.h2-box > h2 {
	width: 100%;
	font-size: 30px;
	font-weight: bold;
	color: #e35c51;
	text-align: center;
 letter-spacing: 0.1rem;
}
.icon-heart-h2 {
	width: 40px;
	height: auto;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

@media screen and (max-width: 999px) {
	.h2-box {
		gap: 15px;
	}
	.h2-box > h2 {
		font-size: 18px;
		line-height: 1.5;
	}
	.icon-heart-h2 {
		width: 30px;
	}
}
/* ------ Lowwer Common ------ */
.pagenation {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 20px;
	align-items: center;
}
.pagenation > a {
	width: 60px;
	height: auto;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f9f5f3;
	border-radius: 999px;
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	transition: all ease 0.33s;
	text-align: center;
}
.pagenation > a > svg {
	fill: #e35c51;
}
.pagenation > a:hover {
	background: #e35c51;
	color: #fff;
}
.pagenation > a:hover > svg {
	fill: #fff;
}

@media screen and (max-width: 999px) {
	.pagenation {
		gap: 10px;
	}
	.pagenation > a {
		width: 40px;
		font-size: 16px;
	}
	.pagenation > a > svg {
		width: 8px;
	}
}

/* ------ Footer ------ */
footer {
	width: 100%;
	padding: 0 6.94%;
	position: relative;
	background: #e35c51;
	border-radius: 30px 30px 0 0;
	position: relative;
	z-index: 990;
}

.footer-contents {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 50px;
	padding: 50px 0;
}

.footer-logo {
	width: 154px;
	height: auto;
	aspect-ratio: 154 / 102;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	transition: all ease 0.33s;
}
.footer-logo:hover {
	opacity: 0.6;
}
.footer-copy {
	width: 100%;
	text-align: center;
	font-size: 14px;
	color: #fefefe;
}

@media screen and (max-width: 999px) {
	footer {
		padding: 0 7.69%;
		border-radius: 15px 15px 0 0;
	}
	.footer-contents {
		gap: 30px;
		padding: 30px 0 20px;
	}
}

/* Search area */
.search-select-area {
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
	left: 0;
	right: 0;
	position: absolute;
	top: -75px;
	background: #f59e97;
	border-radius: 15px;
	color: #fff;
	padding: 37px 50px;
}
.search-select-flex {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
}
.search-select-ttl {
	width: 120px;
	display: flex;
	flex-flow: column;
	gap: 20px;
	align-items: flex-start;
	flex-shrink: 0;
}
.search-select-ttl > p {
	width: 100%;
	font-size: 30px;
	font-weight: bold;
}
.search-select-ttl > span {
	width: 100%;
	font-size: 14px;
	font-weight: bold;
}
.search-select-group {
	width: 100%;
	display: flex;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
 align-content: center;
}
.search-select-group > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 10px;
	align-items: flex-start;
}
.search-select-group > div > p {
	font-size: 16px;
	font-weight: bold;
}
.search-select-group > button{
 width: 400px;
 border: none;
 background-color: #e35c51;
 color: #fff;
 font-weight: 600;
 border-radius: 10px;
 font-size: 17px;
 letter-spacing: 0.4rem;
}
.search-select-box {
	width: 100%;
	display: flex;
	align-items: center;
	height: 50px;
}
.search-select-box > select {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 5px;
 color: #444;
 padding: 0 10px;
}
.search-select-box > select:focus {
	outline: none;
	border: none;
}
.search-select-box > button {
	width: 80px;
	height: 100%;
	background: #e35c51;
	border: none;
	flex-shrink: 0;
	border-radius: 0 5px 5px 0;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}

@media screen and (max-width: 1200px) {
	.search-select-area {
		padding: 30px;
	}
	.search-select-box > button {
		width: 65px;
		font-size: 14px;
	}
	.search-select-ttl > p {
		font-size: 24px;
	}
}
@media screen and (max-width: 999px) {
	.search-select-area {
		width: 84.6%;
		top: -50px;
		padding: 20px;
	}
	.search-select-flex {
		gap: 15px;
		flex-flow: column;
	}
	.search-select-ttl {
		width: 100%;
		gap: 10px;
		align-items: center;
		text-align: center;
	}
	.search-select-ttl > p {
		font-size: 18px;
	}
	.search-select-ttl > span {
		font-size: 12px;
	}
	.search-select-group {
		grid-template-columns: repeat(1, 1fr);
		gap: 15px;
  display: grid;
	}
 .search-select-group > button{
  width: 100%;
  padding: 10px;
  font-size: 17px;
  letter-spacing: 0.5rem;
 }
	.search-select-group > div > p {
		font-size: 14px;
	}
	.search-select-box {
		height: 40px;
	}
}

/* venue list */
.venue-list {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 20px;
	row-gap: 67px;
}
.card-venue {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 10px;
	align-items: center;
	overflow: hidden;
	position: relative;
}
.card-venue > figure {
	width: 100%;
	height: auto;
	aspect-ratio: 320 / 200;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: relative;
	z-index: 0;
	border-radius: 10px;
}
.card-venue > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 10px;
}
.card-venue > div .txt-link {
	width: 100%;
	font-weight: bold;
	font-size: 18px;
}
.venue-tags {
	width: 100%;
	display: flex;
	gap: 5px;
	align-items: center;
	flex-wrap: wrap;
}
a.tag-venue {
	width: auto;
	font-size: 13px;
	font-weight: bold;
	background: #f0f0f0;
	padding: 6px;
	border-radius: 5px;
	transition: all ease 0.33s;
}
.tag-venue:hover {
	color: #fff;
	background: #e35c51;
}

@media screen and (max-width: 1200px) {
	.venue-list {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 999px) {
	.venue-list {
		grid-template-columns: repeat(2, 1fr);
		row-gap: 27px;
	}
	.card-venue {
		gap: 15px;
	}
	.card-venue > figure {
		aspect-ratio: 330 / 186;
	}
	.card-venue > div {
		gap: 15px;
	}
}
@media screen and (max-width: 768px) {
	.venue-list {
		grid-template-columns: repeat(1, 1fr);
		row-gap: 27px;
	}
}

/*---------- ページネーション ----------*/
.wp-pagenavi {
	margin: 40px auto;
	font-size: 12px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #77a0d1;
}
.wp-pagenavi a {
    color: #77a0d1;
}
.wp-pagenavi span.current,
.wp-pagenavi a.page {
	margin: 0 10px 0 0;
	box-sizing: border-box;
	justify-content: center;
	width: 60px;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9f5f3;
    border-radius: 999px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    transition: all ease 0.33s;
    text-align: center;
	color: #E35C51;
}
.wp-pagenavi span.current {
    border: none;
    background: #E35C51;
    color: #fff;
}
.wp-pagenavi a.page:hover {
    background: #E35C51;
    color: #fff;
}
.wp-pagenavi .first,
.wp-pagenavi .extend {
    margin-right: 10px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    margin: 0 10px 0 0;
    box-sizing: border-box;
    justify-content: center;
    width: 60px;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f9f5f3;
    border-radius: 999px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    transition: all ease 0.33s;
    text-align: center;
    color: #E35C51;
}
.sec-footer{
 width: 100%;
 display: flex;
 flex-flow: column;
 gap: 50px;
 align-items: center;
 position: relative;
 padding: 0 6.94%;
 padding-bottom: 80px;
}
.sec-footer .sec-inner{
 border: solid 3px #e35c51;
 border-radius: 10px;
 padding: 50px 90px;
 text-align: center;
 display: grid;
 gap: 20px;
}
.sec-footer .sec-inner > p:first-child{
 width: 100%;
 font-size: 30px;
 font-weight: bold;
 color: #e35c51;
 text-align: center;
 letter-spacing: 0.1rem;
}
.sec-footer .sec-inner ul{
 display: flex;
 justify-content: center;
 gap: 50px;
}
.sec-footer .sec-inner > p:last-child{
 font-size: 17px;
 font-weight: 500;
 line-height: 1.8;
}
.sec-footer .sec-inner ul li a{
 display: block;
 width: 100%;
 min-width: 300px;
 font-size: 20px;
 padding: 20px;
 filter: drop-shadow(0px 0px 5px rgb(0 0 0 / 15%));
 border-radius: 999px;
 color: #fefefe;
 transition: all ease 0.33s;
 font-weight: 500;
 letter-spacing: 0.05rem;
}
.sec-footer .sec-inner ul li:nth-child(1) a{
 background: #3cc486;
}
.sec-footer .sec-inner ul li:nth-child(1) a:hover{
 background: #63cf9e;
}
.sec-footer .sec-inner ul li:nth-child(2) a{
 background: #ea5963;
}
.sec-footer .sec-inner ul li:nth-child(2) a:hover{
 background: #ee7a82;
}
@media screen and (max-width: 768px) {
 .sec-footer{
  padding-bottom: 40px;
 }
 .sec-footer .sec-inner{
  padding: 20px;
  display: block;
 }
 .sec-footer .sec-inner > p:first-child{
  font-size: 18px;
 }
 .sec-footer .sec-inner ul{
  display: block;
  margin: 20px 0;
 }
 .sec-footer .sec-inner ul li:first-child{
  margin: 0 0 15px;
 }
 .sec-footer .sec-inner ul li a{
  min-width: unset;
 }
 .sec-footer .sec-inner > p:last-child{
  font-size: 15px;
  text-align: left;
 }
}
.search-venue-cont .thumbnail .slick-slide{
 margin: 0 5px;
}
@media screen and (max-width: 768px) {
 .search-venue-cont .container{
  max-width: none;
 }
}