@charset "UTF-8";
/* media query : mobile */
@media screen and (max-width:768px) {
}
/* media query : desktop */
@media screen and (min-width:769px) {
}
/* media query : tablet */
@media screen and (min-width:769px) and (max-width:1024px){
}
/*==============================================================
6.0 Archive
--------------------------------------------------------------*/
/* archive-title
--------------------------------------------------------------*/
.archive-title .container {
	max-width: 100%;
}
/* archive-submenu
--------------------------------------------------------------*/
.archive-submenu {
	padding-bottom: 3rem;
}
.archive-submenu__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.archive-submenu__list a {
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
    border-radius: var(--radius-big);
    line-height: 1.4;
    background: var(--white);
	gap: 0.3rem;
}
.archive-submenu__list .current_page_item a {
	pointer-events: none;
	background: var(--black);
	color: var(--white);
}
.archive-submenu__list i {
	display: block;
    text-transform: uppercase;
    font-weight: 600;
}
.archive-submenu__list span {
	display: block;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.archive-submenu__list li {
		width: calc(50% - 0.5rem);
	}
	.archive-submenu__list a {
		padding: 0.5rem;
	}
	.archive-submenu__list i {
		font-size: 1.2rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.archive-submenu__list {
		justify-content: center;
	}
	.archive-submenu__list i {
		font-size: 1.8rem;
	}
	.archive-submenu__list a {
		min-width: 14rem;
		padding: 0.75rem 1.5rem;
	}
}
/* archive-news
--------------------------------------------------------------*/
/* news-list */
.news-list {

}
.news-list {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}
.news-list a {
	display: flex;
	align-items: center;
}
.news-list .date {
	font-weight: 500;
	min-width: 8rem;
}
.news-list .category {
	border: 1px solid #000;
    text-align: center;
    padding: 0.5rem 0;
	line-height: 1.5;
	border-radius: var(--radius-small);
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.news-list a {
		gap: 1rem;
		flex-wrap: wrap;
	}
	.news-list .date {
		width: max-content;
	}
	.news-list .category {
		width: 50%;
	}
	.news-list h3 {
		font-size: 1rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.news-list a {
		gap: 2rem;
	}
	.news-list .category {
		min-width: 10rem;
	}
	.news-list h3 {
		font-size: 1.2rem;
	}
}	
/* news-card */

.news-card a {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.news-card .img {
	margin-top: -2rem;
    width: calc(100% + 5rem);
}
.news-card .info {
	width: 100%;
	display: flex;
    justify-content: space-between;
    align-items: center;
	margin: 1.5rem 0 1rem;
}
.news-card .category {
	border: 1px solid var(--black);
    padding: 0.2rem 1rem;
    border-radius: 5rem;
	font-weight: 600;
	font-size: 0.825rem;
}
.news-card .date {
	font-weight: 600;
}
.news-card h3 {
	line-height: 1.7;
    font-size: 1rem;
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.news-card li {
		margin: 0rem 1rem 1.5rem;
	}
	.news-card a {
		padding: 1.5rem;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.news-card li {
		margin: 0rem 2rem 2.5rem;
	}
}

/* shop-list
--------------------------------------------------------------*/
.page-shop__section .container {
	max-width: 100%;
}
.page-shop__section .h2 {
	text-align: left;
	margin-bottom: 4rem;
}
.page-shop__section .h2 i,
.page-shop__section .h2 h2 {
	text-align: left;
}
/* shop-list */
.shop-list {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}
.shop-list li {
	display: flex;
	border-radius: var(--radius-mid);
	overflow: hidden;
}
.shop-list h3 {
	margin-bottom: 1rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}
.shop-list .eng {
	margin-bottom: 2rem;
	color: var(--black);
	font-weight: 500;
	line-height: 1.5;
}
.shop-detail {
	width: 100%;
	border-top: 1px solid var(--black);
}
.shop-detail tr {
	display: flex;
	border-bottom: 1px solid var(--black);
	padding: 1rem 0;
}
.shop-detail th {
	font-weight: 600;
	text-align: left;
}
.shop-detail td i {
	display: block;
}
.shop-detail td .map {
	display: block;
	max-width: 2rem;
}
.shop-map {
	margin-top: -1rem;
}
.shop-map .shop-map__frame {
	position: relative;
	width: 100%;
}
.shop-map .shop-map__frame iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: grayscale(100%);
    -webkit-filter: grayscale(100%); /* Safari（iPhoneなど）対策 */
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.shop-list {
		gap: 2rem;
	}
	.shop-list li {
		flex-direction: column;
	}
	.shop-list .txt {
		padding: 1.5rem;
	}
	.shop-detail th {
		width: 32%;
	}
	.shop-detail td {
		width: 68%;
	}
	.shop-map .shop-map__frame {
		aspect-ratio: 16 / 9;
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.shop-list {
		gap: 4rem;
	}
	.shop-list .img {
		width: 50%;
	}
	.shop-list .txt {
		width: 50%;
		padding: 3rem;
	}
	.shop-detail th {
		width: 25%;
	}
	.shop-detail td {
		width: 75%;
	}
	.shop-map .shop-map__frame {
		aspect-ratio: 3 / 1;
	}
}
/* menu-list
--------------------------------------------------------------*/
.page-menu__section .container {
	max-width: 100%;
}
.page-menu__section .h2 {
	text-align: left;
	margin-bottom: 4rem;
}
.page-menu__section .h2 i,
.page-menu__section .h2 h2 {
	text-align: left;
}
/* menu-list */
.menu-list {
	display: grid;
	gap: 3rem;
}
.menu-list li {
	background: var(--white);
	border-radius: var(--radius-mid);
	overflow: hidden;
}
.menu-list .detail {
	padding: 2rem;
}
.menu-list .category {
	border: 1px solid var(--black);
    display: inline-block;
    padding: 0.6rem 1rem;
    line-height: 1;
    margin-bottom: 1rem;
    border-radius: var(--radius-small);
}
.menu-list .eng {
	margin-bottom: 0.5rem;
    color: var(--black);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
}
.menu-list h3 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 1px;
}
.menu-list .price {
	color: var(--black);
    font-weight: 500;
    line-height: 1.5;
    text-align: right;
    font-size: 1.2rem;
}
.menu-list .desc {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid currentColor;
	color: var(--black);
	font-weight: 400;
	margin-bottom: 1rem;
}
.menu-list .etc {
	background: var(--bgc);
	font-size: 0.825rem;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-small);
}
/* media query : mobile */
@media screen and (max-width:768px) {
	.menu-list {
		grid-template-columns: repeat(1, 1fr);
	}
}
/* media query : desktop */
@media screen and (min-width:769px) {
	.menu-list {
		grid-template-columns: repeat(3, 1fr);
	}
}