@charset "UTF-8";

/* 特集ページ　－　予約商品・配送時期が指定されている商品
 (reservation.html) */

/*****************************
特集ページ　共通
*****************************/
#reservation {
	background-color: #fff5f5;
}
.wrapper {
	max-width: 1280px;
	padding: 0 40px;
	margin: 0 auto;
	box-sizing: border-box;
}
#header {
	padding-top: 20px;
	padding-bottom: 40px;
	background-color: #fff5f5;
}

.hidden_pc {
	display: none;
}
.hidden_sp {
	display: block;
}
@media screen and (max-width: 767px) {
	#reservation .wrapper {
		padding: 0px;
	}
	.wrapper {
		padding: 0 20px;
	}
	#header {
		padding-top: 0;
	}
	.hidden_pc {
		display: block;
	}
	.hidden_sp {
		display: none;
	}
}

.hidden_under930 {
	display: none;
}
@media screen and (max-width: 930px) {
	.hidden_under930 {
		display: block;
	}
}

.hidden_under900 {
	display: block;
}
@media screen and (max-width: 900px) {
	.hidden_under900 {
		display: none;
	}
}

/* 注意（赤・太字） */
.caution {
	background-color: #fff;
	border: 1px solid #585858;
	padding: 10px 20px;
	margin-top: 20px;
}
.caution p {
	margin-bottom: 10px;
}
.caution p:last-child {
	margin-bottom: 0;
}
.caution p span {
	color: #f00;
}


/*****************************
メインビジュアル
*****************************/
.main_visual {
    position: relative;
}


/*****************************
導入の文章　.introduction
*****************************/
.text_align_center {
	text-align: center;
}
.introduction {
	display: inline-block;
	padding: 20px;
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	font-weight: bold;
	font-size: 1.25rem;
	line-height: 1.5;
	letter-spacing: 2px;
	text-align: left;
	color: #042377;
	background-color: #fff;
	border-radius: 20px;
	border: 1px solid #f3c563;
	margin-bottom: 50px;
	box-shadow: 5px 5px 7px #f3c563;
}
.introduction .introduction_text {
	position: relative;
	margin-bottom: 20px;
}
.introduction .introduction_text:last-child {
	margin-bottom: 0;
}
.introduction .inner_line {
	padding: 30px 40px;
	border: 5px solid #ffecb6;
	border-radius: 20px;
}
@media screen and (max-width: 767px) {
	.introduction {
		font-size: 1.125rem;
		line-height: 1.4;
	}
	.introduction .introduction_text {
		margin-bottom: 15px;
	}
	.introduction .inner_line {
		padding: 20px;
	}
}
@media screen and (max-width: 500px) {
	.introduction {
		font-size: 1rem;
		line-height: 1.3;
		padding: 10px;
	}
	.introduction .introduction_text {
		margin-bottom: 10px;
	}
	.introduction .inner_line {
		padding: 15px;
	}
}

/* 900以下で改行なし */
.introduction .hidden_900 {
	display: block;
}
@media screen and (max-width: 900px) {
	.introduction .hidden_900 {
		display: none;
	}
}


/*****************************
予約商品リスト　（menu）
*****************************/
.menu .reservation_list_table {
    width: auto; 
    border-collapse: collapse;
	margin: 0 auto 80px auto;
}
.menu tr.list_container {
    box-sizing: border-box;
	border: 1px solid #ccc;
	border-bottom: none;
}
.menu tr.list_container:last-child {
	border-bottom: 1px solid #ccc;
}
.menu tr.list_container:nth-child(odd) {
	background-color: #ffecb6;
}
.menu tr.list_container a {
    display: block;
    height: 100%;
	text-decoration: none;
}
.menu tr.list_container a:focus {
    outline: none;
}
.menu tr.list_container a:hover {
	color: #201bbc !important;
	opacity: 0.7;
}


/* 商品リストのお届け時期 (delivery_time) */
.delivery_time {
	padding: 20px;
	text-align: center;
	vertical-align: middle;
	box-sizing: border-box;
}
.delivery_time_box {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    color: #fff;
    background-color: #469b5d;
	font-size: 1rem;
    font-weight: bold;
	line-height: 1;
    text-align: center;
	vertical-align: middle;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.delivery_time_01 {
	font-size: 1.325rem;
	margin-bottom: 5px;
}
.delivery_time_01.small {
	font-size: 1rem;
}
.delivery_time_02 {
	font-size: 0.9rem;
}
.delivery_time_02 span {
	font-size: 1rem;
	margin-right: 5px;
}

/* 商品リストの画像 (img_cell) */
.menu tr.list_container td.img_cell {
	padding: 20px 0;
	vertical-align: middle;
	box-sizing: border-box;
}
.menu tr.list_container td.img_cell img {
    display: block;
	max-width: 130px;
	height: auto;
}


/* 商品リストの商品名・規格名 (inner02_cell) */
.menu tr.list_container td.inner02_cell {
	padding: 15px 0 5px 20px;
}
.menu tr.list_container td.inner02_cell .text_block {
	padding: 0 20px 10px 0;
}
.menu tr.list_container td.inner02_cell .text_block .list_goods_name {
	font-size: 1.175rem;
	font-weight: bold;
}
.menu tr.list_container td.inner02_cell .text_block .list_quantity {
	font-size: 1.175rem;
	font-weight: bold;
	padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
	.menu tr.list_container td.inner02_cell .text_block {
		padding: 0 0 10px 0;
	}
	.menu tr.list_container td.inner02_cell .text_block .list_goods_name {
		display: inline-block;
	}
	.menu tr.list_container td.inner02_cell .text_block .list_quantity {
		display: inline-block;
		padding-left: 15px;
	}
}

/* 商品リストのアイコン */
.menu tr.list_container td.inner02_cell .icon_block ul {
	list-style: none;
}
.menu .list_container .inner02_cell .icon_block .icon_frame {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: bold;
	line-height: 1;
	padding: 5px 10px;
	margin-right: 10px;
	margin-bottom: 10px;
}
.menu .list_container .inner02_cell .icon_block .icon_frame.frozen {
	background-color: #00a3d9;
	border: 1px solid #00a3d9;
	color: #fff;
}
.menu .list_container .inner02_cell .icon_block .icon_frame.refrigerated {
	background-color: #fff;
	border: 1px solid #00a3d9;
}
.menu .list_container .inner02_cell .icon_block .icon_frame.normal_temperature {
	background-color: #333;
	border: 1px solid #333;
	color: #fff;
}
.menu .list_container .inner02_cell .icon_block .icon_frame.limited {
	background-color: #ff8000;
	border: 1px solid #ff8000;
	color: #fff;
}
.menu .list_container .inner02_cell .icon_block .icon_frame.sale {
	background-color: #ff0000;
	border: 1px solid #ff0000;
	color: #fff;
}

/* 商品リストの価格 (inner03_cell) */
.menu tr.list_container td.inner03_cell {
	font-size: 1rem;
	font-weight: bold;
    text-align: right;
	padding: 15px 20px 16px 0;
	vertical-align: middle;
	width: 150px;
}
.menu tr.list_container td.inner03_cell .list_price1 span {
	font-size: 1.5rem;
	margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
	.menu .reservation_list_table {
		width: 100%;
		margin: 0 0 60px 0;
	}
	.menu tr.list_container {
		margin: 0 20px;
		display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
		justify-content: center;
	}
	.delivery_time {
		display: block;
		width: 115px;
		flex-basis: 115px; /* Flexベースも固定幅に */
        max-width: 115px; /* 最大幅も固定幅に */
        padding: 20px 10px; /* 既存のパディング */
        text-align: center;
        order: 1;
	}
	.menu tr.list_container td.img_cell {
		display: block;
		/* 緑丸の幅が固定になったため、残りのスペース全てを使う */
        flex-grow: 1; /* 残りのスペースを全て使い切る */
        flex-basis: auto;
        max-width: 35%; /* 必要に応じて最大幅を設定 */
        padding: 20px 0 0 0;
        text-align: center; /* 画像をセル内で中央寄せ */
        order: 2;
	}
	.menu tr.list_container td.img_cell img {
		max-width: 100%;
		width: auto;
		height: auto;
		margin: 0 auto;
	}
	.menu tr.list_container td.inner02_cell {
		display: block;
		flex-basis: 100%; /* 全幅を使う */
        max-width: 100%;
        padding: 15px 20px 0 20px;
        order: 3; /* 3番目の位置に表示 */
		text-align: center;
	}
	.menu tr.list_container td.inner02_cell .text_block {
		padding-bottom: 0;
	}
	.menu tr.list_container td.inner03_cell {
		padding: 0 0 10px 0;
	}
	.menu tr.list_container td.inner03_cell.hidden_pc {
		display: none !important;
	}
	.menu tr.list_container td.inner03_cell.hidden_sp {
		display: block !important;
        flex-basis: 100%; /* 全幅を使う */
        max-width: 100%;
        padding: 0 20px 10px 20px;
        text-align: center;
        order: 4; /* 4番目の位置に表示 */
	}
	.menu tr.list_container td.inner03_cell.hidden_sp a {
        white-space: nowrap; 
        display: block;
        text-align: center;
    }
	.menu tr.list_container td.inner03_cell.hidden_pc .list_price1 {
		display: inline-block;
	}
	.menu tr.list_container td.inner03_cell.hidden_pc .list_price1 span {
		display: inline-block;
	}
	/* .menu tr.list_container td.inner03_cell.hidden_sp .list_price1,
	.menu tr.list_container td.inner03_cell.hidden_sp .list_price2 {
		display: inline-block;
		margin-bottom: 0;
	} */
	/* .menu tr.list_container td.inner03_cell.hidden_sp {
        text-align: right;
	} */
	.menu tr.list_container td.inner03_cell .list_price1 span {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 500px) {
	.delivery_time_box {
		width: 78px;
		height: 78px;
	}
	.delivery_time_01 {
		font-size: 1.125rem;
	}
	.delivery_time_02 {
		font-size: 0.8rem;
	}
	.delivery_time_02 span {
		font-size: 0.9rem;
	}
	.menu tr.list_container td.inner02_cell .text_block .list_goods_name,
	.menu tr.list_container td.inner02_cell .text_block .list_quantity {
		font-size: 1rem;
	}
	.delivery_time {
		width: 95px;
		flex-basis: 95px; /* Flexベースも固定幅に */
        max-width: 95px; /* 最大幅も固定幅に */
        padding: 20px 10px; /* 既存のパディング */
	}
	.menu tr.list_container td.img_cell {
        max-width: 45%; /* 必要に応じて最大幅を設定 */
        padding: 20px 0 0 10px;
	}
}



/*****************************
リストに戻る追従ボタン
*****************************/
.return_to_list {
	position: fixed;
	bottom: -80px;
	left: 10px;
	z-index: 1;
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background-color: #ec5f5f;
	color: #fff;
	text-align: center;
	box-shadow: 5px 5px 5px #f1b2b2;
	overflow: hidden;
	opacity: 0;
}
.return_to_list a {
	font-size: 1.375rem;
	font-weight: bold;
	line-height: 1.3;
	display: flex;
	justify-content: center;
	position: absolute;
	align-items: center;
	color: #fff;
	text-decoration: none;
	width: 100%;
	height: 100%;
}
.return_to_list a:hover,
.return_to_list a:visited {
	color: #fff !important;
}
.return_to_list.fixed {
	position: fixed;
	bottom: 80px;
	animation: slideUp 0.4s ease-in-out;
	z-index: 99;
	opacity: 1;
}

@keyframes slideUp {
	0% { transform: translateY(100px); }
	100% { transform: translateY(0px); }
}

@media screen and (min-width: 1200px) {
	.return_to_list {
		left: 60px;
		bottom: 100px;
	}
}
@media screen and (max-width: 767px) {
	.return_to_list {
		width: 90px;
		height: 90px;
	}
	.return_to_list a {
		font-size: 1.25rem;
	}
	.return_to_list.fixed {
		bottom: 50px;
		left: 20px;
	}
}



/*****************************
SALE期間
*****************************/
.period {
	display: block;
	width: 550px;
	margin: 40px auto 70px auto;
	padding: 10px 20px 8px 20px;
	color: #fff;
	background-color: #fd4972;
	font-size: 1.625rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}
.period p {
	width: 100%;
	margin: 0;
}
.period .small {
	font-size: 1.125rem;
}

/* 550以下で改行 */
.hidden_550 {
	display: none;
}
@media screen and (max-width: 767px) {
	.period {
		font-size: 1.375rem;
		width: 85%;
	}
	.period .small {
		font-size: 0.875rem;
	}
}
@media screen and (max-width: 550px) {
	.period {
		width: max-content;
	}
	.period p {
		width: 100%;
	}
	.hidden_550 {
		display: block;
	}
}


/*****************************
商品詳細
*****************************/
.column1_items {
	padding: 40px 0 0 0;
	margin: 20px 0 60px 0;
	border-top: 6px dotted #8ccdb8;
}
.column1_items:last-child {
	margin-bottom: 0;
}
@media screen and (max-width: 767px) {
	.column1_items {
		padding: 40px;
		margin: 20px 0 0 0;
	}
}
@media screen and (max-width: 500px) {
	.column1_items {
		padding: 20px;
		margin-bottom: 30px;
	}
}

/*****************************
商品画像とテキストを flex
大画像と小画像　切り替え
*****************************/
.column1 .flex_items {
	width: 50%;
	justify-content: space-between;
}
.column1 .flex_items.img_box {
	padding-right: 40px;
	display: flex;
    flex-direction: column;
	justify-content: flex-start;
    align-items: center;
	padding-right: 40px;
	min-width: 0;
	overflow: hidden;
}

.column1 .img_box_small {
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
}
.column1 .img_box_small .flex_items {
	width: 32%;
	line-height: 0;
	box-sizing: border-box;
	border: 1px solid #727272;
	border-radius: 10px;
	overflow: hidden;
}
.column1 .img_box_small.agricultural .flex_items {
	width: 48%;
}
@media screen and (max-width: 767px) {
	.column1 .flex_items {
		width: 100%;
	}
	.column1 .flex_items.img_box .flex {
		flex-direction: row;
		margin-bottom: 10px;
	}
	.column1 .flex_items.img_box {
		padding-right: 0;
	}
}

/* 画像が選ばれているときの太線 */
.column1 .img_box_small .flex_items.select {
	border: 4px solid #1200b4;
}

/* 小さい画像が選ばれていないときのマスク */
.column1 .img_box_small .flex_items.mask {
	position: relative;
}
.column1 .img_box_small .flex_items.mask::after {
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	content: "";
	top: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.3);
}

/* クリックマーク */
.column1 .img_box_small .flex_items {
	position: relative;
}
.column1 .img_box_small .flex_items:hover {
	cursor : pointer;
}
.column1 .img_box_small .flex_items .click_mark {
	position: absolute;
	width: calc(49%);
	height: calc(18%);
	top: 40%;
	left: 25%;
	z-index: 10;
}
.column1 .img_box_small .flex_items .click_mark img {
	max-width: 100%
}

@media screen and (max-width: 767px) {
	.column1 .img_box_small .flex_items .click_mark {
		width: calc(49%);
		height: calc(18%);
		top: 40%;
		left: 25%;
	}
}

/* maskがないときは消える */
.non_mask_hidden {
	display: none;
}


/*****************************
商品名・規格名・キャッチ
*****************************/
/* 商品名と規格名を1行に */
.flex_inline {
	display: inline-flex;
}
/* 上下に線 */
.border_top_bottom {
	/* border-top: 1px dotted #0B1F32;
	border-bottom: 1px dotted #0B1F32; */
	padding: 12px 0;
	margin-bottom: 20px;
}

/* 商品名・規格名 */
.goods_name {
	font-size: 1.375rem;
	font-weight: bold;
	letter-spacing: 1px;
}

/* キャッチ */
.catchphrase {
	font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
	font-size: 1.25rem;
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1.3;
	color: #d62b1f;
	padding: 0 0 20px 0;
}
@media screen and (max-width: 870px) {
	.catchphrase {
		font-size: 1.25rem;
	}
}
@media screen and (max-width: 767px) {
	.catchphrase {
		font-size: 1.25rem;
	}
}

/* キャッチ微調整 */
#goods_04 .catchphrase {
	width: calc(100% - 110px);
}
#goods_16 .catchphrase {
	width: calc(100% - 110px);
}
#goods_17 .catchphrase {
	width: calc(100% - 110px);
}
#goods_19 .catchphrase {
	width: calc(100% - 140px);
}


/*****************************
受注期間とお届け期間　（schedule）
*****************************/
.column1 .schedule {
	border-collapse: collapse;
	font-size: 1.125rem;
	font-weight: bold;
	margin: 40px auto;
}
.column1 .schedule .schedule_tr {
	border-top: 2px solid #469b5d;
	border-right: 2px solid #469b5d;
}
.column1 .schedule .schedule_td,
.column1 .schedule .schedule_th {
	font-weight: bold;
	padding: 10px 20px;
	border-bottom: 2px solid #469b5d;
	border-left: 2px solid #469b5d;
}
.column1 .schedule .schedule_th {
	background-color: #b1ddbd;
}

@media screen and (max-width: 767px) {
	.column1 .schedule {
		margin: 25px auto;
	}
	.column1 .schedule .schedule_td,
	.column1 .schedule .schedule_th {
		padding: 5px 20px;
	}
}


/*****************************
商品詳細の画像
*****************************/
.column1 .flex_items.img_box .img_box_big {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: 20px;
	line-height: 1;
}
.column1 .flex_items.img_box .img_box_big .goods_item_img {
	border: 2px solid #727272;
	box-sizing: border-box;
	width: 100%;
}

/* 表（画像） */
.column1 .flex_items.img_box .imgbox_02 .img_02 {
	display: block;
	max-width: 100%;
	margin: 20px 0;
}

@media screen and (max-width: 767px) {
	.column1 .flex_items {
		width: 100%;
	}
	.column1 .flex_items.img_box {
		padding-right: 0;
		margin-bottom: 10px;
	}
}

/*****************************
商品詳細　.text_box
*****************************/
.explanation p,
.explanation_sub p {
	margin-bottom: 15px;
}

/* 商品説明メイン */
.explanation {
	font-size: 1rem;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

/* 詳細サブコメント */
.explanation_sub {
	font-size: 1rem;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
.explanation_sub .attention {
	color: #f00;
}

@media screen and (max-width: 767px) {
	.explanation,
	.explanation_sub {
		font-size: 0.9rem;
		line-height: 1.4;
	}	
}

/* 商品説明メインと詳細サブコメントの間の線 */
.hr1 {
	width: 80%;
	margin: 25px auto;
	border-top: 4px dotted #979797;
}

/* セット内容 */
.set_contents {
	font-size: 0.9rem;
	font-weight: bold;
	color: #191970;
	letter-spacing: 1px;
	line-height: 1.4;
	border: 1px solid #191970;
	border-radius: 5px;
	padding: 5px 10px;
	margin: 25px 0;
}

@media screen and (max-width: 767px) {
	.set_contents {
		margin: 15px 0;
	}
}

/* セット内容の上の注意書き */
#goods_31 .noncolor {
	font-size: 1rem;
	padding-bottom: 20px;
}

/* メーカー名 (画像) */




/* SALEラベル */
/* .sale_label {
	display: block;
	width: 34px;
	color: #fff;
	background-color: #ce2524;
	font-size: 0.875rem;
	font-weight: 700;
	padding: 5px 12px 3px 10px;
	margin-bottom: 10px;
} */

/* 価格ラベル（特２） */
/* .price_label {
	display: inline-block;
	color: #fff;
	background-color: #ce2524;
	font-size: 1rem;
	font-weight: bold;
	padding: 16px 18px 4px 18px;
	margin-right: 10px;
}
.price1 {
	font-size: 2rem;
	font-weight: bold;
	margin: 0 5px;
}
@media screen and (max-width: 767px) {
	.price1 {
		font-size: 1.75rem;
	}
} */

/* 価格ラベル（特１） */
/* .price_label.sale01 {
	color: #ce2524;
	background-color: transparent;
	padding-top: 0;
} */

/* 価格ラベル（通常価格） */
.price_box {
	display: table;
	margin: 0 auto 40px auto;
}
.price_label {
	display: table-cell;
	font-size: 1rem;
	font-weight: bold;
	padding: 0 18px 0 0;
	margin-right: 10px;
	vertical-align: middle;
	line-height: 1;
}
.price_label.sale {
	color: #fff;
	background-color: #ce2524;
	padding: 16px 18px 4px 18px;
}
.price1 {
	font-size: 2rem;
	font-weight: bold;
	margin: 0 5px;
}

/* 送料込みラベル */
.shipping_included {
	display: table-cell;
	font-size: 0.875rem;
	font-weight: bold;
	color: #d62b1f;
	border: 1px solid #d62b1f;
	border-radius: 1px;
	padding: 2px 10px 0px 10px;
	vertical-align: middle;
}

@media screen and (max-width: 1000px) {
	.price_box {
		text-align: center;
	}
	.price1 {
		font-size: 1.75rem;
	}
	.price_label {
		display: block;
		margin: 0 auto 10px auto;
	    padding: 0;
	}
	.shipping_included {
		display: inline-block;
		margin: 0 auto;
	}


}



/* 宮古の瓶ドン　５本入り　特１　お試し価格 */
.sale_label.sale1 {
	display: inline-block;
	color: #ce2524;
	background-color: transparent;
	font-size: 1rem;
	padding-left: 0;
	margin-bottom: 0;
}
.price_label.sale1 {
	color: #ce2524;
	background-color: transparent;
	font-size: 1rem;
}
#goods_04 .trial_price {
	display: inline-block;
	color: #fff;
	background-color: #ce2524;
	border-radius: 8px;
	font-size: 1.25rem;
	font-weight: bold;
	padding: 5px 20px;
	margin-right: 10px;
}

/*****************************
カテゴリへ飛ばすボタン
*****************************/
.btn_to_category a {
	color: #fff;
	width: 450px;
	border-left: 3px solid #ff7300;
	border-top: 3px solid #ff7300;
	border-right: 3px solid #e64a02;
	border-bottom: 3px solid #e64a02;
	background-color: #ff7300;
}
.btn_to_category a:hover {
	color: #ff7300!important;
	border-right: 3px solid #ff7300;
	border-bottom: 3px solid #ff7300;
	background-color: #fff;
	opacity: 1;
}
#reservation .btn_to_category a span {
	padding-right: 15px;
}
@media screen and (max-width: 600px) {
	#reservation .btn_to_category a {
		justify-content: left;
		padding-left: 20px;
		width: 250px;
	}
	#reservation .btn_to_category a::after {
		right: 20px;
	}
	#reservation .btn_to_category a span {
		font-size: 1.125rem;
		margin-right: 25px;
	}
}


/*****************************
ご注文ボタン
*****************************/
.btn_order {

}
.btn_order a {
    width: 240px;
    border: 2px solid #fd4972;
    background-color: #fd4972;
    color: #fff;
	margin: 0 auto;
}
.btn_order a:hover,
.btn_order a:active {
    color: #fd4972;
    background-color: #fff;
}
@media screen and (min-width: 1000px) {
	#reservation .btn_order a {
		width: 300px;
		margin: 30px auto 0 auto;
	}
}
@media screen and (max-width: 999px) {
	#reservation .btn_order a {
		width: 330px;
		margin: 30px auto 0 auto;
	}
}
@media screen and (max-width: 767px) {
	#reservation .btn_order a {
		width: 300px;
		height: 60px;
	}
}
@media screen and (max-width: 550px) {
	#reservation .btn_order a::after {
		right: 20px;
	}
}


/*****************************
トップページに戻るボタン　中央
*****************************/
#reservation .btn_to_top a {
	margin: 0 auto;
}



/*****************************
フッター
*****************************/
#footer {
	padding-top: 0;
}
.copyright{
	padding-top: 20px;
}


/***************************************
受注時間によって、注文ボタンを切り替える
***************************************/
.reservation {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

/* 2種類のボタン */
.order_now a {
	font-size: 1.3rem;
    border: 2px solid #fd4972;
    background-color: #fd4972;
    color: #fff;
}
.order_end a {
	font-size: 1.3rem;
    border: 2px solid #808080;
    background-color: #808080;
    color: #fff;
}

/* ご注文ボタンの hover */
.btn_order.order_now a:hover,
.btn_order.order_now a:active {
    color: #fd4972 !important;
    background-color: #fff;
}

/* ご注文の受付終了ボタンをリンク飛ばさない */
.disabled {
	pointer-events: none;
}

/* タイマー切り替え */
.timer_hidden {
    display: none;
}
.timer_visible {
    display: block;
}

/* リストのタイマー設定 */
.reservation_list_table .timer_visible {
	display: table-row;
}
@media screen and (max-width: 767px) {
	.reservation_list_table .timer_visible {
		display: table-row;
	}
}

