/* CSS Document */

/* =========================================================
   お弁当店頭販売ページ専用
   tentouhanbai.html 以外の既存ページには影響させない
========================================================= */

body.tentouhanbai #r_box {
	background-color: #ffffff;
}

body.tentouhanbai #l_box .scrolllayer {
	padding-top: 14px;
	text-align: center;
}

body.tentouhanbai .tentou-page {
	width: 666px;
	margin: 0px 24px;
	padding: 0px 0px 28px;
	color: #332b25;
	text-align: left;
}

/* メインビジュアル old 
body.tentouhanbai .tentou-hero {
	box-sizing: border-box;
	margin: 0px 0px 12px;
	padding: 13px 11px 10px;
	border: 1px solid #ead7bd;
	border-radius: 10px;
	background-color: #fffdf9;
	background-image: linear-gradient(to bottom, #ffffff 0%, #fffaf3 100%);
	box-shadow: 0px 2px 7px rgba(120, 82, 42, 0.10);
}
*/

/* メインビジュアル */

body.tentouhanbai .tentou-hero {
    position: relative;
    overflow: hidden;

    box-sizing: border-box;

    margin: 0px 0px 12px;
    padding: 13px 11px 10px;

    border: 1px solid #e5c69b;
    border-radius: 10px;

    /* グラデーション非対応環境用 */
    background-color: #fff8ed;

    /* 薄いベージュから淡い朱色 */
    background-image: linear-gradient(
        135deg,
        #fffdf8 0%,
        #fff6e7 58%,
        #fff0e9 100%
    );

    box-shadow: 0px 3px 10px rgba(120, 75, 25, 0.12);
}


body.tentouhanbai .tentou-hero-main {
    position: relative;
    height: 172px;
    overflow: visible;
}


/* コピーエリア */

body.tentouhanbai .tentou-hero-copy {
    position: relative;
    z-index: 3;
    width: 360px;
    padding: 14px 0;
    text-align: center;
}


/* ---------------------------------------------------------
   店名
   ボタン風をやめて、タイトル上の小見出しとして統一
--------------------------------------------------------- */

body.tentouhanbai .tentou-shop-name {
    position: relative;

    display: inline-block;

    margin: 0px 0px 4px;
    padding: 0px 22px;

    background: none;
    border: 0px;
    border-radius: 0px;
    box-shadow: none;
    text-shadow: none;

    color: #b14418;

    font-size: 15px;
    font-weight: bold;
    line-height: 1.4em;
    letter-spacing: 2px;

    text-align: center;
}


/* 左右の飾り線 */
body.tentouhanbai .tentou-shop-name::before,
body.tentouhanbai .tentou-shop-name::after {
    content: "";

    position: absolute;
    top: 50%;

    width: 16px;
    height: 1px;

    margin-top: -1px;

    background-color: #d3a04f;
}

body.tentouhanbai .tentou-shop-name::before {
    left: 0px;
}

body.tentouhanbai .tentou-shop-name::after {
    right: 0px;
}

/* ---------------------------------------------------------
   メインタイトル
--------------------------------------------------------- */

body.tentouhanbai .tentou-hero h2 {
    margin: 0px 0px 10px;
    padding: 0px;

    border: 0px;
    border-bottom: 0px;
    background: none;
    box-shadow: none;

    color: #b40000;

    font-size: 31px;
    font-weight: bold;
    line-height: 1.2em;
    letter-spacing: 1px;

    text-shadow:
        0px 1px 0px #ffffff,
        0px 2px 2px rgba(100, 35, 20, 0.08);
}

/* ---------------------------------------------------------
   説明文＋タイトル下の飾り線
--------------------------------------------------------- */

body.tentouhanbai .tentou-lead {
    position: relative;

    margin: 0px;
    padding: 24px 0px 0px;

    color: #382f28;

    font-size: 13px;
    font-weight: bold;
    line-height: 1.7em;

    text-align: center;
}


/* 金色の飾り線 */

body.tentouhanbai .tentou-lead::before {
    content: "";

    position: absolute;
    top: 12%;
    left: 50%;

    width: 270px;
    height: 2px;

    margin-left: -135px;

    background-image: linear-gradient(
        to right,
        transparent 0%,
        #d3a04f 7%,
        #d3a04f 43%,
        transparent 43%,
        transparent 57%,
        #d3a04f 57%,
        #d3a04f 93%,
        transparent 100%
    );
}




/* 中央の赤い飾り */

body.tentouhanbai .tentou-lead::after {
    content: "";

    position: absolute;
    top: -9px;
    left: 50%;

    width: 62px;
	height: 28px;
	margin-left: -31px;

    background-color: #c8892e;

    -webkit-mask:
        url("../image/tento_bento/icon/icon_mizuhiki.svg")
        center center / contain no-repeat;

    mask:
        url("../image/tento_bento/icon/icon_mizuhiki.svg")
        center center / contain no-repeat;
}

/*
body.tentouhanbai .tentou-lead::after {
    content: "◆";

    position: absolute;
    top: -7px;
    left: 50%;

    box-sizing: border-box;

    width: 28px;

    margin-left: -14px;

    background-color: #fff6e7;

    color: #b71414;

    font-size: 9px;
    line-height: 16px;

    text-align: center;
}
*/

/* ---------------------------------------------------------
   お弁当写真
   現行をほぼそのまま使用
--------------------------------------------------------- */

body.tentouhanbai .tentou-hero-photo {
    position: absolute;
    z-index: 1;

    top: 5px;
    right: 3px;

    width: 250px;
    height: 158px;

    overflow: visible;

    text-align: right;
}


body.tentouhanbai .tentou-hero-photo img {
    display: block;

    width: 238px;
    height: 154px;

    margin: 0px 0px 0px auto;

    border: 0px;

    object-fit: contain;

    transform: rotate(-5deg);
    transform-origin: center center;

    filter: drop-shadow(
        0px 5px 4px rgba(74, 48, 25, 0.22)
    );
}


/* ---------------------------------------------------------
   開始日バッジ
--------------------------------------------------------- */

body.tentouhanbai .tentou-open-badge {
    position: absolute;
    z-index: 4;

    top: 3px;
    right: 204px;

    box-sizing: border-box;

    width: 104px;
    height: 104px;

    padding: 24px 9px 0px;

    border: 2px solid #ffffff;
    outline: 1px solid #d1a04d;
    border-radius: 50%;

    background-color: #c83227;

    background-image: linear-gradient(
        to bottom,
        #d6382e 0%,
        #c32620 55%,
        #ae1715 100%
    );

    color: #ffffff;

    font-style: normal;
    line-height: 1.25em;

    text-align: center;

    box-shadow:
        0px 3px 6px rgba(90, 35, 20, 0.20);
}


body.tentouhanbai .tentou-open-badge span,
body.tentouhanbai .tentou-open-badge strong,
body.tentouhanbai .tentou-open-badge em {
    display: block;
}


body.tentouhanbai .tentou-open-badge span {
    font-size: 11px;
    font-weight: bold;
}


body.tentouhanbai .tentou-open-badge strong {
    margin-top: 1px;
    font-size: 13px;
    line-height: 1.3em;
}


body.tentouhanbai .tentou-open-badge em {
    margin-top: 4px;
    font-size: 12px;
    font-style: normal;
    font-weight: bold;
}

/* ==========================================
   販売情報
   販売時間 / 定休日
========================================== */

body.tentouhanbai .tentou-info {
    display: flex;

    align-items: stretch;
    justify-content: space-between;

    box-sizing: border-box;

    width: 100%;

    margin: 0px 0px 6px;
    padding: 0px 11px;

    gap: 10px;
}


/* ------------------------------------------
   各項目
------------------------------------------ */

body.tentouhanbai .tentou-info-item {
    display: flex;

    align-items: center;

    box-sizing: border-box;

    width: calc((100% - 10px) / 2);
    height: 46px;

    margin: 0px;
    padding: 4px 8px;

    border: 1px solid #e2b778;
    border-radius: 4px;

    background-color: rgba(255, 255, 255, 0.68);

    box-shadow: none;
}


/* ------------------------------------------
   左側
   アイコン＋項目名
------------------------------------------ */

body.tentouhanbai .tentou-info-head {
    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    width: 39%;
    height: 30px;

    margin: 0px;
    padding: 0px 7px 0px 0px;

    border-bottom: none;
    border-right: 1px dotted #d8a052;
}


/* アイコン */

body.tentouhanbai .tentou-info-icon {
    display: block;

    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    margin: 0px 6px 0px 0px;

    border: 0px;
}


/* 項目名 */

body.tentouhanbai .tentou-info-title {
    margin: 0px;
    padding: 0px;

    color: #b46a1c;

    font-size: 13px;
    font-weight: bold;
    line-height: 1.2em;

    white-space: nowrap;
}


/* ------------------------------------------
   右側
------------------------------------------ */

body.tentouhanbai .tentou-info-text {
    display: flex;

    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    box-sizing: border-box;

    width: 61%;
    height: 30px;

    margin: 0px;
    padding: 0px 0px 0px 10px;

    text-align: left;
    line-height: 1.2em;
}


/* メイン情報 */

body.tentouhanbai .tentou-info-text strong {
    display: block;

    margin: 0px;
    padding: 0px;

    color: #312820;

    font-size: 13px;
    font-weight: bold;
    line-height: 1.2em;

    white-space: nowrap;
}


/* 補足 */

body.tentouhanbai .tentou-info-text span {
    display: block;

    margin: 1px 0px 0px;
    padding: 0px;

    color: #65594e;

    font-size: 10px;
    font-weight: normal;
    line-height: 1.1em;

    white-space: nowrap;
}

/* =========================================================
   メインビジュアルの花飾り
========================================================= */

body.tentouhanbai .tentou-hero-flower {
    position: absolute;
    z-index: 2;

    display: block;

    line-height: 0;

    pointer-events: none;
}


body.tentouhanbai .tentou-hero-flower img {
    display: block;

    width: 100%;
    height: 100%;

    border: 0px;
}


/* 花飾り 01 */

body.tentouhanbai .tentou-flower01 {
    top: 8px;
    right: 5px;

    width: 18px;
    height: 18px;

    opacity: 0.72;

    transform: rotate(-12deg);
}


/* 花飾り 02 */

body.tentouhanbai .tentou-flower02 {
    top: 126px;
    right: 267px;

    width: 25px;
    height: 25px;

    opacity: 0.92;

    transform: rotate(15deg);
}


/* 花飾り 03 */

body.tentouhanbai .tentou-flower03 {
    top: 114px;
    right: 222px;

    width: 15px;
    height: 15px;

    opacity: 0.62;

    transform: rotate(35deg);
}

/* 販売情報の案内アイコン */
body.tentouhanbai .tentou-info-icon {
	display: block;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
	margin: 0px 8px 0px 0px;
}

body.tentouhanbai .tentou-info-icon img {
	display: block;
	width: 28px;
	height: 28px;
	border: 0px;
}

body.tentouhanbai .tentou-soldout {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px;
	color: #c60000;
	font-size: 13px;
	font-weight: bold;
	line-height: 1.5em;
	text-align: center;
}

body.tentouhanbai .tentou-soldout img {
	display: block;
	width: 16px;
	height: 16px;
	margin: 0px 6px 0px 0px;
	border: 0px;
}

body.tentouhanbai .tentou-soldout span {
	display: block;
}

/* セクション見出し */
body.tentouhanbai .tentou-section-title {
	display: flex;
	align-items: flex-end;
	box-sizing: border-box;
	margin: 0px 0px 10px;
	padding: 0px 8px 5px;
	border-bottom: 3px solid #c8892e;
}

body.tentouhanbai .tentou-section-title h2 {
	margin: 0px 16px 0px 0px;
	padding: 0px;
	color: #211b17;
	font-size: 23px;
	line-height: 1.2em;
	letter-spacing: 1px;
}

body.tentouhanbai .tentou-section-title h2::after {
	content: "✤";
	margin-left: 8px;
	color: #d5a053;
	font-size: 17px;
}

body.tentouhanbai .tentou-section-title p {
	margin: 0px 0px 2px;
	color: #3d342d;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.4em;
}

/* ==========================================
   お弁当メニュー 見出し
========================================== */

body.tentouhanbai .tentou-section-title.tentou-menu-section-title {

    display: block;

    box-sizing: border-box;

    margin: 0px 0px 10px;

    padding: 0px;

    border-bottom: none;

    text-align: center;

}


/* 筆文字画像 */

body.tentouhanbai .tentou-menu-section-title h2 {

    margin: 0px;

    padding: 0px;

    font-size: 0px;

    line-height: 0px;

}


/* 既存の花マークを消す */

body.tentouhanbai .tentou-menu-section-title h2::after {

    content: none;

}


/* タイトル画像 */

body.tentouhanbai .tentou-menu-section-title h2 img {

    display: block;

    width: 260px;
    height: auto;

    margin: 0px auto -5px;

}


/* 説明文 */

body.tentouhanbai .tentou-menu-section-title p {

    margin: 0px;

    padding: 0px;

    color: #3d342d;

    font-size: 12px;

    font-weight: bold;

    line-height: 1.4em;

    text-align: center;

}

/* 商品5列×2段 
body.tentouhanbai .tentou-products {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0px 0px 4px;
}

body.tentouhanbai .tentou-product {
	box-sizing: border-box;
	width: 126px;
	margin: 0px 0px 11px;
	padding: 4px 4px 7px;
	border: 1px solid #ead7c0;
	background-color: #fffdf9;
	box-shadow: 0px 2px 5px rgba(75, 55, 35, 0.12);
	text-align: center;
}
*/

/* ==========================================
   お弁当商品一覧
   1段目 4個 / 2段目 3個 / 3段目 3個
========================================== */

body.tentouhanbai .tentou-products {

    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    box-sizing: border-box;

    margin: 0 0 30px;
    padding: 0px;

}


/* 商品カード */

body.tentouhanbai .tentou-product {

    box-sizing: border-box;

    margin: 0px;

    padding: 7px 7px 8px;

    border: 1px solid #ead7bd;

    background-color: #fffdf9;

    text-align: center;

}


/* ==========================================
   1段目：4列
========================================== */

body.tentouhanbai .tentou-product:nth-child(-n+4) {

    width: calc((100% - 30px) / 4);

}


/* ==========================================
   2段目・3段目：3列
========================================== */

body.tentouhanbai .tentou-product:nth-child(n+5) {

    width: calc((100% - 20px) / 3);

}

body.tentouhanbai .tentou-product-photo {

    box-sizing: border-box;

    width: 100%;

    margin: 0px 0px 8px;
    padding: 3px;

    background-color: #f7f3ed;

}


body.tentouhanbai .tentou-product-photo img {

    display: block;

    width: 100%;
    height: auto;

    margin: 0px auto;

}

body.tentouhanbai .tentou-product-name {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	margin: 0px;
	padding: 0px 1px 3px;
	color: #261f19;
	font-size: 12px;
	font-weight: bold;
	line-height: 1.3em;
}

/* 4列部分の長い商品名 */

body.tentouhanbai .tentou-product-name-long {

    font-size: 11px;

    letter-spacing: -0.3px;

    white-space: nowrap;

}

body.tentouhanbai .tentou-product-price {
	margin: 0px;
	padding-top: 3px;
	border-top: 1px dotted #cdbda9;
	color: #d00000;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.3em;
}

body.tentouhanbai .tentou-product-price span {
	display: block;
	color: #322c27;
	font-size: 9px;
	font-weight: normal;
	white-space: nowrap;
}




/* ==========================================
   店舗情報・販売案内
========================================== */

body.tentouhanbai .tentou-store-section {
    box-sizing: border-box;

    width: 100%;

    margin: 0px 0px 20px;
    padding: 0px;
}


/* ==========================================
   店舗情報
========================================== */

body.tentouhanbai .tentou-store-info {
    box-sizing: border-box;

    width: 100%;

    margin: 0px 0px 24px;
    padding: 13px 13px 12px;

    border: 1px solid #d98a25;
    border-radius: 7px;

    background-color: #fffdf8;

    background-image: linear-gradient(
        135deg,
        #fffefb 0%,
        #fff9ef 100%
    );
}


/* ==========================================
   店舗情報 見出し
========================================== */

body.tentouhanbai .tentou-store-title {
    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    width: 100%;

    margin: 0px 0px 13px;
    padding: 0px 0px 7px;

    border-bottom: 1px dotted #d7a05c;
}


body.tentouhanbai .tentou-store-title img {
    display: block;

    width: 18px;
    height: 18px;

    margin: 0px 7px 0px 0px;
}


body.tentouhanbai .tentou-store-title h2 {
    float: none !important;

    width: auto !important;
    height: auto !important;

    margin: 0px !important;
    padding: 0px !important;

    border: none !important;

    background: none !important;

    color: #c8261d !important;

    font-size: 16px !important;
    font-weight: bold;
    line-height: 1.2em !important;

    letter-spacing: 1.1px;

    text-align: center;
}


/* 既存h2装飾がある場合の解除 */

body.tentouhanbai .tentou-store-title h2::before,
body.tentouhanbai .tentou-store-title h2::after {
    content: none !important;
}


/* ==========================================
   店舗情報 左右レイアウト
========================================== */

body.tentouhanbai .tentou-store-main {
    display: flex;

    align-items: flex-start;

    box-sizing: border-box;

    width: 100%;

    margin: 0px;
    padding: 0px;
}


/* ==========================================
   左：店舗基本情報
========================================== */

body.tentouhanbai .tentou-store-detail {
    float: none !important;

    flex: 0 0 47%;

    box-sizing: border-box;

    width: 47% !important;
    max-width: 47%;

    min-width: 0px;

    margin: 0px;
    padding: 3px 18px 0px 10px;
}


/* ------------------------------------------
   店名
------------------------------------------ */

body.tentouhanbai .tentou-store-detail h3 {
    float: none !important;

    display: block !important;

    box-sizing: border-box;

    width: 100% !important;
    height: auto !important;

    margin: 0px 0px 16px !important;
    padding: 0px !important;

    border: none !important;
    border-radius: 0px !important;

    background: none !important;
    background-image: none !important;

    color: #5b2817 !important;

    font-size: 20px !important;
    font-weight: bold !important;
    line-height: 1.3em !important;

    letter-spacing: 0px !important;

    text-align: center !important;
}


/* 既存h3装飾を解除 */

body.tentouhanbai .tentou-store-detail h3::before,
body.tentouhanbai .tentou-store-detail h3::after {
    content: none !important;

    display: none !important;
}


/* ==========================================
   店舗情報一覧
========================================== */

body.tentouhanbai .tentou-store-detail dl {
    float: none !important;

    display: grid !important;

    grid-template-columns: 32px 1fr;

    column-gap: 7px;
    row-gap: 12px;

    box-sizing: border-box;

    width: 100% !important;

    margin: 0px !important;
    padding: 0px !important;

    border: none !important;

    background: none !important;
}


body.tentouhanbai .tentou-store-detail dt {
    float: none !important;
    clear: none !important;

    display: block !important;

    box-sizing: border-box;

    width: auto !important;
    height: auto !important;

    margin: 0px !important;
    padding: 1px 0px 0px !important;

    border: none !important;

    background: none !important;

    color: #b66e17 !important;

    font-size: 22px !important;
    font-weight: normal !important;
    line-height: 1.3em !important;

    text-align: center !important;
}


body.tentouhanbai .tentou-store-detail dd {
    float: none !important;
    clear: none !important;

    display: block !important;

    box-sizing: border-box;

    width: auto !important;
    height: auto !important;

    margin: 0px !important;
    padding: 0px !important;

    border: none !important;

    background: none !important;

    color: #3d342d !important;

    font-size: 13px !important;
    font-weight: normal !important;
    line-height: 1.65em !important;

    text-align: left !important;
}


body.tentouhanbai .tentou-store-detail dd strong {
    margin-right: 7px;

    color: #4a281c;

    font-weight: bold;
}


/* ==========================================
   右：Google Map
========================================== */

body.tentouhanbai .tentou-store-map {
    float: none !important;

    flex: 0 0 53%;

    box-sizing: border-box;

    width: 53% !important;
    max-width: 53%;

    min-width: 0px;

    margin: 0px;
    padding: 0px 0px 0px 9px;
}


body.tentouhanbai .tentou-store-map iframe {
    display: block;

    box-sizing: border-box;

    width: 100% !important;
    height: 205px !important;

    margin: 0px;
    padding: 0px;

    border: 1px solid #e0b87c !important;
    border-radius: 5px;

    background-color: #ffffff;
}


/* ==========================================
   店頭販売について
========================================== */

/* wrapperが残っていても1カラムで表示 */

body.tentouhanbai .tentou-guide-wrap {
    display: block;

    box-sizing: border-box;

    width: 100%;

    margin: 0px;
    padding: 0px;
}


/* ==========================================
   店頭販売 共通カード
========================================== */

body.tentouhanbai .tentou-guide-box {
    position: relative;

    float: none !important;

    box-sizing: border-box;

    width: 100%;

    margin: 0px;
    padding: 12px 15px 14px;

    border: 1px solid #d98a25;
    border-radius: 7px;

    background-color: #fffdf8;

    background-image: linear-gradient(
        135deg,
        #fffefb 0%,
        #fff8ed 100%
    );
}


/* ==========================================
   見出し
========================================== */

body.tentouhanbai .tentou-guide-title {
    display: flex;

    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    width: 100%;

    margin: 0px 0px 11px;
    padding: 0px 0px 7px;

    border-bottom: 1px dotted #d7a05c;
}


body.tentouhanbai .tentou-guide-title img {
    display: block;

    width: 16px;
    height: 16px;

    margin: 0px 6px 0px 0px;
}


/* 既存サイトのh3を解除 */

body.tentouhanbai .tentou-guide-title h3 {
    float: none !important;

    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0px !important;
    padding: 0px !important;

    border: none !important;
    border-radius: 0px !important;

    background: none !important;
    background-image: none !important;

    color: #c8261d !important;

    font-size: 17px !important;
    font-weight: bold !important;
    line-height: 1.3em !important;

    letter-spacing: 0px !important;

    text-align: center !important;
}


/* 既存h3装飾を解除 */

body.tentouhanbai .tentou-guide-title h3::before,
body.tentouhanbai .tentou-guide-title h3::after {
    content: none !important;

    display: none !important;
}


/* ==========================================
   店頭販売 本文
========================================== */

body.tentouhanbai .tentou-guide-content {
    box-sizing: border-box;

    width: 100%;

    margin: 0px;
    padding: 3px 10px 0px;
}


body.tentouhanbai .tentou-guide-content p {
    margin: 0px 0px 7px;
    padding: 0px;

    color: #493a31;

    font-size: 12px;
    line-height: 1.8em;
}


/* ==========================================
   店頭販売 注意書き
========================================== */

body.tentouhanbai .tentou-guide-caution {
    display: flex;

    align-items: center;

    box-sizing: border-box;

    width: 100%;

    margin: 9px 0px 0px;
    padding: 9px 12px;

    border: 1px solid #ee8d7e;
    border-radius: 5px;

    background-color: #fff3f0;
}


body.tentouhanbai .tentou-caution-icon {
    flex: 0 0 auto;

    display: block;

    width: 18px;
    height: 18px;

    margin: 0px 9px 0px 0px;

    background-color: #c96f24;

    -webkit-mask:
        url("../image/tento_bento/icon/icon_warning.svg")
        center center / contain no-repeat;

    mask:
        url("../image/tento_bento/icon/icon_warning.svg")
        center center / contain no-repeat;
}


body.tentouhanbai .tentou-caution-icon img {
    display: block;

    width: 24px;
    height: 24px;

    margin: 0px;
    padding: 0px;

    border: 0px;
}


/* ==========================================
   仕出し・配達弁当 案内
========================================== */

body.tentouhanbai .tentou-delivery-guide {
    display: flex;

    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;

    width: 100%;

    margin: 12px 0px 0px;
    padding: 11px 12px;

    border-top: 1px dotted #d7a05c;

    background-color: #fffaf1;
}


/* ------------------------------------------
   仕出し案内 左側
------------------------------------------ */

body.tentouhanbai .tentou-delivery-text {
    flex: 1;

    box-sizing: border-box;

    min-width: 0px;

    margin: 0px;
    padding: 0px 15px 0px 0px;
}


body.tentouhanbai .tentou-delivery-text p {
    margin: 0px;
    padding: 0px;

    color: #493a31;

    font-size: 11px;
    line-height: 1.65em;
}


/* 小見出し */

body.tentouhanbai .tentou-delivery-text .tentou-delivery-title {
    margin: 0px 0px 3px;

    color: #9a4f17;

    font-size: 13px;
    font-weight: bold;
    line-height: 1.4em;
}


/* ==========================================
   ご注文の流れ ボタン
========================================== */

body.tentouhanbai .tentou-delivery-button {
    flex: 0 0 170px;

    box-sizing: border-box;

    width: 170px;

    margin: 0px;
    padding: 0px;
}


body.tentouhanbai .tentou-delivery-button a {
    display: block;

    box-sizing: border-box;

    width: 100%;

    padding: 9px 7px;

    border: 1px solid #d68120;
    border-radius: 4px;

    background-color: #ffffff;

    color: #6a351e;

    font-size: 11px;
    font-weight: bold;
    line-height: 1.4em;

    text-align: center;
    text-decoration: none;
}


body.tentouhanbai .tentou-delivery-button a:hover {
    background-color: #fff1d9;

    color: #c5281d;

    text-decoration: none;
}


body.tentouhanbai .tentou-delivery-button .bi-file-earmark-text {
    margin-right: 4px;

    color: #c77918;
}


body.tentouhanbai .tentou-delivery-button .bi-chevron-right {
    margin-left: 4px;

    color: #c77918;
}