.container{
	padding-top: 50px;
}

.page_title{
	font-family: "Bungee Shade";
	font-weight: normal;
	color: #fff;
	font-size: 4rem;
	transition: .3s;
	display: inline-block;
	text-align: center;
	width: 100%;
}

.page_title span{
	font-family: 'M PLUS 1 M';
	font-size: 40%;
	display: block;
}

h1{
	font-family: 'M PLUS 1 B';
	font-size: 2.5rem;
}


.page_title{
	margin-bottom: 60px;
}

@media screen and (max-width: 767px){
	.page_title{
		margin-bottom: 40px;
	}
}

.contents_wrapper{
	background-color: #f2f2f2;
	border-radius: 10px;
	margin-bottom: 20px;
	padding: 50px 15px 40px;
}

@media screen and (max-width: 1100px){
	.contents_wrapper{
		width:calc(100% - 50px);
	}
}

@media screen and (max-width: 767px){
	.contents_wrapper{
		width:100%;
		/*padding: 50px 15px 30px;*/
		padding: 15px 15px 30px;
	}
}

.contents{
	width: min(900px,100%);
	margin: 0 auto;
}

@media screen and (max-width: 1100px){
	.contents.menu_archives{
		width:calc(100% - 50px);
	}
}

@media screen and (max-width: 767px){
	.contents.menu_archives{
		width:100%;
	}
}

.contents img{
	max-width: 100%;
}

.contents p.day{
	font-size: 1.3rem;
	margin-top: 0;
    margin-bottom: 20px;
}

h2{
	font-size: 2rem;
	position: relative;
	z-index: 2;
}

h2 span{
	display: inline-block;
	width: calc(100% - 2.2em);
	transform: translateX(2.2em);
}

@media screen and (max-width: 767px){
	.container{
		padding-top: 0;
	}
	
	h2{
		font-size: 2rem;
	}
	
	.page_title img {
    	height: 40px;
	}
}

h2::before{
	position: absolute;
	content: '';
	display: inline-block;
	width: 2em;
    height: 2em;
	background-image: url("../img/common_title.webp");
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 0.2em;
	top: 50%;
    transform: translateY(-50%);
}

.contents p{
	font-size: 1.5rem;
	line-height: 1.4;
	margin-bottom: 30px;
}

@media screen and (max-width: 599px){
	.contents p{
		font-size: 1.5rem;
    	line-height: 1.7em;
	}
}

.prev, .next{
	font-weight: 700;
	font-size: 2rem;
    padding-bottom: 0.2em;
	display: inline-block;
}

.prevnext .next{
	float: right;
}

.prev a:hover, .next a:hover{
	text-decoration: none;
	opacity: 0.7;
}

.contents_wrapper .button{
    display: inline-block;
    background-color: var(--font-color);
	color: #fff;
    border-radius: 5px;
	font-weight: 700;
	transition: .3s;
}

.contents_wrapper .button:hover {
    background-color: #dd6700;
    box-shadow: 0px 0px 7px 0px #dd6700;
	transition: .3s;
	text-decoration: none;
}

@media screen and (max-width: 767px){
	.contents_wrapper .button {
		font-size: 1.5rem;
	}
}

.pagination{
	margin: 40px auto 20px;
	text-align: center;
}

.page-numbers{
	font-weight: 700;
	font-size: 1.7rem;
	aspect-ratio: 1 / 1;
	width: 45px;
	display: inline-block;
	text-align: center;
	padding-top: 10px;
}

.pagination a{
	border: 1px solid #383883;
	background-color: #383883;
	color: #fff;
}

.pagination a:hover{
	border: 1px solid #383883;
	background-color: #fff;
	color: #383883;
	transition: .3s;
	text-decoration: none;
}

.pagination span{
	border: 1px solid #fff;
	color: #383883;
}

.pagination .nav-links{
	width: 100%;
}

.next.page-numbers,
.prev.page-numbers{
	position: relative;
	transform: translateY(16px);
}

.next.page-numbers:hover,
.prev.page-numbers:hover{
	background-color: #383883;
}

.next.page-numbers::after,
.prev.page-numbers::before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 13px;
	height: 21px;
	background-size: contain;
}

.next.page-numbers::after{
	background-image: url("../img/next.webp");
	background-repeat: no-repeat;
}

.prev.page-numbers::before{
	background-image: url("../img/prev.webp");
	background-repeat: no-repeat;
}



/*
.wrap{
	background-image: url("../img/page_bgimage.webp");
	background-size: 100% auto;
	background-repeat: repeat-y;
}
*/

.contents_wrapper img{
	max-width: 100%;
}

.news_list,
.mini-news_list,
.mini-menu_list{
	width: min(700px, 100%);
	margin: 0 auto;
}

.mini-menu_list{
	width: 100%;
}

.news_list a:first-of-type,
.mini-news_list a:first-of-type,
.mini-menu_list a:first-of-type,
.mini-menu_list a:nth-of-type(2){
	border-top: 1px solid #dd6700;
}

.news_list a,
.mini-news_list a,
.mini-menu_list a{
	display: block;
	padding: 1.5rem 0.5em;
	border-bottom: 1px solid #dd6700;
	transition: .3s;
}

.news_list a:hover{
	color: var(--hover-color);
	transition: .3s;
}

.mini-menu_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.mini-menu_list a{
	width: 49%;
	font-weight: 700;
	font-size: 1.4rem;
	color: var(--font-color);
	transition: .3s;
}

.mini-menu_list a:hover{
	color: var(--hover-color);
	transition: .3s;
}

@media(max-width:599px) {
	.mini-menu_list{
		flex-direction: column;
	}
	
	.mini-menu_list a{
		width: 100%;
	}
}

/*店舗紹介css*/
.band_img{
	width: 100%;
}

.overlap{
	position: relative;
}

.overlap + .wrapper.flex{
	padding-top: 170px;
	align-items: center;
}

@media screen and (max-width: 599px){
	.overlap + .wrapper.flex{
		padding-top: 0;
	}
}


.textbox_wrapper{
	position: absolute;
	top: 70%;
	width: 100%;
}

.textbox{
	background-color: #f2f2f2;
	padding: 35px 38px;
	width: min(410px, 100%);
	border-radius: 10px;
}

@media screen and (max-width: 599px){
	.textbox_wrapper{
		position: inherit;
		margin-top: 0;
	}
	.textbox{
		padding: 0 0 35px 0;
		width: 100%;
	}
}

.contents .textbox p {
    margin: 1em 0 0;
}

.textbox h2{
	font-size: 20px;
	font-weight: 700;
	line-height: 2em;
}

.textbox.p-right{
	float: right;
	position: relative;
	transform: translateX(10px);
}
@media screen and (max-width: 599px){
	.textbox.p-right{
		float: inherit;
		transform: translateX(0);
	}
}

.textbox.p-right::after{
	content: '';
	position: absolute;
	display: inline-block;
	background-image: url("../img/viewmore.webp");
	background-repeat: no-repeat;
	background-size: contain;
	width: 110px;
	height: 44px;
	bottom: -44px;
	left: 0;
	right: 0;
	margin: 0 auto;
	transform: translateX(20px);
}

@media screen and (max-width: 599px){
	.textbox.p-right::after {
		width: 80px;
		height: 32px;
		bottom: -15px;
		transform: translateX(25px);
	}
}

.textbox.p-right h2::before,
.textbox.p-left h2::before{
	content: inherit;
}

.textbox.p-right h2 span{
	display: inline;
	width: 100%;
	background-image: linear-gradient(to right, #fcff00, #ffa8a8);
	background-repeat: no-repeat;
	background-size: 100% 45%;
	background-position: bottom;
}

.textbox.p-left{
	float: left;
	transform: translateX(-10px);
}

@media screen and (max-width: 599px){
	.textbox.p-left{
		transform: translateX(0);
	}
}

.textbox.p-left h2 span{
	display: inline;
	width: 100%;
	background-image: linear-gradient(to right, #1f70ab, #07ebcf);
	background-repeat: no-repeat;
	background-size: 100% 45%;
	background-position: bottom;
}

.view_more{
	width: min(110px,100%);
}

.flex.wrapper{
	margin: 80px 0;
	align-items: center;
}

@media screen and (max-width: 599px){
	.flex.wrapper{
		flex-direction: column-reverse;
		margin: 0;
	}
}

.flex.wrapper p{
	width: min(390px,43%);
}

.img_wrapper{
	width: min(450px,50%);
}

@media screen and (max-width: 599px){
	.flex.wrapper p{
		width: 100%;
	}
	
	.img_wrapper{
		width: 100%;
		margin-top: 30px;
		margin-bottom: 15px;
	}
}

.float_right img{
	float: right;
}

.oneimg{
	overflow: hidden;
	margin: 60px 0;
}

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

	.float_right img{
		float: inherit;
	}
	
	.oneimg{
		overflow: inherit;
		margin: 0;
	}
}

.twocolum{
	width: 49%;
}

@media screen and (max-width: 599px){
	.twocolum{
		width: 100%;
	}
}

.flex.wrapper .twocolum p{
	width: 100%;
}

.card_wrapper.photofeed .card{
	width: 24%;
}


.menu{
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	z-index: 50;
	overflow: hidden;
	padding-bottom: 40px;
}

.menu .card_wrapper{
	padding-right: 22px;
}

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

	.menu::before{
		background-repeat: repeat-y;
		background-size: contain;
	}

	.menu .card_wrapper{
		padding-right: 0;
		padding-bottom: 0;
	}
}

.menu h4{
	font-weight: 700;
	padding-bottom: 0.7em;
	margin-bottom: 0.7em;
	border-bottom: 1px solid #cda35f;
	overflow: hidden;
	display: block;
	padding-right: 0.3em;
    padding-left: 0.3em;
}

.menu .card a{
	position: relative;
	display: block;
}

.menu .card a sup{
	color: #fff;
    position: absolute;
	font-size: 1rem;
    line-height: 1;
    top: 0.5em;
    right: -1.5em;
    display: block;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: sideways;
	white-space: nowrap;
	height: 100%;
	padding-top: 20px;
	width: 13px;
}
.card a div.sup-wrapper{
	min-height: 0;
    padding: 0;
}

@media screen and (max-width: 1180px){
	.card a div.sup-wrapper{
		display: none;
	}
}

.menu .button{
	background: #dd6700;
	box-shadow: 0px 0px 7px 0px #dd6700;
	border-radius: 5px;
}

.mini-menu .card div{
	background-color: inherit;
	padding: 0.5em;
}

.mini-menu .card .card_img{
	border-radius: 8px;
}

.contents .mini-menu .card div p{
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 700;
	font-size: 1.4rem;
	padding: 0;
}

.mini-menu_list a span{
    padding-right: 5px;
    text-align: right;
    display: inline-block;
    width: 100%;
	color: var(--font-subcolor);
}

.mini-menu .card p span{
	font-weight: 700;
	float: right;
	display: inline-block;
	color: var(--font-subcolor);
	width: 100%;
    text-align: right;
}

.mini-menu .card img{
	border-radius: 5px;
}

.menu_infoes{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 80px;
}

@media screen and (max-width: 767px){
	.menu_infoes{
		flex-direction: column;
		margin-bottom: 50px;
	}
}

.menu_images{
	width: min(500px, 50%);
}

@media screen and (max-width: 767px){
	.menu_images{
		width: 100%;
	}
}

.contents ul.sub-img{
	margin-top: 10px;
}

.contents ul.sub-img li {
    list-style: none;
    position: inherit;
    padding-left: 0;
	width: 19%;
	display: inline-block;
	cursor: pointer;
}

@media screen and (max-width: 767px){
	.contents ul.sub-img li {
		width: 18.5%;
	}
}

.contents ul.sub-img li::before{
	display: none;
}

.main-img{
	position: relative;
}

.main-img sup{
	display: inline-block;
	position: absolute;
	bottom: 0;
	color: #fff;
	width: 100%;
    text-align: right;
}

.menu_information{
	width: 47%;
    padding-top: 15px;
}

@media screen and (max-width: 767px){
	.menu_information {
		width: 100%;
	}
}

.menu_information .cat{
	font-size: 1.2rem;
	color:#666666;
	margin-bottom: 3px;
}

.menu_information h2{
	width: 100%;
	transform: translateX(0);
	border-top: 1px solid #cda35f;
	border-bottom: 1px solid #cda35f;
	padding: 0.5em 0;
	margin: 0;
	border-radius: 0!important;
}

.menu_information h2:before{
	display: none;
}

.menu_information .price{
	font-family: 'M PLUS 1 B';
	font-size: 2.5rem;
	margin-top: 0.5em;
    color: var(--font-subcolor);
}

@media screen and (max-width: 767px){
	.menu_information .price{
		font-size: 2rem;
	}
}

.menu_information .price span{
	font-size: 60%;
	font-weight: 400;
	color: #666666;
	padding-left: 10px;
}

.tags div{
	font-size: 1.3rem;
	font-family: 'M PLUS 1 B';
	display: inline-block;
	padding: 0.5em 1em;
	position: relative;
	background-color: #ff8f8f;
	border-radius: 7px;
	z-index: 10;
	margin-bottom: 7px;
	margin-right: 5px;
}

.tags div::before{
	content: '';
	position: absolute;
	display: inline-block;
	background-color: #fff;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	top: 2px;
	left: 2px;
	border-radius: 5px;
	z-index: -1;
}

.contents h2{
	margin-bottom: 15px;
}

.accessinfo{
	margin-top: 60px;
}

.accessinfo section{
	margin-bottom: 0;
}

.prevnext{
	overflow: hidden;
	margin-top: 40px;
}

.pagin_prev,
.pagin_prev{
	text-align: center;
	transform: translateY(3px);
}

.pagin_prev img,
.pagin_prev img{
	width: 13px;
	height: 21px;
	display: inline-block;
}

.contents_wrapper h2{
    border-radius: 10px;
}

@media screen and (max-width: 767px){
	.contents_wrapper h2{
		font-size: 1.8rem;
	}
}

.contents_wrapper h3{
	display: inline-block;
	font-size: 1.7rem;
	margin-bottom: 20px;
	font-family: 'M PLUS 1 B';
}

.contents_wrapper h4{
	border-bottom: 2px solid #cda35f;
    padding-bottom: 0.3em;
    display: inline-block;
}

.contents_wrapper textarea,
.contents_wrapper input{
	border-radius: 10px;
    border: 1px solid #e5e5e5;
	padding: 0.5em;
	max-width: 100%;
}

.contents_wrapper textarea{
	width: 100%;
}

.contents_wrapper input#submit{
	border: none;
	padding: 0.7em 2em;
	margin: 0 auto;
    display: block;
	letter-spacing: 0.15em;
}

.wpcf7-response-output{
	background-color: #e5e5e5;
    padding: 0.5em;
    border-radius: 10px;
	border: none;
    text-align: center;
}

.requied{
	font-size: 1rem;
	color: #fff;
	background-color: #ff0000;
	padding: 0.2em 0.4em;
	display: inline-block;
	border-radius: 5px;
	margin-left: 1em;
}

.contents_wrapper .textbox h2{
	background-color: inherit;
	padding: 0;
}

.wpcf7-spinner{
	display: none;
}

.main_txt{
	margin-bottom: 80px;
	margin-top: 40px;
}

.link_card{
	display: inline-block;
	width: min(200px, 100%);
    background: #f2f2f2;
	padding: 10px;
	border-radius: 5px;
	transition: .3s;
	float: left;
	border-bottom: 3px solid #dd6700;
}

@media screen and (max-width:767px) {
	.link_card{
		width: 49%;
	}
}

.link_card:hover{
	opacity: .7;
	transition: .3s;
}

.link_card a{
	display: block;
	width: 100%;
	height: 100%;
}

.link_card_guide{
	color: #666666;
	font-size: 1.2rem;
	margin-bottom: 15px;
}

.link_card .post-categories{
	margin-bottom: 7px;
}

.link_card_title{
	font-size: 1.5rem;
	font-weight: 700;
}

.link_card_date{
	font-size: 1.1rem;
}

.link_card.next{
	float: right;
}

.link_card.next .link_card_guide{
	text-align: right;
}

.clearfix{
	display: block;
	overflow: hidden;
}

.wpcf7-form-control-wrap{
	display: inline-block;
	line-height: 2;
	margin-bottom: 10px;
	width: 100%;
}

.menu_archives h2{
	color: #fff;
	text-align: center;
    margin-bottom: 40px;
}

.menu_archives h2::before{
	content: initial;
}

.contents p.menu_intro{
	color: #fff;
}

.contents p.cap{
	line-height: 1.5;
	margin-top: 10px;
}

.photofeed + .accessinfo{
	padding-right: 0!important;
	padding-left: 0!important;
	margin-bottom: 0;
}

section{
	margin-bottom: 40px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output{
	border:none;
}

.mini-menu_wrapper{
	background-color: #fff;
	padding: 30px 15px;
	border-radius: 10px;
}

.contents_wrapper .accessinfo section h3{
	font-size: 2.2rem;
	margin-bottom: 20px;
}

.contents p > a{
	color: var(--hover-color);
}

.menu_archives h2 + p{color:#fff;}

.thumbnail_img{
    border-radius: 10px;
    overflow: hidden;
    width: min(850px, 100%);
    margin: 0 auto 30px;
}
