@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	word-wrap: break-word;
}
html {
	font-size: 62.5%;/*10px(1rem)相当（10px ÷ 16px = 62.5%）*/
}
h1,h2,h3,h4,h5,h6 {
	font-size: 1em;
	margin: 0;
}
address {
	font-style: normal;
}
small {
	font-size: 100%;
}
iframe {
	vertical-align: bottom;
}
input {
	vertical-align: middle;
}
button {
	cursor: pointer;
}
/* ### initial setting end ### */


/* ### common ### */
body {
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.4rem;/*14px相当*/
	line-height: 1.7;
	background-color: white;
	color: #0d0d0d;
}
#container {
	width: 100%;
	min-width: 1000px;
	margin: 0 auto;
	overflow-x: hidden;
	position: relative;
}
header,footer,#side {
	font-size: 14px;
}
a {
	text-decoration: none;
	color: #0d0d0d;
}
a:hover {
	text-decoration: underline;
}
img {
	vertical-align: bottom;/*ディセンダを消す*/
}
ul {
	list-style-type: none;
}
table {
	border-collapse: collapse;
	width: 100%;
}
th {
	text-align: left;
	vertical-align: top;
}
.ophv a img,
.ophv button,
.ophvall {
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.ophv a img:hover,
.ophv button:hover,
.ophvall:hover {
	opacity: 0.6;
}
.ophvall a:hover {
	text-decoration: none;
}
/* responsive ==========*/
.pc {
	display: block;
}
.sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	#container {
		font-size: 1.3rem;
		min-width: 320px;
	}
	header,footer {
		font-size: 13px;
	}
	img {
		width: 100%;
		max-width: 100%;
		height: auto;
		vertical-align: middle;
	}
	input,select,textarea {
		font-size: 16px !important;/*iphoneフォーム拡大を防ぐ*/
		vertical-align: bottom;
	}
	.ophv a img:hover,
	.ophv button:hover,
	.ophvall a:hover {
		opacity: 1;
	}
	#wrapper .inner {
		padding: 0 10px;
	}
}
/* ### common end ### */


/*----------------------------------------------------
　header
----------------------------------------------------*/
header {
	display: flex;
	flex-wrap: wrap;
	background-color: #fff;
}
header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1000px;
	padding: 20px 0;
	margin: 0 auto;
	order: 2;
}
#fixhead {
	background-color: #fff;
	width: 100%;
	position: fixed;
	z-index: 2;
	top: 0px;
	left: 0;
}
header .hlogo a {
	display: block;
}
#gnav ul,
#fixgnav ul {
	display: flex;
	padding: 18px 0;
}
#gnav li,
#fixgnav li {
	position: relative;
}
#gnav a,
#fixgnav a {
	display: block;
	padding: 0 18px;
}
#gnav li:last-child a,
#fixgnav li:last-child a {
	padding-right: 0;
}
#gnav li::after,
#fixgnav li::after {
	content: '';
	display: inline-block;
	vertical-align: bottom;
	background-image: url(../img/nav_slash.png);
	background-repeat: no-repeat;
	width: 6px;
	height: 16px;
	position: absolute;
	right: 0;
	bottom: -2px;
}
#gnav li:last-child::after,
#fixgnav li:last-child::after {
	display: none;
}
@media screen and (max-width: 768px) {
	header .inner {
		border-bottom: 1px solid #231815;
		width: 100%;
		padding: 0;
	}
	header .hlogo {
		width: 180px;
		margin-left: 10px;
	}
	#fixhead {
		display: none !important;
	}
	/* SP gnav ---------- */
	#gnav_sp {
		display: none;
		font-size: 13px;
		background-color: #231815;
		border-top: 1px solid #eee;
		border-bottom: 1px solid #eee;
		width: 100%;
		position: absolute;
		z-index: 1000;
		order: 1;
	}
	#gnav_sp ul {
		width: 100%;
		overflow: hidden;
		position: relative;
		z-index: 2;
	}
	#gnav_sp li {
		float: left;
		font-weight: normal;
		width: 100%;
		margin-left: 0;
	}
	#gnav_sp li a {
		display: block;
		border-bottom: 1px solid #eee;
		color: #fff;
		padding: 10px 20px;
		text-decoration: none;
		cursor: pointer;
	}
	#gnav_sp li:last-child a {
		border-bottom: none;
	}
	/* gnav end ----------*/
	/* humberger ----------*/
	#hmenu {
		background-color: #231815;
		width: 50px;
		height: 50px;
	}
	#hmenu .hum,
	#hmenu .hum span {
		display: inline-block;
		transition: all .4s;
	}
	#hmenu .hum {
		position: relative;
		width: 30px;
		height: 22px;
		margin: 15px 10px ;
	}
	#hmenu .hum span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #fff;
	}
	#hmenu .hum span:nth-of-type(1) {
		top: 0;
	}
	#hmenu .hum span:nth-of-type(2) {
		top: 10px;
	}
	#hmenu .hum span:nth-of-type(3) {
		bottom: 0;
	}
	#hmenu .hum.active span:nth-of-type(1) {
		-webkit-transform: translateY(10px) rotate(-45deg);
		transform: translateY(10px) rotate(-45deg);
	}
	#hmenu .hum.active span:nth-of-type(2) {
		opacity: 0;
	}
	#hmenu .hum.active span:nth-of-type(3) {
		-webkit-transform: translateY(-10px) rotate(45deg);
		transform: translateY(-10px) rotate(45deg);
	}
	/* humberger END ----------*/
}
/* header end ----------------------------------------*/


/*----------------------------------------------------
	footer
----------------------------------------------------*/
footer {
	background-color: #eee;
}
footer #pagetop {
	width: 64px;
	margin: 0 auto;
	position: relative;
	top: -32px;
	transition: .3s;
}
footer #pagetop:hover {
	top: -35px;
}
footer #pagetop a {
	display: block;
}
footer #flogo {
	text-align: center;
	padding: 50px 0 82px;
}
footer #fnav {
	border-top: 1px solid #231815;
	border-bottom: 1px solid #231815;
}
footer #fnav ul {
	display: flex;
	justify-content: center;
	width: 1000px;
	padding: 15px 0;
	margin: 0 auto;
}
footer #fnav li::after {
	content: '/';
}
footer #fnav li:last-child::after {
	display: none;
}
footer #fnav li a {
	padding: 0 10px;
}
footer #copyright {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	width: 1000px;
	padding: 10px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	footer #pagetop {
		width: 64px;
	}
	footer #flogo {
		width: 30%;
		max-width: 184px;
		margin: 0 auto;
		padding: 0 0 40px;
	}
	footer #fnav ul {
		flex-wrap: wrap;
		width: auto;
	}
	footer #copyright {
		display: block;
		text-align: center;
		width: auto;
	}
	footer #copyright small {
		display: block;
	}
}
/* footer end ----------------------------------------*/


/*----------------------------------------------------
	TOP
----------------------------------------------------*/
#pagehead {
	background-color: #eee;
	width: 100%;
	position: relative;
}
#pagehead #slider figure {
	background-repeat: no-repeat;
    background-size: cover;
	background-position: center;
	width: 100%;
	height: 100vh;
    max-height: 920px;
    outline: none;
}
.slick-next {
	background-image: url(../img/slider/btn_next.png) !important;
	right: 0 !important;
}
.slick-prev {
	background-image: url(../img/slider/btn_prev.png) !important;
	left: 0 !important;
}
.slick-prev, .slick-next {
    width: 32px;
    height: 70px
}
.slick-prev:before, .slick-next:before {
    content:"" !important;
}
#pagehead .ttl {
	display: inline-block;
	text-align: center;
	position: absolute;
	z-index: 2;
	right: 0;
	left: 0;
	bottom: 288px;
}
#pagehead .scroll {
	display: inline-block;
	text-align: center;
	position: absolute;
	z-index: 2;
	right: 0;
	left: 0;
	bottom: 0;
}
.p_top #section01 {
	background-color: #eee;
	background-image: url(../img/top/topics_bg.png);
}
.p_top #section01 .inner {
	width: 1000px;
	padding: 70px 0 0;
	margin: 0 auto;
}
.p_top #section01 .bnr_area {
	margin-bottom: 50px;
}
.p_top #section01 .bnr_area a {
	transition-duration: .3s;
}
.p_top #section01 .bnr_area a:hover {
	opacity: .8;
}
.p_top #section01 h2 {
	text-align: center;
	margin-bottom: 65px;
}
.p_top #section01 .art_area {
	display: flex;
	flex-wrap: wrap;
	width: 1000px;
	margin: 0 auto;
}
.p_top #section01 article {
	width: 175px;
	margin-right: 31px;
	position: relative;
}
.p_top #section01 article:last-child {
	margin-right: 0;
}
.p_top #section01 article a {
	display: block;
}
.p_top #section01 article figure {
	background-color: #b9b9b9;
	height: 166px;
	overflow: hidden;
}
.p_top #section01 article .date {
	font-size: 12px;
	text-align: center;
	background-image: url(../img/top/topics_img_date.png);
	background-repeat: no-repeat;
	color: #fff;
	position: absolute;
	z-index: 1;
	top: -5px;
	left: 3px;
	width: 58px;
	height: 61px;
	padding: 10px 4px 10px 8px;
}
.p_top #section01 article .date span {
	display: block;
	font-size: 15px;
}
.p_top #section01 article .date:hover {
	opacity: 1;
}
.p_top #section01 article h3 {
	font-weight: normal;
	margin-top: 15px;
}
.p_top #section01 .btn_list {
	width: 86px;
	margin: 60px auto 0;
}
.p_top #section01 .btn_list a {
	display: block;
}
.p_top #section02 {
	font-size: 1.5rem;
	text-align: center;
}
.p_top #section02 .inner {
	width: 1000px;
	padding: 50px 0 70px;
	margin: 0 auto;
	position: relative;
}
.p_top #section02 .inner::before {
	content: '';
	display: block;
	background-image: url(../img/top/concept_img_01.png);
	background-repeat: no-repeat;
	width: 428px;
	height: 650px;
	position: absolute;
	top: 0;
	left: -300px;
}
.p_top #section02 .inner::after {
	content: '';
	display: block;
	background-image: url(../img/top/concept_img_02.png);
	background-repeat: no-repeat;
	width: 320px;
	height: 270px;
	position: absolute;
	top: 46px;
	right: -146px;
}
.p_top #section02 h2 {
	margin-bottom: 60px;
}
.p_top #section02 h3 {
	font-size: 2.4rem;
	margin-bottom: 45px;
	position: relative;
	z-index: 1;
}
.p_top #section02 p {
	line-height: 2.0;
	position: relative;
	z-index: 1;
}
.p_top #section03 {
	background-image: url(../img/top/menu_bg.jpg);
	background-position: top center;
}
.p_top #section03 .inner {
	width: 1000px;
	padding: 70px 0 80px;
	margin: 0 auto;
}
.p_top #section03 h2 {
	text-align: center;
	margin-bottom: 40px;
}
.p_top #section03 ul {
	display: flex;
	flex-wrap: wrap;
}
.p_top #section03 li {
	width: 309px;
	margin: 0 36px 30px 0;
	position: relative;
}
.p_top #section03 li:nth-child(3n) {
	margin-right: 0;
}
.p_top #section03 a {
	display: block;
}
.p_top #section03 h3 {
	font-size: 15px;
	font-weight: normal;
	text-align: center;
	background-image: url(../img/top/menu_ttl_overlay.png);
	color: #fff;
	width: 100%;
	padding: 14px 10px;
	position: absolute;
	top: 80px;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.p_top #section03 li:hover h3 {
	opacity: 1;
}
.p_top #section03 li.comment {
	font-size: 14px;
	background-color: #fee8c4;
	background-image: url(../img/top/menu_img_09.jpg);
	background-repeat: no-repeat;
	padding: 16px;
}
.p_top #section03 li.comment p {
	background-image: url(../img/top/menu_ttl_overlay.png);
	color: #fff;
	padding: 16px;
}
.p_top #section04 h2 {
	text-align: center;
	margin-bottom: 70px;
}
.p_top #section04 .inner {
	width: 1000px;
	padding: 70px 0 120px;
	margin: 0 auto;
	overflow: hidden;
}
.p_top #section04 .map {
	float: left;
	background-color: #eee;
	width: 500px;
}
.p_top #section04 .txt_area {
	float: right;
	width: 460px;
}
.p_top #section04 .txt_area .txt {
	margin: 0 5px;
}
.p_top #section04 .txt_area address {
	margin-bottom: 20px;
}
.p_top #section04 .txt_area .ttl {
	font-size: 1.8rem;
	font-weight: bold;
	margin-top: 20px;
}
.p_top #section04 .txt_area .tel {
	font-weight: bold;
	color: #765835;
	margin-bottom: 12px;
}
.p_top #section04 .txt_area .tel span {
	font-size: 1.8rem;
	color: #0d0d0d;
	margin-left: 40px;
}
.p_top #section04 .txt_area p {
	margin-bottom: 20px;
}
.p_top #section04 .txt_area figure {
	margin-top: 50px;
}
.p_top #section05 .inner {
	padding-bottom: 100px;
}
.p_top #section05 .catch {
	text-align: center;
	margin-bottom: 20px;
}
.p_top #section05 .more {
	text-align: center;
	margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
	#pagehead {
		order: 2;
	}
	#pagehead #slider figure {
		height: 345px;
	}
	#pagehead .ttl {
		bottom: 80px;
	}
	#pagehead .ttl img {
		width: 200px;
	}
	#pagehead .scroll img {
		width: 52px;
	}
	.p_top #section01 .inner {
		width: auto;
		padding: 35px 10px 0;
	}
	.p_top #section01 h2 {
		width: 200px;
		margin: 0 auto 35px;
	}
	.p_top #section01 .art_area {
		justify-content: space-between;
		width: auto;
	}
	.p_top #section01 .art_area article {
		width: 47%;
		margin: 0 0 20px 0;
		height: auto;
	}
	.p_top #section01 article figure {
		height: auto;
		max-height: 166px;
	}
	.p_top #section01 article h3 {
		margin-top: 5px;
	}
	.p_top #section01 .btn_list {
		margin-top: 30px;
	}
	.p_top #section02 {
		font-size: 1.4rem;
	}
	.p_top #section02 .inner {
		width: auto;
		padding: 35px 10px 50px;
	}
	.p_top #section02 .inner::before,
	.p_top #section02 .inner::after {
		display: none;
	}
	.p_top #section02 h2 {
		width: 200px;
		margin: 0 auto 35px;
	}
	.p_top #section02 h3 {
		font-size: 1.8rem;
		margin: 0 auto 20px;
	}
	.p_top #section03 .inner {
		width: auto;
		padding: 35px 10px 50px;
	}
	.p_top #section03 h2 {
		width: 200px;
		margin: 0 auto 35px;
	}
	.p_top #section03 ul {
		justify-content: space-between;
	}
	.p_top #section03 li {
		width: 47%;
		margin: 0 0 15px 0;
	}
	.p_top #section03 h3 {
		font-size: 1.4rem;
		padding: 5px;
		position: absolute;
		top: auto;
		bottom: 0;
		opacity: 1;
	}
	.p_top #section03 li.comment {
		background-size: cover;
		width: 100%;
		padding: 10px;
	}
	.p_top #section03 li.comment p {
		padding: 10px;
	}
	.p_top #section04 .inner {
		width: auto;
		padding: 35px 10px 50px;
	}
	.p_top #section04 h2 {
		width: 200px;
		margin: 0 auto 35px;
	}
	.p_top #section04 .map {
		float: none;
		width: auto;
	}
	/* map ----------*/
	.map {
		position: relative;
		padding-bottom: 70%;/*縦横比*/
		height: 0;
		overflow: hidden;
	}
	.map iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100% !important;
		height: 100% !important;
	}
	/* map end ----------*/
	.p_top #section04 .txt_area {
		float: none;
		width: auto;
	}
	.p_top #section04 .txt_area .ttl {
		font-size: 1.6rem;
	}
	.p_top #section04 .txt_area .tel span {
		font-size: 1.6rem;
		margin-left: 10px;
	}
	.p_top #section04 .txt_area figure {
		margin-top: 25px;
	}
	.p_top #section05 img {
		width: auto;
	}
}
/* TOP end ----------------------------------------*/


/*----------------------------------------------------
	CONCEPT
----------------------------------------------------*/
.p_concept #wrapper {
	margin-bottom: 180px;
}
.p_concept #pagettl {
	text-align: center;
	padding: 80px 0 70px;
}
.p_concept #pagettl h2 {
	text-align: center;
}
.p_concept #pagehead {
	background-color: #eee;
	background-image: url(../img/concept/pagehead.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	height: 289px;
	margin-bottom: 45px;
}
.p_concept #section01 {
	background-image: url(../img/concept/bg_01.jpg);
	background-repeat: no-repeat;
	background-position: top center;
}
.p_concept #section01 .inner {
	font-size: 1.6rem;
	width: 1000px;
	padding: 95px 0 200px;
	margin: 0 auto;
	position: relative;
}
.p_concept #section01 .inner::after {
	content: '';
	clear: both;
	display: block;
}
.p_concept #section01 .txt {
	float: right;
	line-height: 1.9;
	width: 432px;
}
.p_concept #section02 {
	background-image: url(../img/concept/bg_02.jpg);
	background-repeat: no-repeat;
	background-position: top center;
}
.p_concept #section02 .inner {
	font-size: 1.6rem;
	width: 1000px;
	padding: 300px 0 40px;
	margin: 0 auto;
	position: relative;
}
.p_concept #section02 .txt {
	line-height: 1.9;
	width: 450px;
}
.p_concept #section03 {
	background-image: url(../img/concept/bg_03.jpg);
	background-repeat: no-repeat;
	background-position: top center;
}
.p_concept #section03 .inner {
	font-size: 1.6rem;
	width: 1000px;
	padding: 155px 0 100px;
	margin: 0 auto;
	position: relative;
}
.p_concept #section03 .inner::after {
	content: '';
	clear: both;
	display: block;
}
.p_concept #section03 .txt {
	float: right;
	line-height: 1.9;
	width: 400px;
}
.p_concept .section h3 {
	margin-bottom: 30px;
}
.p_concept #section01 figure {
	position: absolute;
	bottom: -62px;
	left: 400px;
}
.p_concept #section02 figure:first-child {
	position: absolute;
	top: 20px;
	left: 126px;
}
.p_concept #section02 figure:last-child {
	position: absolute;
	right: 10px;
	bottom: -66px;
}
.p_concept #section03 figure:last-child {
	position: absolute;
	left: 316px;
	bottom: -64px;
}
@media screen and (max-width: 768px) {
	.p_concept #wrapper {
		margin-bottom: 90px;
	}
	.p_concept #pagettl {
		width: 200px;
		padding: 40px 0 35px;
		margin: 0 auto;
	}
	.p_concept #pagehead {
		background-size: cover;
		height: 145px;
		margin-bottom: 20px;
	}
	.p_concept #section01 {
		background-position: bottom left -250px;
		background-size: 1000px 292px;
	}
	.p_concept #section01 .inner {
		font-size: 1.4rem;
		width: auto;
		padding: 50px 10px 250px;
		margin: 0 auto;
		position: relative;
	}
	.p_concept #section01 .txt {
		float: none;
		width: auto;
	}
	.p_concept #section02 {
		background-position: bottom right -300px;
		background-size: 1000px 292px;
	}
	.p_concept #section02 .inner {
		font-size: 1.4rem;
		width: auto;
		padding: 50px 10px 250px;
		margin: 0 auto;
		position: relative;
	}
	.p_concept #section02 .txt {
		width: auto;
	}
	.p_concept #section03 {
		background-position: bottom left -200px;
		background-size: 1000px 292px;
	}
	.p_concept #section03 .inner {
		font-size: 1.4rem;
		width: auto;
		padding: 50px 10px 250px;
		margin: 0 auto;
		position: relative;
	}
	.p_concept #section03 .txt {
		float: none;
		width: auto;
	}
	.p_concept #section03 .txt h3 {
		width: 80%;
	}
	.p_concept .section figure {
		display: none;
	}
}
/* CONCEPT end ----------------------------------------*/


/*----------------------------------------------------
	SHOP
----------------------------------------------------*/
.p_shop #pagettl {
	text-align: center;
	padding: 80px 0 70px;
}
.p_shop #pagehead {
	background-color: #eee;
	background-image: url(../img/shop/pagehead.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	height: 289px;
	margin-bottom: 90px;
}
.p_shop #section01 .inner {
	width: 1000px;
	padding-bottom: 60px;
	margin: 0 auto;
}
.p_shop #section01 .outline {
	position: relative;
}
.p_shop #section01 .outline .box {
	background-color: #fff;
	width: 475px;
	height: 470px;
	padding: 50px 0 0 70px;
	position: absolute;
	right: 0;
	bottom: 0;
}
.p_shop #section01 .outline .box .logo {
	text-align: center;
	margin-bottom: 50px;
}
.p_shop #section01 .outline .box .ttl {
	font-weight: bold;
}
.p_shop #section02 {
	background-image: url(../img/shop/bg.jpg);
	background-position: top center;
}
.p_shop #section02 .inner {
	width: 1000px;
	padding: 60px 0 70px;
	margin: 0 auto;
}
.p_shop #section02 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.p_shop #section02 li {
	margin-bottom: 10px;
}
.p_shop #section03 .inner {
	width: 1000px;
	padding: 40px 0 160px;
	margin: 0 auto;
	overflow: hidden;
}
.p_shop #section03 .txt {
	float: left;
	width: 280px;
	margin-top: 236px;
}
.p_shop #section03 h3 {
	margin-bottom: 30px;
}
.p_shop #section03 dt {
	font-weight: bold;
}
.p_shop #section03 .map {
	float: right;
}
@media screen and (max-width: 768px) {
	.p_shop #pagettl {
		width: 200px;
		padding: 40px 0 35px;
		margin: 0 auto;
	}
	.p_shop #pagehead {
		background-size: cover;
		height: 145px;
		margin-bottom: 20px;
	}
	.p_shop #section01 .inner {
		width: auto;
		padding-bottom: 30px;
	}
	.p_shop #section01 .outline .box {
		width: auto;
		height: auto;
		margin-top: 20px;
		padding: 0;
		position: static;
	}
	.p_shop #section01 .outline .box .logo {
		width: 150px;
		margin: 0 auto 25px;
	}
	.p_shop #section02 .inner {
		width: auto;
		padding: 30px 30px 35px;
	}
	.p_shop #section02 ul {
		display: block;
	}
	.p_shop #section03 .inner {
		width: auto;
		padding: 20px 10px 80px;
	}
	.p_shop #section03 .txt {
		float: none;
		width: auto;
		margin: 0 0 20px;
	}
	.p_shop #section03 h3 {
		width: 78px;
		margin-bottom: 15px;
	}
	.p_shop #section03 .map {
		float: none;
	}
}
/* SHOP end ----------------------------------------*/


/*----------------------------------------------------
	MENU
----------------------------------------------------*/
.p_menu #pagettl {
	text-align: center;
	padding: 80px 0 70px;
}
.p_menu #pagettl h2 {
	text-align: center;
}
.p_menu #pagehead {
	background-color: #eee;
	background-image: url(../img/menu/pagehead.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	height: 289px;
	margin-bottom: 45px;
}
.p_menu #cat {
	margin-bottom: 100px;
}
.p_menu #cat ul {
	display: flex;
	flex-wrap: wrap;
	font-size: 1.3rem;
	text-align: center;
	width: 1000px;
	margin: 0 auto;
}
.p_menu #cat li {
	margin: 0 13px 10px 0;
}
.p_menu #cat li:nth-child(4n) {
	margin-right: 0;
}
.p_menu .section .inner {
	width: 1000px;
	margin: 0 auto 150px;
}
.p_menu .section h3 {
	font-size: 3rem;
	font-weight: normal;
	text-align: center;
	margin-bottom: 50px;
}
.p_menu .section ul {
	display: flex;
	flex-wrap: wrap;
}
.p_menu .section li {
	width: 310px;
	margin: 0 35px 40px 0;
}
.p_menu .section li:nth-child(3n) {
	margin-right: 0;
}
.p_menu .section li figure {
	margin-bottom: 10px;
}
.p_menu .section li .price {
	margin-bottom: 10px;
}
.p_menu .section li .comment {
	margin-bottom: 10px;
}
.p_menu .section li .allergy .ttl {
	display: inline-block;
	font-size: 11px;
	text-align: center;
	vertical-align: middle;
	background-color: #0f0f0f;
	color: #fff;
	width: 90px;
	padding: 1px 6px;
	margin-right: 8px;
}
.commingsoon {
	font-size: 3rem;
	text-align: center;
	border: 1px solid #bdbdbd;
	color: #a0a0a0;
	width: 1000px;
	padding: 40px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.p_menu #pagettl {
		width: 200px;
		padding: 40px 0 35px;
		margin: 0 auto;
	}
	.p_menu #pagehead {
		background-size: cover;
		height: 145px;
		margin-bottom: 20px;
	}
	.p_menu #cat {
		margin-bottom: 48px;
	}
	.p_menu #cat ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: auto;
		padding: 0 10px;
	}
	.p_menu #cat li {
		width: 48.6%;
		margin: 0 0 10px 0;
	}
	.p_menu #cat li:nth-child(2n) {
		margin-right: 0;
	}
	.p_menu .section .inner {
		width: auto;
		margin: 0 auto 40px;
	}
	.p_menu .section h3 {
		font-size: 2.5rem;
		margin-bottom: 25px;
	}
	.p_menu .section ul {
		justify-content: space-between;
	}
	.p_menu .section li {
		width: 47%;
		margin: 0 0 20px 0;
	}
	.p_menu .section li .allergy .ttl {
		display: block;
		margin-right: 0;
	}
	.commingsoon {
		padding: 40px 10px;
		margin: 0 10px 90px;
	}
}
/* MENU end ----------------------------------------*/


/*----------------------------------------------------
	CONTACT
----------------------------------------------------*/
.p_contact #pagettl {
	text-align: center;
	padding: 80px 0 70px;
}
.p_contact #pagettl h2 {
	text-align: center;
}
.p_contact #pagehead {
	background-color: #eee;
	background-image: url(../img/contact/pagehead.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	height: 289px;
	margin-bottom: 45px;
}
.p_contact #section01 .inner {
	width: 1000px;
	padding: 0 60px;
	margin: 0 auto;
}
.p_contact #section01 p {
	margin-bottom: 80px;
}
.p_contact #section01 th,
.p_contact #section01 td {
	padding-bottom: 24px;
}
.p_contact #section01 th {
	font-weight: normal;
	text-align: right;
	width: 220px;
	padding-right: 36px;
}
.p_contact #section02 .inner {
	width: 1000px;
	padding: 120px 60px 0;
	margin: 0 auto 130px;
}
input[type="text"],
input[type="email"],
input[type="tel"] {
	border: 1px solid #98a1a7;
	border-radius: 8px;
	width: 360px;
	height: 40px;
}
textarea {
	border: 1px solid #98a1a7;
	border-radius: 8px;
	width: 650px !important;
	min-height: 130px;
}
form .btn {
	text-align: center;
	margin-top: 50px;
}
.btn button {
	background-color: #dfdfdf;
	background: -webkit-linear-gradient(top, #fdfdfd, #dfdfdf);
	background: linear-gradient(#fdfdfd, #dfdfdf);
	border: 1px solid #cccccc;
	border-radius: 8px;
	width: 98px;
	height: 50px;
	padding: 10px;
}
.btn button:hover {
	background: -webkit-linear-gradient(top, #dfdfdf, #fdfdfd);
	background: linear-gradient(#dfdfdf, #fdfdfd);
}
form .required {
	float: left;
	display: block;
	font-size: 10px;
	font-weight: normal;
	text-align: center;
	text-shadow: 0px 1px 2px #c42221;
	background-color: #e95352;
	background: -webkit-linear-gradient(top, #e95352, #e7231e);
	background: linear-gradient(#e95352, #e7231e);
	border: 1px solid #e95352;
	border-radius: 4px;
	color: #fff;
	width: 26px;
	height: 27px;
	padding: 4px 0;
}
.p_contact #section02 h3 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 50px;
}
.p_contact #section02 p {
	margin-bottom: 30px;
}
.p_contact #section02 dt {
	font-weight: bold;
}
.p_contact #section02 dd {
	margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
	.p_contact #pagettl {
		width: 200px;
		padding: 40px 0 35px;
		margin: 0 auto;
	}
	.p_contact #pagehead {
		background-size: cover;
		height: 145px;
		margin-bottom: 20px;
	}
	.p_contact #section01 .inner {
		width: auto;
		padding: 0 10px;
		margin: 0 auto;
	}
	.p_contact #section01 p {
		margin-bottom: 20px;
	}
	.p_contact #section01 th,
	.p_contact #section01 td {
		display: block;
	}
	.p_contact #section01 th {
		text-align: left;
		width: auto;
		padding: 0;
	}
	.p_contact #section01 td {
		padding-bottom: 10px;
	}
	.p_contact #section02 .inner {
		width: auto;
		padding: 60px 10px 0;
		margin: 0 auto 65px;
	}
	label {
		word-wrap: break-word;
	}
	input[type="text"],
	input[type="email"],
	input[type="tel"] {
		width: 100%;
		max-width: 360px;
	}
	textarea {
		width: 100% !important;
		max-width: 650px;
	}
	form .btn {
		margin-top: 25px;
	}
	.p_contact #section02 h3 {
		margin-bottom: 25px;
	}
}
/* CONTACT end ----------------------------------------*/


/*----------------------------------------------------
	TOPICS
----------------------------------------------------*/
.p_topics #wrapper {
	margin-bottom: 140px;
}
.p_topics #pagettl {
	text-align: center;
	padding: 80px 0 70px;
}
.p_topics #pagehead {
	background-color: #eee;
	background-image: url(../img/topics/pagehead.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	height: 289px;
	margin-bottom: 90px;
}
.p_topics .section .inner {
	width: 1000px;
	margin: 0 auto;
}
.p_topics .section article {
	margin-bottom: 36px;
}
.p_topics .section article:last-of-type {
	margin-bottom: 90px;
}
.p_topics .section article img {
	max-width: 100%;
}
.p_topics .section .head {
	display: flex;
	justify-content: space-between;
	margin-bottom: 24px;
}
.p_topics .section .head .date {
	font-size: 12px;
	text-align: center;
	background-color: #0d0d0d;
	color: #fff;
	width: 54px;
	height: 60px;
	padding: 8px 5px;
}
.p_topics .section .head .date span {
	font-size: 15px;
	display: block;
}
.p_topics .section .head h3 {
	font-weight: normal;
	border-top: 1px dotted #878787;
	border-bottom: 1px dotted #878787;
	width: 920px;
	padding: 16px 10px;
}
/* pagination ----------*/
.pagination ul {
	display: flex;
	justify-content: flex-end;
	font-size: 14px;
	text-align: center;
}
.pagination li {
	border: 1px solid #e6e6e6;
	border-radius: 6px;
	min-width: 42px;
	margin-right: 4px;
}
.pagination li:last-child {
	margin-right: 0;
}
.pagination .current {
	display: block;
	background-color: #161616;
	color: #fff;
	padding: 8px 4px;
}
.pagination a {
	display: block;
	text-decoration: none;
	color: #161616;
	padding: 8px 4px;
}
.pagination a:hover {
	background-color: #161616;
	border-radius: 6px;
	color: #fff;
}
.pagination .next a,
.pagination .prev a {
	padding: 8px 10px;
}
/* pagination END ----------*/
@media screen and (max-width: 768px) {
	.p_topics #wrapper {
		margin-bottom: 70px;
	}
	.p_topics #pagettl {
		width: 200px;
		padding: 40px 0 35px;
		margin: 0 auto;
	}
	.p_topics #pagehead {
		background-size: cover;
		height: 145px;
		margin-bottom: 20px;
	}
	.p_topics .section .inner {
		width: auto;
		margin: 0 auto;
	}
	.p_topics .section article:last-of-type {
		margin-bottom: 45px;
	}
	.p_topics .section .head h3 {
		width: 78%;
		padding: 8px 5px;
	}
	.pagination ul {
		font-size: 12px;
	}
	.pagination li {
		min-width: 30px;
	}
	.pagination a {
		padding: 4px;
	}
	.pagination .current {
		padding: 4px;
	}
	.pagination .next a,
	.pagination .prev a {
		padding: 4px;
	}
}
/* TOPICS end ----------------------------------------*/



/*----------------------------------------------------
	RECRUIT
----------------------------------------------------*/
.p_recruit #pagettl {
	text-align: center;
	padding: 80px 0 70px;
}
.p_recruit #pagehead {
	background-color: #eee;
	background-image: url(../img/recruit/pagehead.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	height: 289px;
	margin-bottom: 90px;
}
.p_recruit .section .inner {
	width: 940px;
	margin: 0 auto;
}
.p_recruit #section01{
	padding-bottom: 50px;
}
.p_recruit #section01 .content{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.p_recruit #section01 .content figure{
	width: 50%;
}
.p_recruit #section01 .content figure img{
	max-width: 100%;
}
.p_recruit #section01 .content .txt-area{
	width: 45%;
	margin-top: 50px;
	font-size: 15px;
	letter-spacing: 0.01em;
	line-height: 1.85;
}
.p_recruit #section01 .content .txt-area .logo{
	text-align: center;
	margin-bottom: 50px;
}
.p_recruit #section02 {
	padding: 50px 0 150px;
}
.p_recruit #section02 h3{
	font-size: 3rem;
	font-weight: normal;
	text-align: center;
	margin-bottom: 50px;
}
.p_recruit #section02 .requirement{
	width: 100%;
}
.p_recruit #section02 .requirement tr{
	border-bottom: 1px solid #dcdcdc;
}
.p_recruit #section02 .requirement th,
.p_recruit #section02 .requirement td{
	padding: 20px;
	font-weight: normal;
}
.p_recruit #section02 .requirement th{
	padding-left: 10px;
	width: 145px;
}
.p_recruit #section02 .requirement td{
	padding-right: 10px;
}
@media screen and (max-width: 768px){
	.p_recruit .section .inner {
		width: 100%;
	}
	.p_recruit #pagettl {
		width: 200px;
		padding: 40px 0 35px;
		margin: 0 auto;
	}
	.p_recruit #pagehead{
		background-size: cover;
    height: 145px;
    margin-bottom: 20px;
	}
	.p_recruit #section02 h3{
		font-size: 2.5rem;
    margin-bottom: 25px;
	}
	.p_recruit #section01 .content{
		flex-direction: column-reverse;
	}
	.p_recruit #section01 .content figure,
	.p_recruit #section01 .content .txt-area{
		width: 100%;
	}
	.p_recruit #section01 .content figure{
		text-align: center;
		/* margin-bottom: 50px; */
	}
	.p_recruit #section01 .content figure img{
		width: auto;
	}
	.p_recruit #section01 .content .txt-area{
		margin-bottom: 50px;
	}
	.p_recruit #section01 .content .txt-area .logo img{
		width: auto;
	}
	.p_recruit #section02 .requirement th,
	.p_recruit #section02 .requirement td{
		display: block;
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.p_recruit #section02 .requirement th{
		padding-bottom: 0;
	}
}
/* RECRUIT end ----------------------------------------*/