@charset "utf-8";
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ハンバーガーメニューのカスタマイズ(2023-03-13mk)
↓↓↓下記をまずは削除した上で、【https://coco-factory.jp/ugokuweb/move01-cat/humbugermenu/】から、お好みのボタンのCSSを追加
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.sp .my_hamburger {
	width: 55px;
}

.openbtn{
	position: relative;/*ボタン内側の基点となるためrelativeを指定*/
	background:transparent;
	cursor: pointer;
	width: 50px;
	height:50px;
	border-radius: 5px;
}

/*ボタン内側*/
.openbtn span{
	display: inline-block;
	transition: all .4s;/*アニメーションの設定*/
	position: absolute;
	left: 12px;
	height: 2px;
	background: var(--main);
	width: 50%;
}

.openbtn span:nth-of-type(1) {
	top:14px; 
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:32px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*グロナビ*/
/* カレント */
body[class*='archive-menu '] .main-nav ul:not(.sub-menu) > li.menu > a,
body[class*='voice'] .main-nav ul:not(.sub-menu) > li.voice > a {
	color: var(--main);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
縦文字
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.tate {
	writing-mode: vertical-rl;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ノート時 > wbr改行
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.note_kaigyo {
	word-break: keep-all;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
投稿　＞　記事詳細
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.post-term-item:not(:nth-of-type(1)) {
    display:inline-block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
投稿　＞　目次デザイン（2024-08-30 mkw)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#toc_container ul.toc_list li {
	font-size: 19px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
下層 > パック給食・配食サービス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hikakuhyo table {
    border-collapse: separate;
}

/*パック比較表 赤線*/
body[class*="pack"] .hikakuhyo tr:first-child th:nth-child(2) {
    background: var(--main);
    border: 3px solid var(--main);
    color: #fff;
}

body[class*="pack"] .hikakuhyo td:first-of-type {
    border-left: 3px solid var(--main);
    border-right: 3px solid var(--main);
}

body[class*="pack"] .hikakuhyo tr:last-child td:first-of-type,
body[class*="pack"] .hikakuhyo tr:nth-last-child(3) td:last-child{
    border-bottom: 3px solid var(--main);
}
/*配食比較表 赤線*/
body[class*="delivery"] .hikakuhyo tr:first-child th:last-child {
    background: var(--main);
    border: 3px solid var(--main);
    color: #fff;
}

body[class*="delivery"] .hikakuhyo td:last-of-type {
    border-left: 3px solid var(--main);
    border-right: 3px solid var(--main);
}

body[class*="delivery"] .hikakuhyo tr:last-child td:first-of-type,
body[class*="delivery"] .hikakuhyo tr:nth-last-child(3) td:first-of-type{
    border-bottom: 3px solid var(--main);
}




