@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/yakuhanjp@4.0.1/dist/css/yakuhanjp_s.css');

/* ========== ========== ==========
	Base
========== ========== ========== */

:root {
	--main-color: #0f2350;
	--sub-color : #e50012;
	--base-color: #f4f5f5;
}

/* ========== ========== ==========
	Base
========== ========== ========== */

html, body {
	margin: 0;
	padding: 0;
}
.l-wrapper, .l-wrapper * {
	box-sizing: border-box;
	color: #222222;
	font-family: YakuHanJPs, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	outline: none;
	word-break: break-all;
}
a:link, a:hover, a:active, a:focus, a:visited {
	text-decoration: none;
	transition: all 0.2s;
}
h1, h2, h3, h4, h5, h6{
	margin: 0;
	padding: 0;
}
img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: bottom;
}
img.contain {
	-o-object-fit: contain;
	object-fit: contain;
}
.l-wrapper span, .l-wrapper small, .l-wrapper strong {
	display: inline-block;
    margin: 0;
    padding: 0;
	color: inherit;
	font-size: inherit;
}
ol, ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
p {
	margin: 0;
	padding: 0;
}
p:not(:first-of-type) {
	margin-top: 1em;
}
hr {
	margin: 4em 0;
	border-top: 2px dotted #222222;
}

@media only screen and (max-width: 1000px) {
	.l-wrapper, .l-wrapper * {
		font-size: 1.5vw;
	}
}
@media only screen and (max-width: 720px) {
	.l-wrapper, .l-wrapper * {
		font-size: 2.0vw;
	}
}
@media only screen and (max-width: 480px) {
	.l-wrapper, .l-wrapper * {
		font-size: 2.4vw;
	}
}



/* ========== ========== ==========
	Layout
========== ========== ========== */

.l-wrapper {
	width: 100%;
    min-height: 100vh;
	margin: 0 auto;
	padding: 0;
	position: relative;
}
.l-header {
	width: 100%;
	margin: 0 auto;
	padding: 1em 0;
	background-color: var(--main-color);
}
.l-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.l-header__logo {
	width: 10em;
}
.l-header__gnav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 2em;
}
.l-breadcrumb {
	padding: 1em 0;
	background-color: var(--base-color);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
	white-space: nowrap;
}
.l-main {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}
.l-main--cookie {
	background-color: var(--base-color);
}
.l-main__mv {
	padding: 2em 0;
	/*background: #ffffff url("../images/bg_whiteday_cookie.png") repeat;*/
}
.l-main__inner {
	padding: 0;
}
.l-footer {
	width: 100%;
	margin: 0 auto;
	padding: 1em 0;
	background-color: var(--main-color);
	position: absolute;
	bottom: 0;
}
.l-pageTop-btn {
	display: none;
	width: 60px;
	height: 60px;
	position: fixed;
	right: 1em;
	bottom: 1em;
}
.l-container {
	max-width: 1000px;
	margin: 0 auto;
}

.l-column-1 {	width: 100%;	}
.l-column-2 {	width: 48%;		}
.l-column-3 {	width: 32%;		}
.l-column-4 {	width: 23.5%;	}

@media only screen and (max-width: 1000px) {
	.l-header {
		padding: 1em 2em;
	}
	.l-breadcrumb {
		padding: 1em 2em;
	}
	.l-main__mv {
		padding: 0;
	}
	.l-footer {
		padding: 1em 2em;
	}
}
@media only screen and (max-width: 480px) {
	.l-column-2 {
		width: 100%;
	}
}



/* ========== ========== ==========
	Common
========== ========== ========== */

.l-wrapper .red {
	color: #dd1232;
}
.l-wrapper .bold {
	font-weight: bold;
}
.l-wrapper .ttl {
	font-weight: bold;
}
.l-wrapper .small {
	font-size: 0.8em;
}
.l-wrapper .limit {
	color: #e4007f;
}
.l-wrapper .price {
	margin-top: 0;
	font-weight: bold;
	text-align: right;
}
.l-wrapper .price::before {
	content: "……";
	margin-right: 0.5em;
}


.l-wrapper .red_t {
	padding: 0 0.5em;
	background-color: #dd2511;
	color: #ffffff;
	border:solid 1px #dd2511;
	font-size: 0.9em;
	margin-top:0.5em;
	margin-right:0.3em;
}

.l-wrapper .area {
	padding: 0 0.5em;
	background-color: #fff;
	color: #a7711b;
	border:solid 1px #a7711b;
	font-size: 0.9em;
	margin-top:0.5em;
	margin-right:0.3em;
	font-weight:600;
}

.l-wrapper .new_itm {
	padding: 0 0.5em;
	background-color: #fff;
	color: #000;
	border:solid 1px #000;
	font-size: 0.9em;
	margin-top:0.5em;
	margin-right:0.3em;
	font-weight:600;
}


/* ========== ========== ==========
	Button
========== ========== ========== */

.c-btn {
	margin-top: 1em;
}
.c-btn__item {
	display: block;
	padding: 1em 2em 1em 1em;
	background-color: var(--main-color);
	border: 2px solid var(--main-color);
	border-radius: 0.5em;
	color: #ffffff;
	font-weight: bold;
	text-align: center;
	position: relative;
}
.c-btn__item--orange {
	background-color: #e46d13;
	border: 2px solid #e46d13;
	font-size: 1.5em;
}
.c-btn__item--orange .sub {
	font-size: 0.75em;
}
a.c-btn__item::after {
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	border-top: 4px solid #ffffff;
	border-right: 4px solid #ffffff;
	position: absolute;
	right: 1em;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
a.c-btn__item:hover {
	color: #ffffff;
	opacity: 0.5;
}



/* ========== ========== ==========
	Lede
========== ========== ========== */

.c-lede {
	margin-bottom: 2em;
	font-size: 1.25em;
	font-weight: bold;
	text-align: center;
}



/* ========== ========== ==========
	pageTop Button
========== ========== ========== */

.c-pageTop-btn {
	display: block;
	background-color: var(--main-color);
	border-radius: 100%;
	border: 2px solid #ffffff;
	overflow: hidden;
}



/* ========== ========== ==========
	Header Global Navigation
========== ========== ========== */

.c-header-gnav__list {
	display: flex;
	justify-content: flex-end;
}
.c-header-gnav__item {
	margin-left: 2em;
}
a.c-header-gnav__link {
	color: #ffffff;
	border-bottom: 2px solid transparent;
}
a.c-header-gnav__link:hover {
	border-bottom: 2px solid #ffffff;
}
a.c-header-gnav__link--current {
	border-bottom: 2px solid #ffffff;
}
@media only screen and (max-width: 720px) {
	.c-header-gnav__list {
		display: none;
	}
}



/* ========== ========== ==========
	Breadcrumb
========== ========== ========== */

.c-breadcrumb__list {
	display: flex;
	justify-content: flex-start;
}
.c-breadcrumb__item:not(:first-of-type)::before {
	content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
	margin: 0 1em 0 0.5em;
    border-color: var(--main-color);
    border-style: solid;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg) translateY(-50%);
}
.c-breadcrumb__item:last-child {
	padding-right: 1em;
}
.c-breadcrumb__link {
	color: var(--main-color);
}
.c-breadcrumb__link:hover {
	opacity: 0.5;
}



/* ========== ========== ==========
	Index Main Visual
========== ========== ========== */

.c-index-mv .yokoku {
	padding: 1em;
	background-color: #cc1720;
	color: #ffffff;
	font-size: 1.25em;
	font-weight: bold;
	line-height: 1;
	text-align: center;
}



/* ========== ========== ==========
	Copyright
========== ========== ========== */

.c-copyright {
	color: #ffffff;
	text-align: center;
}


/* ========== ========== ==========
	#slideshow_inner
========== ========== ========== */

#slideshow_inner {
	/*width:100%;
	height:auto;
	text-align: center;
	position: relative;
	background-color:#f9f3f3;*/
	display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  text-align: center;
  /*background-color:#fcf2f3;*/
}


#slideshow_inner .slideshow {
   position: relative;
   width:  960px; /* 画像の横幅に合わせて記述 */
   height: 1160px;
   text-align:center;
   margin:0 auto;
   /*height: aut; /* 画像の高さに合わせて記述 */
}
#slideshow_inner .slideshow img {
   position: absolute;
   top: 0;
   left:0;
   z-index: 8;
   opacity: 0.0;
   /*border-radius: 0 0 20% 20%;*/
}
#slideshow_inner .slideshow img.active {
   z-index: 10;
   opacity: 1.0;
}
#slideshow_inner .slideshow img.last-active {
   z-index: 9;
}

@media only screen and (max-width: 960px) {
	#slideshow_inner .slideshow {
   position: relative;
   width:  100%; /* 画像の横幅に合わせて記述 */
   height: 1160px;
   text-align:center;
   margin:0 auto;
   height: aut; /* 画像の高さに合わせて記述 */
}
}


@media only screen and (max-width: 680px) {
	#slideshow_inner .slideshow {
   position: relative;
   width:  100%; /* 画像の横幅に合わせて記述 */
   height: 585px;
   text-align:center;
   margin:0 auto;
   height: aut; /* 画像の高さに合わせて記述 */
}
}

/*@media only screen and (max-width: 480px) {
	#saiji_wrap #saiji_body #saiji_main #slideshow_inner .slideshow {
   position: relative;
   width:  100%; /* 画像の横幅に合わせて記述 */
   /*height: 598px;
   text-align:center;
   margin:0 auto;
   height: aut; /* 画像の高さに合わせて記述 */
/*}
}




/* ========== ========== ==========
	Section
========== ========== ========== */

.l-section {
	padding: 4em 0;
}
.l-section:nth-child(2n+1) {
	background-color: var(--base-color);
}
.l-section.l-section--event {
	background-color: #ffffff;
}
.l-section__inner > .ttl {
	margin-bottom: 1em;
	font-size: 2em;
	font-weight: bold;
	text-align: center;
}
.l-section__inner > .lede {
	font-size: 1.5em;
	font-weight: bold;
	text-align: center;
}
.l-section__inner > .lede:not(:first-of-type) {
	margin-top: 2em;
}
.l-section__inner > .lede .sub { 
	margin-right: 0.5em;
	padding: 0 0.25em;
	background-color: var(--main-color);
	color: #ffffff;
}
@media only screen and (max-width: 1000px) {
	.l-section {
		padding: 4em 2em;
	}
}
@media only screen and (max-width: 680px) {
	.l-section__inner > .lede {
		font-size: 1.25em;
	}
}




/* ========== ========== ==========
	Eatin Information
========== ========== ========== */

.c-eatin-info {
	padding: 1em;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	background-color: #ffffff;
	gap: 2em;
	border:solid 1px #CCC;
}
.c-eatin-info__img {
	max-width: 10em;
}
.c-eatin-info__txt {
	font-weight: bold;
}




/* ========== ========== ==========
	Chef Information
========== ========== ========== */

.c-chef-info {
	display: flex;
	flex-wrap: wrap;
	background-color: var(--base-color);
	border: 2px solid var(--base-color);
}
.l-section:nth-child(2n+1) .c-chef-info {
	background-color: #ffffff;
	border: 2px solid #ffffff;
}
.c-chef-info:not(:first-of-type) {
	margin-top: 4em;
}
.c-chef-info .c-chef-info__img {
	width: 32%;
}
.c-chef-info .c-chef-info__img img {
	object-position: 50% 50%;
}
.c-chef-info .c-chef-info__txt {
	width: 68%;
	padding: 2em;
}
.c-chef-info .c-chef-info__txt .logo {
	display: inline-block;
	height: 3.75em;
	text-align: left;
}
.c-chef-info .c-chef-info__txt .ttl {
	margin-top: 0.5em;
	color: var(--main-color);
	font-size: 1.5em;
	font-weight: bold;
}
.c-chef-info .c-chef-info__txt .ttl .sub {
	font-size: 0.75em;
}


.c-chef-info .c-chef-info__img2 {
	width: 7em;
	margin-right:1em;
}
.c-chef-info .c-chef-info__img2 img {
	display: inline-block;
	height: 7em;
	text-align: left;
	margin:1.5em;
}
.c-chef-info .c-chef-info__txt2 {
	width: 87%;
	padding: 2em;
}


@media only screen and (max-width: 480px) {
	.c-chef-info .c-chef-info__img {
		max-height: 30em;
	}
	.c-chef-info .c-chef-info__txt .logo {
		display: none;
	}
	.c-chef-info .c-chef-info__txt .ttl {
		margin-top: 0;
		font-size: 1.25em;
	}
}



/* ========== ========== ==========
	Item List
========== ========== ========== */

.c-item-list {
	margin-top: 2em;
	display: flex;
	flex-wrap: wrap;
}
.c-item-list .c-item-list__item {
	width: 32%;
	margin-right: 2%;
	background-color: #ffffff;
	border: 2px solid #222222;
	border-radius: 0.5em;
	overflow: hidden;
}
.c-item-list .c-item-list__item:nth-child(3n) {
	margin-right: 0;
}
.c-item-list .c-item-list__item:nth-child(n+4) {
	margin-top: 1.5em;
}
.c-item-list .c-item-list__txt {
	padding: 1em;
}
@media only screen and (max-width: 480px) {
	.c-item-list .c-item-list__item {
		width: 49%;
	}
	.c-item-list .c-item-list__item:nth-child(3n) {
		margin-right: 2%;
	}
	.c-item-list .c-item-list__item:nth-child(2n) {
		margin-right: 0;
	}
	.c-item-list .c-item-list__item:nth-child(n+3) {
		margin-top: 1.5em;
	}	
}


/* ========== ========== ==========
	Item List
========== ========== ========== */

.c-item-list .c-item-list__item2 {
	width: 49%;
	margin-right: 2%;
	background-color: #ffffff;
	border: 2px solid #222222;
	border-radius: 0.5em;
	overflow: hidden;
}
.c-item-list .c-item-list__item2:nth-child(3n) {
		margin-right: 2%;
	}
	.c-item-list .c-item-list__item2:nth-child(2n) {
		margin-right: 0;
	}
	.c-item-list .c-item-list__item2:nth-child(n+3) {
		margin-top: 1.5em;
	}	

@media only screen and (max-width: 680px) {
	.c-item-list .c-item-list__item {
		width: 49%;
	}
	.c-item-list .c-item-list__item:nth-child(3n) {
		margin-right: 2%;
	}
	.c-item-list .c-item-list__item:nth-child(2n) {
		margin-right: 0;
	}
	.c-item-list .c-item-list__item:nth-child(n+3) {
		margin-top: 1.5em;
	}	
}


/* ========== ========== ==========
	Item List
========== ========== ========== */

.c-item-list .c-item-list__item1 {
	width: 100%;
	background-color: #ffffff;
	border: 2px solid #222222;
	border-radius: 0.5em;
	overflow: hidden;
}
.c-item-list .c-item-list__item1:nth-child(n+2) {
		margin-top: 1.5em;
	}	




/* ========== ========== ==========
	Event List
========== ========== ========== */

.c-event-list .c-event-list__item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #ffffff;
	border: 2px solid #222222;
	border-radius: 0.5em;
	overflow: hidden;
}
.c-event-list .c-event-list__item:nth-child(n+2) {
	margin-top: 1.5em;
}
.c-event-list .c-event-list__img {
	width: 32%;
}
.c-event-list .c-event-list__txt {
	width: 68%;
	padding: 2em;
}
.c-event-list .c-event-list__txt .ttl {
	font-size: 1.25em;
	font-weight: bold;
}
.c-event-list .c-event-list__txt .ttl .sub {
	display: block;
}
@media only screen and (max-width: 480px) {
	.c-event-list .c-event-list__img {
		width: 100%;
	}
	.c-event-list .c-event-list__txt {
		width: 100%;
	}
}

/* ===== */


.c-event-list .c-event-list__item--btn {
	margin: 1.5em 0 3em;
	background-color: transparent;
	border: 0;
}
.c-event-list .c-event-list__item--btn .c-btn__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.c-event-list .c-event-list__item--btn .c-btn__item {
	width: 49%;
	font-size: 1.5em;
}
.c-event-list .c-event-list__item--btn .c-btn__item:nth-child(n+3) {
	margin-top: 1em;
}
.c-event-list .c-event-list__item--btn .c-btn__item .sub {
	display: block;
	font-size: 0.75em;
}
@media only screen and (max-width: 480px) {
	.c-event-list .c-event-list__item--btn .c-btn__item {
		width: 100%;
	}
	.c-event-list .c-event-list__item--btn .c-btn__item:nth-child(n+2) {
		margin-top: 0.5em;
	}
}

/* ===== */


.c-event-list .c-event-list__item--txt {
	margin: 1.5em 0;
	background-color: transparent;
	border: 0;
}
.c-event-list .c-event-list__item--txt .txt {
	font-weight: bold;
	text-align: center;
}



/* ========== ========== ==========
	Index Navigation
========== ========== ========== */

.p-index-nav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.p-index-nav__item {
	display: flex;
	width: 49%;
	align-items: center;
	justify-content: center;
}
.p-index-nav__item:nth-child(n+3) {
	margin-top: 1em;
}
.p-index-nav__item .inner {
	color: #ffffff;
	font-size: 1.25em;
	font-weight: bold;
}
.p-index-nav__item .inner .sub {
	display: block;
	font-size: 0.8em;
}
@media only screen and (max-width: 480px) {
	.p-index-nav__item .inner {
		font-size: 1em;
	}
}



/* ========== ========== ==========
	.p-event-txt
========== ========== ========== */

.p-event-txt .txt {
	text-align: center;
}



/* ========== ========== ==========
	#content04
========== ========== ========== */

#content04 .c-chef-info__wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 4em;
}
#content04 .c-chef-info__wrapper .c-chef-info {
	width: 66%;
}
#content04 .c-chef-info__wrapper .c-chef-info .c-chef-info__img {
	width: 48%
}
#content04 .c-chef-info__wrapper .c-chef-info .c-chef-info__txt {
	width: 52%;
}
#content04 .c-chef-info__wrapper .c-item-list {
	width: 32%;
	margin-top: 0;
}
#content04 .c-chef-info__wrapper .c-item-list__item {
	width: 100%;
}
@media only screen and (max-width: 720px) {
	#content04 .c-chef-info__wrapper .c-chef-info {
		width: 100%;
	}
	#content04 .c-chef-info__wrapper .c-chef-info .c-chef-info__img {
		width: 32%
	}
	#content04 .c-chef-info__wrapper .c-chef-info .c-chef-info__txt {
		width: 68%;
	}
	#content04 .c-chef-info__wrapper .c-item-list {
		width: 100%;
		margin-top: 1.5em;
	}
	#content04 .c-chef-info__wrapper .c-item-list__item {
		display: flex;
		flex-wrap: wrap;
	}
	#content04 .c-chef-info__wrapper .c-item-list__img {
		width: 50%;
	}
	#content04 .c-chef-info__wrapper .c-item-list__txt {
		width: 50%;
		padding: 2em;
	}
}