@charset "utf-8";

/* reset */
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5em}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}
/* --- */
ul{list-style:none;margin:0;padding:0;}
/* ---  */
img{
	-webkit-backface-visibility: hidden;
}

/* ------------------------------

--------------------------------- */
body{
	font-family: 'Noto Serif JP', "游明朝", "YuMincho", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", sans-serif;
	font-weight: 400;
	font-size: 1.2rem;
	color:#333;
	position: relative;
	height: 100%;
	line-height: 1.75;
}
h1,h2,h3,h4{
	line-height:1.5;
}

a{
	color:#333;
	text-decoration: none;
}


@media screen and (max-width: 1080px) {
	body{
		font-size:1.02rem;
	}
}

/* ------------------------------------
  コンテナ
-------------------------------------- */
.container{
	width:1000px;
	margin:0 auto;
}


@media screen and (max-width:1080px) {
	.container{
		width:100%;
	}

}

/* ------------------------------------

  アニメーション調整

 -------------------------------------- */
@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,5%,0);transform:translate3d(0,5%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}
@keyframes fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,5%,0);transform:translate3d(0,5%,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}


/* ------------------------------------
  フォント
 -------------------------------------- */
.wt900{
	font-weight: 900;
}
.wt700{
	font-weight: 700;
}
.wt500{
	font-weight: 500;
}
.wt400{
	font-weight: 400;
}

.c{
	text-align:center;
}


/* ------------------------------------
  
-------------------------------------- */
h1{
	text-align:center;

}
h2{
	font-weight: 700;
	text-align:center;
	margin-bottom:50px;
}
h2.white{
	color:#fff;
}

p{
	margin-bottom:1em;
}


/* ------------------------------------

	ヘッダ

-------------------------------------- */
.header{
	padding:0px 0;
}
.header-flex-block{
	display: flex;
	justify-content: space-between;
}
.header-flex-block .header-logo-box{
	width:50%;
}
.header-flex-block .header-reserve-box{
	width:50%;
}


/* ------------------------------------

	予約固定

-------------------------------------- */
.reserve-fixed-bar {
	display : block;
	position: fixed;
	z-index : 150;
	width:280px;
	left : 10px;
	bottom   : 10px;
	background:#a33;
}
.reserve-fixed-bar-inner {
	text-align:center;
	font-size:16px;
	color:#fff;
	padding:10px 5px;
}
.reserve-fixed-bar-inner a{
	color:#fff;
}
.reserve-fixed-bar:hover {
	background:#b44;
}

/* ------------------------------------

	グローバルメニュー

-------------------------------------- */
.pc-nav{

}
.sp-nav{
	display: none;
}
.nav{
	border-bottom:solid 1px #eee;
	background:#fff;
}
.nav-fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
}


.g-nav-block{
}

.g-nav{
	display: flex;
	justify-content: space-between;
}
.g-nav li{
	text-align:center;
}
.g-nav li a{
	display: block;
	padding:30px 0;
	width:100%;
}
.g-nav li a:hover{
/*	background:#333;
	color:#fff;
	*/
	transition : 0.5s;
}

/* おせち予約 */
.g-nav li.osechi{
	background: #d90030;
	padding:0 15px;
}
.g-nav li.osechi a{
	color:#ffffff;
}
.g-nav li.osechi a span{
	font-size:12px;
	padding:0 5px;
	margin-left:5px;
	display:inline-block;
	background:#fff;
	color:#d90030;
	border-radius:30px;
}




.nav-fixed .g-nav li a{
	padding:15px 0;
	transition : 0.5s;
}
.g-nav li.nav-logo{
	display: none;
}
.nav-fixed li.nav-logo{
	width:260px;
	display:block;
	padding-top:10px;
	transition : 0.5s;
	margin-right:30px;
}

@media screen and (max-width:1080px) {
	.g-nav-block{
		padding-left:50px;
		padding-right:50px;
	}
	.nav-fixed .g-nav-block{
		padding-left:10px;
		padding-right:20px;

	}
	.nav-fixed li a{
		font-size:0.9em;
	}
}
@media screen and (max-width: 800px) {
	.pc-nav{
		display:none;
		margin:0;
	}
	.sp-nav{
		display: block;
	}

}


/* ------------------------------------

	スマホ用メニュー

-------------------------------------- */
.hamburger {
	display : block;
	position: fixed;
	z-index : 150;
	right : 13px;
	top   : 12px;
	width : 42px;
	height: 42px;
	cursor: pointer;
	text-align: center;
}
.hamburger span {
	display : block;
	position: absolute;
	width   : 30px;
	height  : 2px ;
	left    : 6px;
	background : #ddd;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition   : 0.5s ease-in-out;
	transition        : 0.5s ease-in-out;
}
.hamburger span:nth-child(1) {
	top: 10px;
}
.hamburger span:nth-child(2) {
	top: 20px;
}
.hamburger span:nth-child(3) {
	top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top : 16px;
	left: 6px;
	-webkit-transform: rotate(315deg);
	-moz-transform   : rotate(315deg);
	transform        : rotate(315deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 16px;
	-webkit-transform: rotate(-315deg);
	-moz-transform   : rotate(-315deg);
	transform        : rotate(-315deg);
}
.sp-global-menu {
	position: fixed;
	z-index : -5;
	top  : 0;
	left : 0;
	height:100vh;
	color: #fff;
	background: rgba(255,255,255,1);
	text-align: center;
	width: 100%;
	opacity: 0;
	transition: opacity .4s ease, visibility .4s ease;

}
.sp-global-menu.active {
	opacity: 100;
	z-index : 100;
}

.sp-global-menu  ul {
	margin: 0 auto 20px auto;
	padding: 0;
	width: 100%;
}
.sp-global-menu  ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	transition: .4s all;
}
.sp-global-menu  ul li:last-child {
	padding-bottom: 0;
}
.sp-global-menu  ul li:hover{
	background :#ddd;
}
.sp-global-menu  ul li a {
	display: block;
	color: #333;
	padding: 0.7em 0;
	font-size:18px;
	text-decoration :none;
}
.sp-global-menu .sp-nav-logo{
	text-align:center;
	padding-top:30px;
	padding-bottom:30px;
}
.sp-global-menu .sp-nav-logo img{
	margin:0 auto;
	width:60vw;
}
.sp-global-menu .sp-sns-block{
	text-align:center;
}
.sp-global-menu .sp-sns-block a{
	display:inline-block;
	padding:8px 15px;
	text-align:center;
	border:solid 1px #333;

}
.sp-global-menu .sp-sns-block a img{
	width:24px;
	vertical-align: -6px;
	display:inline;
}



/* ------------------------------------

	

-------------------------------------- */
.common-section{
	margin:50px 0 100px 0;
	margin:0;

}

.section{
	border-bottom:1px solid #d0d0d0;
}


/* ------------------------------------

　動画

-------------------------------------- */
.key-video-section{
	height: 70vh;
	overflow: hidden;
}
.key-video-section .video-logo-box{

}
.key-video-section .video-logo-box h1{

}
.key-video-section .video-logo-box h1 img{
	height:50vh;
	margin:10vh auto 0 auto;
}
.key-video-section .overlay {
	width: 100%;
	height: 70vh;
	position: absolute;
	top: 0;
	left: 0;
	background-image: linear-gradient(45deg, rgba(0,0,0,.2) 50%, rgba(0,0,0,.4) 50%);
	background-size: 3px 3px;
	z-index: -5;
}
.key-video-section .video{
	width: 100%;
	height:70vh;
	background: url(../img/index/bg_black.jpg) no-repeat center/cover;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: -10;
}
.webp .key-video-section .video{
	background: url(../img/index/bg_black.webp) no-repeat center/cover;
}
.key-video-section .video::after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: #10394b;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	opacity: .3;
}
.key-video-section .video video{
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 800px) {
	.key-video-section{
		height: 55vh;
	}
	.key-video-section .video-logo-box h1 img{
		height:30vh;
	}
	.key-video-section .overlay {
		height: 55vh;

	}
	.key-video-section .video{
		height:55vh;
	}
	.key-video-section .video video{
		width: auto;
		height: 55vh;
	}
}



/* ------------------------------------

	コピーライト

-------------------------------------- */
.footer{
	padding-bottom:50px;

}
.copyright{
	text-align:center;
	padding:10px 0;
}

/* ------------------------------------

	当店について

-------------------------------------- */
.catch-section{
	padding:150px 0;
}
.catch-flex-box{
	display: flex;
	justify-content: space-between;
}
.catch-flex-box .text-box{
	width:40%;
}
.catch-flex-box .photo-box{
	width:57%;
}
.catch-flex-box .text-box p{
	font-size:22px;
}

.catch-flex-box .photo-box ul{
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
}
.catch-flex-box .photo-box ul li{
	width:49%;

}
.catch-flex-box .photo-box .p01{
	width:100%;
}

.catch-flex-box .photo-box .p02{
	width:100%;
	margin-top:70px;
}
.catch-flex-box .photo-box .p03{
	width:100%;
	margin-top:-58px;
}
.catch-flex-box .photo-box .p04{
	width:100%;
	margin-top:10px;
}
.catch-flex-box .photo-box .p05{
	width:100%;
	margin-top:-52px;
}


/* ------------------------------------

	動画

-------------------------------------- */
.movie-section{
	padding:150px 0 0 0;
}
.movie-section .movie-box{
	width:720px;
	text-align:center;
	margin:0 auto;
}

@media screen and (max-width:1080px) {
	.catch-section{
		padding-left:20px;
		padding-right:20px;
	}
	.catch-flex-box .text-box p{
		font-size:2.3vw;
	}

	.movie-section .movie-box{
			width:100%;
	}
	.movie-section .movie-box iframe{
		width:100%;
		height:360px;
	}

}
@media screen and (max-width: 800px) {
	.catch-section{
		padding:100px 0;
	}
	.catch-flex-box{
		flex-wrap:wrap;
	}
	.catch-flex-box .text-box{
		width:100%;
		margin-bottom:30px;
	}
	.catch-flex-box .photo-box{
		width:100%;
	}
	.catch-flex-box .text-box p{
		font-size:3.8vw;
	}

	.catch-flex-box .photo-box ul li{
		padding-bottom:10px;
	}
	.catch-flex-box .photo-box .p01,
	.catch-flex-box .photo-box .p02,
	.catch-flex-box .photo-box .p03,
	.catch-flex-box .photo-box .p04,
	.catch-flex-box .photo-box .p05
	{
		margin-top:0;
	}


}

/* ------------------------------------

	店舗概要

-------------------------------------- */
.intext-section{


}
.intext-section .intext-box{
	border:solid 1px #000;
	padding:30px;
	margin-top:50px;
}
.intext-section .intext-box h3{
	text-align:center;
	margin-bottom:0.5em;
}

.intext-section .yt-movie-box{
	margin:0 auto;
	padding-top:30px;
	width:600px;
}

@media screen and (max-width:1080px) {
	.intext-section .intext-section{
		background:#eee;
	}
	.intext-section .intext-box{
		border:0;
	}
}
@media screen and (max-width: 800px) {
	.intext-section .intext-box{
		border:0;
	}
	.intext-section .yt-movie-box{
		width:100%;
	}
}





/* ------------------------------------

	お品書き

-------------------------------------- */
.menu-section{
	background:url(../img/index/bg_menu.jpg) no-repeat top center fixed;

	padding:120px 0;
}
.webp .menu-section{
	background:url(../img/index/bg_menu.webp) no-repeat top center fixed;

}

.menu-block{

}
.menu-inner-block{
	background:#fff;
	padding:50px;
}

.menu-head-text{
	margin-bottom:40px;
}

.drink-text{
	text-align:center;
	margin-top:1em;
}

.price-caution{
	font-size:14px;
}

/* メニュー
------------------------------------- */
.menu-category-box{
	margin-bottom:70px;
}
.menu-category-title{
	text-align:center;

}
.menu-category-title span{
	display: inline-block;
	background:#555;
	color:#fff;
	border-radius:20px;
	padding:0px 20px;

}

/* 料金表
------------------------------------- */
.price-table{
	width:100%;
	margin-top:10px;
	border-collapse: collapse;
}
.price-table td{
	border-bottom:solid 1px #ddd;
	padding:10px 0;

}
.price-table td.price{
	text-align:right;
	min-width:100px;
}
.price-table td .menu-detail-text{
	font-size:14px;
	padding-left:1em;
}


/* メニュー写真
------------------------------------- */
.menu-photo-block{
	padding:0px 30px;
	margin-bottom:30px;
	margin-top:50px;
}
.menu-photo-flex-box{
	display: flex;
	justify-content:space-between;
}
.menu-photo-flex-box-c{
	justify-content:center;
}
.menu-photo-flex-box li{
	width:48%;
}
.menu-photo-flex-box-c li{
	width:60%;
}

.menu-photo-flex-box li img{
	width:100%;
	border-radius: 3px;
}
.menu-photo-flex-box li .menu-photo-text{
	text-align:center;
	font-size:16px;
	margin-top:5px;
}
.menu-photo-flex-box li.w70{
	width:50%;
}
@media screen and (max-width: 1080px) {

	.menu-block{
		padding-left:20px;
		padding-right:20px;
	}
}
@media screen and (max-width: 800px) {

	.menu-inner-block{
		padding:20px;
	}

	.menu-photo-block{
		padding:0px;
	}

	.menu-photo-flex-box{
		flex-wrap:wrap;
		justify-content: center;
	}
	.menu-photo-flex-box li{
		width:90%;
		margin-bottom:15px;
	}
}



/* ------------------------------------

	お席について

-------------------------------------- */
.p-table-section{
	padding:120px 0;
}
.p-table-inner-block{

}
.p-table-text{
	margin-bottom:40px;
}
.p-table-flex{
	margin-bottom:15px;
}
.p-table-flex ul{
	display:flex;
	justify-content: space-between;
}
.p-table-flex ul li{
	width:48%;
}
.p-table-flex ul li .p-table-title{
	background:#555;
	color:#fff;
	text-align:center;
	border-radius:20px;
	padding:5px 20px;
	margin-bottom:15px;
}
.p-table-flex ul li .p-table-photo{
	padding:0 15px;
}
.p-table-flex ul li .p-table-photo-text{
	padding:10px 15px;
	font-size:16px;
	text-align:center;
}
.p-table-flex ul li img{
	border-radius:5px;
}
@media screen and (max-width: 1080px) {
	.p-table-inner-block{
		padding-left:20px;
		padding-right:20px;
	}
}
@media screen and (max-width: 800px) {

	.p-table-flex ul{
		flex-wrap:wrap;
	}
	.p-table-flex ul li{
		width:100%;
		margin-bottom:20px;
	}
}



/* ------------------------------------

	料理長

-------------------------------------- */
.chef-section{
	background:url(../img/index/bg_chef.jpg) no-repeat top center fixed;
	background-size:cover;
	padding:120px 0;
}
.webp .chef-section{
	background:url(../img/index/bg_chef.webp) no-repeat top center fixed;
}
.chef-flex-box{
	display: flex;
	justify-content: space-between;
}
.chef-flex-box .chef-text-box{
	width:50%;
	background:#fff;
}
.chef-flex-box .chef-text-box .inner{
	padding:50px;
}
.chef-flex-box .chef-photo-box{
	width:45%;
}
.chef-flex-box .chef-text-box h2{
	margin-bottom:20px;
}
.chef-flex-box .chef-text-box .chef-name{
	text-align:center;
	font-size:28px;
}
.chef-flex-box .chef-text-box .chef-name-y{
	text-align:center;
	font-size:16px;
}
.chef-flex-box .chef-text-box .profile-box{
	margin-top:35px;
}
.chef-flex-box .chef-text-box .profile-box p{
	font-size:16px;
}
.chef-flex-box .chef-photo-box ul{
	display: flex;
	flex-wrap:wrap;
}
.chef-flex-box .chef-photo-box ul li{

}
.chef-flex-box .chef-photo-box ul li img{
	width:100%;
}
.chef-flex-box .chef-photo-box ul li img.p01{

}
.chef-flex-box .chef-photo-box ul li img.p02{
	margin-top:-30px;
	margin-left:50px;
}

@media screen and (max-width: 1080px) {
	.chef-section{
		padding-left:20px;
		padding-right:20px;
	}

	.chef-flex-box .chef-text-box .inner{
		padding:20px;
	}
}
@media screen and (max-width: 800px) {


	.chef-flex-box{
		flex-wrap:wrap;
	}
	.chef-flex-box .chef-text-box{
		width:100%;
	}
	.chef-flex-box .chef-photo-box{
		width:100%;
	}

	.chef-flex-box .chef-photo-box ul li{

	}

	.chef-flex-box .chef-photo-box ul li img.p02{
		margin-top:0px;
		margin-left:0px;
	}
	

}



/* ------------------------------------

	交通アクセス

-------------------------------------- */
.access-section{
	padding:120px 0;

}
.access-flex-box{
	display:flex;
	justify-content: space-between;
}
.access-flex-box .access-map-box{
	width:55%;
}
.access-flex-box .access-text-box{
	width:42%;
}
.access-flex-box .access-text-box .access-category-title{
	background:#555;
	color:#fff;
	padding:3px 15px;
	border-radius:20px;
}
.access-flex-box .access-text-box .access-category-text{
	padding:10px 15px;
	font-size:16px;
	margin-bottom:20px;
}
@media screen and (max-width: 1080px) {
	.access-section{
		padding-left:20px;
		padding-right:20px;
	}
}
@media screen and (max-width: 800px) {

	.access-flex-box{
		flex-wrap:wrap;
	}
	.access-flex-box .access-map-box{
		width:100%;
		margin-bottom:20px;
	}
	.access-flex-box .access-text-box{
		width:100%;
	}
}

/* ------------------------------------

	予約

-------------------------------------- */
.reserve-section{
	background:url(../img/index/bg_reserve.jpg) no-repeat top center fixed;
	background-size:cover;
	padding:120px 0;
}
.webp .reserve-section{
	background:url(../img/index/bg_reserve.webp) no-repeat top center fixed;
}

.reserve-box{
	background:#fff;
	margin-bottom:50px;
}	
.reserve-box .inner{
	padding:0 20px;
}
.reserve-tel-flex-box{
	display: flex;
	justify-content: space-between;
	align-items:center;
	padding:30px 20px;
}
.reserve-tel-flex-box .tel-no-box{
	width:40%;
	border-right:solid 1px #ddd;
	line-height:1.2;
}
.reserve-tel-flex-box .tel-no-box span{
	font-size:16px;
	border:solid 1px #333;
	padding:0 15px;
	border-radius:20px;
	display: inline-block;
}
.reserve-tel-flex-box .tel-no-box a{
	text-decoration: none;
	color:#000;
	font-size:45px;
}
.reserve-tel-flex-box .tel-no-box a.net-reserve{
	display:inline-block;
	margin-top:8px;
	font-size:24px;
	color:#e64c30;
}
.reserve-tel-flex-box .tel-no-box a.net-reserve:hover{
	color:#f65c40;
}

.reserve-tel-flex-box .tel-text-box{
	width:56%;
	font-size:17px;
}
.reserve-tel-flex-box .tel-text-box .reserve-caution-text{
	font-size:16px;
	color:#a33;
	margin-top:10px;
}

.reserve-flex-box{
	display: flex;
	flex-wrap:wrap;
	justify-content: space-between;
}

.reserve-flex-box .about-box{
	width:100%;
	background:#fff;

}
.reserve-flex-box .about-box .about-logo-box{
	text-align:center;
	padding:20px 0;
}
.reserve-flex-box .about-box .about-logo-box img{
	margin:0px auto;
	width:300px;
}

.reserve-flex-box .about-box .about-table{
	width:100%;

}
.reserve-flex-box .about-box .about-table th,
.reserve-flex-box .about-box .about-table td{
	padding:5px 15px;
	border-bottom:solid 5px #fff;
	font-size:16px;
}
.reserve-flex-box .about-box .about-table th{
	border-right:solid 3px #ddd;
	min-width:100px;
}
.reserve-flex-box .about-box .about-table td{
}
.reserve-flex-box .about-box .about-table td.sns img{
	width:24px;
	vertical-align:-6px;
	display:inline;
}

.reserve-flex-box .about-box .about-table td a{
	color:#0d58a5;
}
.reserve-flex-box .about-box .about-table td a:hover{

}


@media screen and (max-width: 1080px) {
	.reserve-section{
		padding-left:40px;
		padding-right:40px;
	}

	.reserve-tel-flex-box{
		flex-wrap:wrap;
	}
	.reserve-tel-flex-box .tel-no-box{
		width:100%;
		border-right:0;
	}
	.reserve-tel-flex-box .tel-text-box{
		width:100%;
		margin-top:20px;
	}
	.reserve-tel-flex-box .tel-no-box a{
		font-size:36px;
	}
}
@media screen and (max-width: 800px) {
	.reserve-section{
		padding-left:20px;
		padding-right:20px;
	}

	.reserve-box .inner{
		padding:0 0px;
	}

	.reserve-flex-box .about-box .about-table th,
	.reserve-flex-box .about-box .about-table td{
		padding:5px 5px;
	}
}



/* ------------------------------------

	おせち

-------------------------------------- */
.osechi-bn-box{
	margin-top:100px;
	text-align:center;
}
.osechi-bn-box img{
	width: 100%;
	transition: 0.5s;
}
.osechi-bn-box img:hover{
	opacity: 0.9;
}

@media screen and (max-width: 800px) {
	.osechi-bn-box{
		padding-left:15px;
		padding-right:15px;
	}

}


.osechi-section{
	padding:120px 0;
}

.osechi-section .main-image{

}
.osechi-section .main-image img{
	width: 100%;
}
.osechi-section .oshinagaki-box{
	background:#f9f1ef;
	padding:20px;
	margin-bottom:50px;
}
.osechi-section .oshinagaki-box .title{
	text-align: center;
	font-weight:bold;
	margin-bottom:15px;
}
.osechi-section .oshinagaki-box .naiyo{
	display: flex;
	justify-content: space-between;
	padding:0 20px;
}
.osechi-section .oshinagaki-box .naiyo .item{
	width:100px;
}
.osechi-section .oshinagaki-box .naiyo .item span{
	display: block;
	border:solid 1px #d90030;
	color:#d90030;
	text-align:center;
}

.osechi-section .oshinagaki-box .naiyo .value{
	flex:1;
	margin-left:15px;
}


.osechi-section .oshinagaki-box .caution-box{
	text-align:right;
	font-size:0.8em;
}

.osechi-section .poem-box{
	text-align: center;
	padding:50px 0;
}


.osechi-section .about-block{
	background:#f5ecbd;
	padding:30px;

}
.osechi-section .about-block .about-table{
	width:100%;

}
.osechi-section .about-block .about-table th,
.osechi-section .about-block .about-table td{
	padding:10px;
}
.osechi-section .about-block .about-table th{
	vertical-align: top;
	width:180px;
}
.osechi-section .about-block .about-table th div.title{
	background:#d4b400;
	color:#fff;
	padding:5px 5px;
}
.osechi-section .about-block .about-table td strong{
	font-size:1.6em;
}
.osechi-section .about-block .about-table td .caution-text{
	font-size:14px;
	color:#d90030;
	text-indent:-1em;
	padding-left:1em;
}

.osechi-section .about-block .about-table td .detail-box{
	margin-top:10px;
	border: solid 1px #c8a578;
	padding:10px;
	background:#fff;
	font-size:0.8em;
}
.osechi-section .about-block .about-table td .detail-box .title{
	background:#ab9a3d;
	color:#fff;
	padding:3px 8px;
}
.osechi-section .about-block .about-table td .detail-box .body{
	padding:5px 10px;
}
.osechi-section .about-block .about-table td .detail-box .body span{
	color:#d90030;
}

.osechi-section .osechi-chirashi-box{
	text-align:center;
	padding:60px 0;
}

.osechi-section .osechi-chirashi-box a{
	display: inline-block;
	background-color: #d90030;
	color:#fff;
	font-size:26px;
	padding:10px 35px;
	border-radius:50px;
	margin-top:30px;
}
.osechi-section .osechi-chirashi-box a:hover{
	background-color: #e91040;
}
.osechi-section .osechi-tyui-box{
	border:solid 1px #ccc;
	font-size:16px;
	padding:10px;
	margin-top:35px;
}


.osechi-section .osechi-tel-box{
	text-align:center;
	padding:50px 0;
	border-top:solid 1px #d4b400;
	border-bottom:solid 1px #d4b400;
	margin-bottom:50px;
}
.osechi-section .osechi-tel-box .title{
	text-align:center;
	margin-bottom:5px;
}
.osechi-section .osechi-tel-box .title span{
	display: inline-block;
	background:#ab9a3d;
	padding:5px 20px;
	border-radius: 30px;
	color:#fff;
}
.osechi-section .osechi-tel-box .tel{
	font-size:42px;
	font-weight:bold;
}
.osechi-section .osechi-tel-box .time{
	font-size:0.8em;
	text-align:center;
}


@media screen and (max-width: 800px) {

	.osechi-section{
		padding:120px 20px;
	}

	.osechi-section .oshinagaki-box .naiyo{
		flex-wrap: wrap;
		padding: 0 0 20px 0;
	}
	.osechi-section .oshinagaki-box .naiyo .item{
		width:100%;
	}
	
	.osechi-section .oshinagaki-box .naiyo .value{
		margin-left:0px;
	}


	.osechi-section .about-block{
		padding:15px;
	}

	.osechi-section .about-block .about-table th,
	.osechi-section .about-block .about-table td{
		display:block;
	}
	.osechi-section .about-block .about-table th{
		width:100%;
		text-align:center;
	}
	.osechi-section .about-block .about-table td strong{
		font-size:1.2em;
	}

	.osechi-section .osechi-chirashi-box a{
		font-size:18px;
		padding:10px 15px;
	}

	.osechi-section .osechi-tel-box .tel{
		font-size:32px;
		font-weight:bold;
	}

	.osechi-section .osechi-tyui-box{
		font-size:14px;
	}
	
}

