@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');


/*****************************
リセット
*****************************/
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:where([hidden]:not([hidden="until-found"])) {
	display: none !important;
}

:where(html) {
	-webkit-text-size-adjust: none;
	color-scheme: dark light;
	tab-size: 2;
	scrollbar-gutter: stable;
	interpolate-size: allow-keywords;
	line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
	overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
	:where(html:focus-within) {
		scroll-behavior: smooth;
	}
}

:where(body) {
	line-height: inherit;
	font-family: system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}

:where(button) {
	all: unset;
}

:where(input, button, textarea, select) {
	font: inherit;
	color: inherit;
	letter-spacing: inherit;
	word-spacing: inherit;
	font-feature-settings: inherit;
	font-variation-settings: inherit;
}

:where(textarea) {
	resize: vertical;
	resize: block;
}

:where(button, label, select, summary, [role="button"], [role="option"]) {
	cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + :disabled)) {
	cursor: not-allowed;
}

:where(a) {
	color: inherit;
	text-underline-offset: 0.2ex;
}

:where(ul, ol) {
	list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
	display: block;
}

:where(img, picture, svg, video) {
	max-inline-size: 100%;
	block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
	overflow-wrap: break-word;
}

:where(h1, h2, h3) {
	line-height: calc(1em + 0.5rem);
	text-wrap: balance;
}

:where(hr) {
	border: none;
	border-block-start: 1px solid;
	color: inherit;
	block-size: 0;
	overflow: visible;
}

:where(dialog, [popover]) {
	border: none;
	background: none;
	color: inherit;
	inset: unset;
	max-width: unset;
	max-height: unset;
	overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
	display: none !important;
}

:where(:focus-visible) {
	outline: 3px solid CanvasText;
	box-shadow: 0 0 0 5px Canvas;
	outline-offset: 1px;
}

:where(:focus-visible, :target) {
	scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
	clip-path: inset(50%) !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden !important;
	position: absolute !important;
	white-space: nowrap !important;
	border: 0 !important;
	user-select: none !important;
}

/**********************
共通設定
***********************/
body {
	background-color: #fff;
    color: #000;
    font-size: clamp(1rem, 0.8rem + 1vw, 1.25rem);
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.3;
}

a{
	text-decoration: none;
}

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

.header-inner{
max-width: 1200px;
height:100px;
margin-left: auto;
margin-right: auto;
padding-left: 40px;
padding-right: 40px;
display: flex;
justify-content: space-between;
align-items: center;
}

.header-logo{
display: block;
width: 100px;
margin-top: 20px;
margin-bottom: 20px;
}
.site-menu ul{
display: flex;
}
.site-menu li{
margin-left: 20px;
margin-right: 20px;
}
.footer{
color: #ffffff;
background-color: #24211b;
padding-top: 30px;
padding-bottom: 15px;
display: flex;
flex-direction: column;
align-items: center;
}
.footer-logo{
display: block;
width: 200px;
margin-top: 90px;
}
.copyright{
font-size: 14px;font-weight: bold;
margin-top: 90px;
}
.box1-5 {
    margin: 0 auto 2em;
    padding: 2em;
    background-color:#E5F2F1;
}

.box1-5 p {
    margin: 0;
    text-align: center;
    line-height: 2.0;
}

#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
}

#page-top a{
	width: 2.5rem;
	height: 2.5rem;
	display: block;
	border-radius: 50%;
	border: 1px solid;
	background-color: #fff;
	position: relative;
	box-shadow: .3em .3em 1em rgba(0,0,0,.3);
	transition: all .3s;
}

#page-top a::before {
	content: '';
	width: 0.65rem;
	height: 0.65rem;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(-45deg);
	transform-origin: top right;
	position: absolute;
	top: 35%;
	right: 50%;
	box-sizing: border-box;
}

#page-top a:hover{
	background-color: #736e62;
	color: #fff;
}

/******************
ヘッダー
******************/
header.hide {
	transform:translateY(-110px);
}

header{
	position: fixed;
	top:0;
	left:0;
	right:0;
	background-color: #ffffff;
	z-index: 50;
	box-shadow: 0 3px 6px rgba(0,0,0,0.1);
	transition: all .5s;
}

@media (max-width:800px) {
	header{
		height: 50px;
	}
	.site-menu ul{
		display: block;
		text-align: center;
	}

	.site-menu li{
		margin-top: 20px;
	}

	.header-inner{
		padding-left:20px;
		padding-right: 20px;
		height:100%;
		position: relative;
	}

	.header-logo{
		width:70px;
	}

	.header-site-menu{
		display: none;
	}

	.main{
		padding-top: 50px;
	}

	.footer-logo{
		margin-top: 60px;
	}

	.copylight{
		margin-top: 50px;
	}

	.box1-5 {
    margin: 0 auto 2em;
    padding: 2em;
    background-color:#E5F2F1;
}
}

@media (min-width:801px) {
	header{
		height: 100px;
	}
	.header-site-menu{
		display: block;
		font-size: 1rem;
	}

	.Header__overlay,
	.Header__burger,
	.Header__burger__toggle{
		display: none;
	}

	main{
		padding-top: 100px;
	}

}
/******************
ハンバーガーテスト
*******************/

.drawer-button {
	position: relative;
	z-index: 100;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 8px;
	touch-action: manipulation;
	cursor: pointer;
	background-color: transparent;
	border: none;
	border-radius: 8px;
}

@media (min-width:801px) {
	.drawer-button {
		display: none;
	}
}

.drawer-button__icon {
	position: relative;
	width: 32px;
	height: auto;
	aspect-ratio: 1;
}

.drawer-button__bar {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #000;
	border-radius: 9999px;
}

.drawer-button__bar:nth-child(1) {
	transform: translate(-50%, calc(-50% - 8px));
	transition: transform 300ms ease;
}

.drawer-button__bar:nth-child(2) {
	transform: translate(-50%, -50%);
	transition: opacity 300ms ease;
}

.drawer-button__bar:nth-child(3) {
	transform: translate(-50%, calc(-50% + 8px));
	transition: transform 300ms ease;
}

.drawer-button__bar:nth-child(1):where(.is-open *) {
	transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-button__bar:nth-child(2):where(.is-open *) {
	opacity: 0;
}

.drawer-button__bar:nth-child(3):where(.is-open *) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-button__text {
	font-size: 10px;
	line-height: 1;
}

.drawer-nav[hidden] {
	display: none;
}

.drawer-nav {
	position: fixed;
	inset: 0;
	z-index: 99;
	background: transparent;
}

.drawer-nav__inner {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: 80%;
	max-width: 400px;
	height: 50vh;
	min-height: 500px;
	padding: 20% 0 10%;
	background-color: #736e62;
	opacity: 1;
	transform: translate3d(100%, 0, 0);
	transition: transform 300ms ease, opacity 300ms ease;
}

.drawer-nav__inner:where(.is-open *) {
	transform: unset;
}

.is-vertical :where(.drawer-nav__inner) {
	transform: translate3d(0, 100%, 0);
}

.is-open.is-vertical :where(.drawer-nav__inner) {
	transform: unset;
}

.is-fade :where(.drawer-nav__inner) {
	opacity: 0;
}

.is-open.is-fade :where(.drawer-nav__inner) {
	opacity: 1;
}

.drawer-nav__menu {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.drawer-nav__item{
	width: 85%;
	height: auto;
	text-align: center;
	margin: 0 auto;
	border-bottom: 1px dotted #bab8b5;
}
.drawer-nav__link {
	display: block;
	padding: 12px 16px;
	line-height: 1.4;
	color: #fff;
	text-decoration: none;
}

.drawer__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.32);
	opacity: 0;
	transition: opacity 300ms ease;
	transition: all 0.2s ease-in;
}

.is-open :where(.drawer__overlay) {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.drawer-button__bar,
	.drawer-nav__inner,
	.drawer__overlay {
		transition: none !important;
	}
}

.is-open :where(.drawer__overlay) {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.drawer-button__bar,
	.drawer-nav__inner,
	.drawer__overlay {
		transition: none !important;
	}
}
/**********************
リンクボタン（Google MAPと企業WEBサイト）
***********************/
.link-btn{
	width: 80%;
	max-width: 300px;
	font-size: 1rem;
	padding: .5rem;
	display: block;
	margin: 2rem auto;
	background: linear-gradient(45deg, rgba(255, 175, 165, 1), rgba(255, 175, 165, 1), rgba(100, 216, 243, 1), rgba(175, 236, 128, 1), rgba(255, 210, 80, 1), rgba(245, 146, 176, 1), rgba(151, 130, 255, 1)) 0 0 / 100% no-repeat;
	border-radius: 100rem;
	text-align: center;
	color: #000;
	transition: all .3s;
}

.link-btn:hover{
	opacity: .7;
}

/**********************
カテゴリ色
***********************/
.category-men-only{
  background-color: #ff00d4;
}

.category-men-only_2{
  background-color: #ff0088;
}


.category-women-only{
  background-color: #009fc7;
}


.category-women-only_2{
  background-color: #0095e6;
}


.category-mix{
  background-color: #8ed402;
}

.category-depends{
  background-color: #8c00f7;
}

.btn--border-solid {
  color: #fff;
  font-size: .7em;
  font-weight: bold;
  text-shadow: 0 0 1px #000;
  line-height: 2;
  box-decoration-break: clone;
  margin: auto;
	padding: .5em;
}

/**********************
ページネーション
***********************/
ul.page-numbers{
	display: flex;
	justify-content: center;
	margin: 5% auto 10%;
}

.page-numbers li{
	display: inline-block;
	min-width: calc(1.2rem + 20px);
	border: .5px solid;
	font-size: 1rem;
	transition: all .2s ease;
}

.page-numbers li:hover{
	background-color: #736e62;
}

.page-numbers li:hover > a{
	color: #fff;
}

.page-numbers li > span.current{
	display: flex;
	justify-content: center;
	padding: 10px;
	width: 100%;
	background: #736e62;
	color: #fff;
}

.page-numbers li > a{
	display: flex;
	justify-content: center;
	padding: 10px;
	width: 100%;
	background: transparent;
	color: #000;
}

/**********************
TOP
***********************/
@media (max-width:800px){
.first-view{
	aspect-ratio: 1/1;
	background-image: url("../images/top202510.jpg");
	align-items: flex-start;
	background-position: center;
	background-size: cover;
}

.lead{
padding-left: 20px;
padding-right: 20px;
}
.lead p{
text-align: center;
line-height: 2.0;
}

}

.first-view video{
	width: 100%;
	height: 100%;
	object-fit: cover;

}

@media (min-width:801px){
	.first-view{
		height:calc(100vh - 110px);
		background-image: url("../images/top202510.jpg");
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		display: flex;
		align-items: center;
	}

	.lead{
		max-width: 1200px;
		margin: 40px auto;
	}

	.lead p{
		text-align: center;
		line-height: 2.0;
	}
}

.link-btn-area{
text-align: center;
margin-top: 20px;
margin-bottom: 40px;
}

.link-button-x{
background-color: #000000;
display: inline-block;
min-width: 220px;
line-height: 48px;
padding: .5rem 1rem .5rem 0;
border-radius: 100rem;
color:#FFFFFF;
transition: all .3s;
}

.link-button-x img{
	display: inline-block;
}

.link-button-x:hover{
background-color: #444444;
}



/**********************
イベント
***********************/
ul.event-list{
	width: 930px;
    max-width: 90%;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 90%);
    column-gap: 70px;
    grid-row-gap: 30px;
    justify-content: center;
}

ul.event-list li{
	margin-bottom: 15%;
}

ul.event-list li h3{
	width: 95%;
	margin: 1rem auto;
	padding: 1em;
	border-top: 1px dotted;
	border-bottom: 1px dotted;
	line-height: 1.3;
}

ul.event-list li p{
	line-height: 1.5;
}

ul.event-list li p.schedule{
	margin: 1em 0;
}

ul.event-list li p.schedule span{
	display: inline-block;
	width: 100%;
	margin-bottom: 1em;
}

ul.event-list li p.schedule span strong{
	background-color: #968123;
	color: #fff;
	font-weight: bold;
	padding: .5em;
	margin-right: 1em;
	font-size: .8em;
}

ul.event-list li h5{
	color: #968123;
	margin-top: 1.5em;
	margin-bottom: .5em;
}

.title{
height:310px;
background-image:url("../images/bg-event.jpg");
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #FFFFFF;
text-shadow: 1px 1px 10px #4b2c14;
}

.title h1{
font-size: 32px;
font-weight: bold;
}

.title p{
font-size: 18px;
font-weight: bold;
margin-top: 15px;
}

.feature{
width: 930px;
max-width: 90%;
margin-top: 75px;
margin-left: auto;
margin-right: auto;
}

.feature-text{
max-width: 900px;
}

.feature-text h2{
font-size: 24px;
font-weight: bold;
line-height: 30px;
}

.feature-text p{
font-size: 17px;
line-height: 2.0;
margin-top: 25px;
}

.event-content a{
	text-decoration: underline;
	color: #c40404;
}

/**********************
参加店舗
***********************/
.title{
height:310px;
background-image:url("../images/bg-members.jpg");
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #FFFFFF;
text-shadow: 1px 1px 10px #4b2c14;
}

.title h1{
font-size: 32px;
font-weight: bold;
}

.title p{
font-size: 18px;
font-weight: bold;
margin-top: 15px;
}

.shop-list{
width: 930px;
max-width: 90%;
margin-top: 75px;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
display: grid;
grid-template-columns: repeat(auto-fit,45%);
column-gap: 5%;
justify-content: center;
}

.shop-list h3 {
	margin: 2em auto 1em;
	font-weight: bold;
}

.shop-list .price {
	margin-top: 15px;
	font-size: 12px;
	line-height: 1.5;
}

.shop-list .price span{
	display: inline-block;
	width: 100%;
}

.shop-list li{
position: relative;
list-style-type: none;
border-bottom: 1px solid #ababab;
margin-bottom: 3%;
}

.shop-list .price span a{
	text-decoration: underline;
}

.map{
width: 930px;
max-width: 90%;
margin-top: 75px;margin-left: auto;margin-right: auto;
}

.map iframe{
display: block;
width: 100%;
height: 400px;
margin-top: 25px;
}

.feature-text{
max-width: 900px;
}

.feature-text h2{
font-size: 22px;
font-weight: bold;
line-height: 30px;
}

.feature-text p{
font-size: 16px;
line-height: 2.0;
margin-top: 25px;
}

@media (max-width: 800px) {
.map{
width: 500px;margin-top: 45px;
}
.shop-list{
margin-top: 45px;
row-gap:40px;
}
}

/**********************
協賛企業
***********************/
.title{
height:310px;
background-image:url("../images/bg-sponsors.jpg");
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #FFFFFF;
text-shadow: 1px 1px 10px #4b2c14;
}
.title h1{
font-size: 32px;
font-weight: bold;
}
.title p{
font-size: 18px;
font-weight: bold;
margin-top: 15px;
}
.s-list{
width: 930px;
max-width: 90%;
margin-top: 75px;
margin-left: auto;
margin-right: auto;
margin-bottom: 50px;
display: grid;
grid-template-columns: repeat(auto-fit,45%);
column-gap: 5%;
justify-content: center;
}

.s-list h3 {
	margin-top: 20px;
	font-weight: bold;
	border-bottom: 1px solid;
	padding-bottom: 5px;
}

.s-list li > p {
	font-size: 16px;
	line-height: 1.7;
	margin-top: 10px;
}

.s-list .ex {
	margin-top: 15px;
	font-size: 12px;
	line-height: 1.5;
}

.s-list li{
position: relative;
list-style-type: none;
border-bottom: 1px solid #ababab;
margin-bottom: 3%;
}

.feature{
width: 930px;
max-width: 90%;
margin-top: 75px;
margin-left: auto;
margin-right: auto;
}

.feature-text{
max-width: 900px;
}

.feature-text h2{
font-size: 22px;
font-weight: bold;
line-height: 30px;
}

.feature-text p{
font-size: 16px;
line-height: 2.0;
margin-top: 25px;
}

.feature-text .sponsor-h2{
border-bottom: solid 3px #ffc778;
position: relative;
padding-bottom: 0.6em;
}
.feature-text .sponsor-h2:after {
position: absolute;
content: " ";
display: block;
border-bottom: solid 3px skyblue;
bottom: -3px;
width: 50%;
}


@media (max-width: 800px) {
.s-list{
width: 90%;
margin-top: 45px;
row-gap:40px;
}
}

/**********************
404
***********************/
.section_404{
	padding: 5% 10%;
}

.h2_404{
	text-align: center;
	margin-bottom: 5%;
}

.p_404{
	text-align: center;
	margin-bottom: 5%;
}

.a_404{
	border: 1px solid;
	text-decoration: underline;
	display: block;
	width: fit-content;
	margin: 0 auto;
	padding: .5em 1em;
	transition: all .3s ease;
}

.a_404:hover{
	opacity: .7;
}