﻿/***************Web画面 CSS 作成2019/12/27***************/

/*************基本設定*************/
html{
	font-size: 13px;
	color: #4e4e4e;
}
body{
	margin:0px;
	padding:0px;
	line-height: 1.5em;
	font-family: 'Arial',YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ ゴシック',sans-serif;
	/* display: flex;
	flex-flow: column;
	min-height: 100vh; */
}
main{
	
}
section{

}
/* コンテンツ横幅 */
.site-width{
	max-width: 980px;
	min-width: 320px;
	margin: 0 auto;
	/* text-align: center; */
}

.bg-grey{
	background-color: #e5e5e5;
}
h1,h2,h3,h4,h5,h6{
  margin: 0;
	padding: 0;
	font-size: 20px;
}


ul{
	padding: 0px;

}
p{
	margin: 0;
	padding: 0;
	font-size: 13px;
}
label{
	display: block;
	cursor:pointer;
}
li{
	list-style: none;
  /* text-align: center; */
}
a{
	/* text-decoration: none; */
	display: inline-block;
	color: #4e4e4e;
}
select {
    padding: 5px;
}
dd{
	margin:0px;
}
dt{
	margin-bottom:5px;
}
input[type="submit"],button{
	border: none;
}

select,input[type="text"],input[type="password"]{
	padding: 10px;
	border: 2px solid #e5e5e5;
	width: 100%;
	box-sizing: border-box;
	font-size: 100%;
}


/* --------------------------------------- */
/* 共通パーツ */
.wrapper{
	padding: 5px 10px;
	margin: 15px auto;
	box-sizing: border-box;
}
.bg-white{
	background-color: #fff;
	max-width: 980px;
	min-width: 320px;
	/* margin: 0 auto; */
	/* text-align: center; */
}
.bento-wrapper{
	box-sizing: border-box;
	border-radius: 30px;
}
@media screen and (min-width:771px) {
	.wrapper{
		padding: 5px 60px;
		margin: 50px auto;
	}
}
@media screen and (min-width:981px) {
  .wrapper {
    border-radius: 30px;
  }
}



/* フォーム */
.login-container{
	margin: 30px auto;
	max-width: 450px;
}
.err-msg{
	padding-bottom: 15px;
	font-weight: bold;
	color: #fb0101;
}

.form-container{
	width: 100%;
}
.main-container{
	width: 100%;
	margin: 30px auto;
}
.sub-container{
	margin: 20px auto;
}
.bento-container{
	width: 400px;
	margin: 30px auto;
	padding: 30px;
}
.grey-container{
	border: 1px solid #e5e5e5;
	border-radius: 30px;
	padding: 20px;
	width: 90%;
}

.item-control{
	margin-bottom: 20px;
}
.item-center{
	text-align: center;
}
.main-title{
	font-size: 16px;
	/* text-align: center; */
}
.sub-title{
	font-size: 16px;
}
.bold-item{
	font-weight: bold;
}
.orange-bottom{
	padding: 0 0 5px 0;
	border-bottom: 2px dotted #faaa20;
}
.grey-bottom{
	border-bottom: 2px solid #e5e5e5;
}
.grey-dot-border{
	border: 2px dotted #e5e5e5;
}
.border-grey{
	border: 2px solid #e5e5e5;
}
.color-grey{
	color: #4e4e4e;
}
.border-blue{
	border: 2px solid #abf3ff;;
}
.color-blue{
	color: #abf3ff;
}
.border-pink{
	border: 2px solid #f96262fa;
}
.color-pink{
	color: #f96262fa;
}
.border-green{
	border: 2px solid #179600;
}
.color-green{
	color: #179600;
}
.border-offWhite{
	border: 2px solid #e6e3c5 ;
}
.color-offWhite{
	color: #e6e3c5;
}
.border-beige{
	border: 2px solid #ffac7b ;
}
.color-beige{
	color: #ffac7b;
}



.obento-item{
	margin: 15px;
	/* text-align: center; */
}



.obento-item span{
	font-size: 20px;
}
.bento-img{
	width: 70px;
}
.bento-header{
	/* display: flex;
	display:-webkit-box;
  display:-ms-flexbox; */
}
.bento-header-item{
	margin: 5px;
}
.bold_dt{
	font-size: 16px;
	padding: 3px;
	font-weight: bold;
}




/* ● */
.orange-circle{
	color: #faaa20;
 }
 .blue-circle{
	color: rgba(51, 153, 255, 0.8);
 }
 .pink-circle{
	color: #f96262;
 }
 .green-circle{
	color: #179600;
 }
 .purple-circle{
	color: #9210d4;
 }
 .grey-circle{
	color: #4e4e4e;
 }

.text-area{
	/* text-align: justify; */
	text-align: left;
	
}





/* ボタン */
.btn{
	padding: 10px;
	border-radius: 10px;
	font-weight: bold;
	font-size: 16px;
	width: 100%;
	max-width: 200px;
	text-align: center;
	box-sizing: border-box;
	margin: 5px 10px;
	text-decoration: none;
}
.obento-btn{
	padding: 5px 30px;
	border-radius: 30px;
	font-weight: bold;
	font-size: 12px;
	width: 100%;
	/* max-width: 240px; */
	text-align: center;
	box-sizing: border-box;
	margin: 5px auto
}
.btn-orange{
	color: #fff;
	background: #faaa20;
}
.btn-orange:hover,.btn-orange:active{
	background: #f8c773;
	transition: all .3s;
}
.btn-grey{
	background: #e5e5e5;
}
.btn-out-orange{
	border: solid 2px #faaa20;
}
.btn-out-orange:hover{
	text-decoration: underline;
}
.btn-out-active{
	background: #f8c773;
	transition: all .3s;
	text-decoration: none;
}
.btn-area{
	margin: 10px auto;
	text-align: center;
}
.btn-cancel{
	padding: 5px;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	box-sizing: border-box;
	/* margin: 5px; */
	background: #fb0101;
	border: none;
	color: #fff;
	box-shadow: 1px 2px 2px #949494;
	border-radius: 4px;
	cursor: pointer;
}
.btn-cancel{
	padding: 5px;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	box-sizing: border-box;
	/* margin: 5px; */
	background: #fb0101;
	border: none;
	color: #fff;
	box-shadow: 1px 2px 2px #949494;
	border-radius: 4px;
}
.btn-cancel-grey{
	padding: 5px;
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	box-sizing: border-box;
	/* margin: 5px; */
	background: #383636;
	border: none;
	color: #fff;
	opacity: 0.7;
}






/* --------------------------------------- */
/* ロゴ */

/* logoのimgの親要素に */
.logo-sml{
	max-width: 250px;
	width: 80%;
	margin: 10px auto;
}
.logo-sml img{
	width: 100%;
}
.process-img{
	width: 80%;
	margin: 20px auto;
	display: block;
}
/* --------------------------------------- */
/* ガイダンス */
.guid-img{
	max-width: 300px;
	width: 100%;
	margin: 15px 0 40px 0;
	display: block;
}
.guid-text{

}


/* --------------------------------------- */
/* ナビゲーション */
.nav{
	display: flex;
	display:-webkit-box;
  display:-ms-flexbox;
	justify-content: space-between;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	height: 70px;
	width: 100%;
}
.theme-color{
	background-color: rgba(51, 153, 255, 0.8);
	min-width: 320px;
}
.item-white{
	color: #fff;
}
.logo{
	width: 150px;
	margin-left: 10px;
}
.nav-ul{
	display: flex;
	display:-webkit-box;
  display:-ms-flexbox;
	justify-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	padding: 0 5px;
}
.allergy-ul{
    text-align: left;
    padding: 0;
    margin: auto;
    width: 95%;
/*
	display: flex;
	display:-webkit-box;
  	display:-ms-flexbox;
	justify-content: start;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
*/
}
.allergy-ul li{
	display: inline-block;
	margin: 5px;
	font-size: 15px;
	font-weight: bold;
	min-width: 170px;
	margin-bottom: 8px;
}
.allergy-ul li label{
	display: block;
}
.allergy-ul li:hover {
	color: #faaa20;
	text-decoration: underline;
}
.nav-item{
	/* padding: 15px;
	margin: 5px; */
	padding: 5px;
	margin: 5px;
}
.nav-item:hover{
	text-decoration: underline;
}

.allergy-item{
	padding: 10px 0;
	margin: 5px 0;
	width: 150px;
	font-weight: bold;
	font-size: 12px;
}
@media screen and (min-width:771px) {
	.allergy-item{
		padding: 10px 0;
		margin: 5px 2px;
		width: 170px;
		font-weight: bold;
		font-size: 16px;
	}
	
}
.menu-item{
	padding: 10px;
	margin: 10px;
	font-size: 24px;
	font-weight: bold;
}


/* ハンバーガーメニュー */
.ham-li{
	/* width: 200px; */
}
#ham-close{
	background: #fff;
	font-size: 15px;
	border: 1px solid #e5e5e5;
	color: #e5e5e5;
}
#ham-menu {
	background-color: #fff; /*メニュー背景色*/
	box-sizing: border-box;
	height: 100%;
	padding: 10px 20px; /*メニュー内左右上下余白*/
	position: fixed;
	right: 0px; /*メニュー横幅 width と合わせる*/
	top: 0;
	/* transition: transform 0.3s linear 0s; 0.3s はアニメーションにかかる時間 */
	width: 200px; /*メニュー横幅*/
	z-index: 1000;
}

#menu-background {
	background-color: #333; /*黒背景*/
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	/* transition: all 0.3s linear 0s; 0.3s はアニメーションにかかる時間 */
	width: 100%;
	opacity: 0.5;
  z-index: 999;
}

#menu-icon {
	background-color: #fff; /*アイコン部分背景色*/
	border-radius: 0 0 0 10px; /*左下角丸*/
	color: #333; /*アイコン（フォント）色*/
	cursor: pointer;
	display: block;
	font-size: 50px; /*アイコン（フォント）サイズ*/
	height: 50px; /*アイコン縦高さ*/
	line-height: 50px; /*縦位置中央化*/
	position: fixed;
	right: 0;
	text-align: center;
	top: 0;
	width: 50px; /*アイコン横幅*/
	/* transition: all 0.3s linear 0s; 0.3s はアニメーションにかかる時間 */
	z-index: 990;
}

#menu-cb {
	display: none; /*チェックボックス本体は消しておく*/
}

/* #menu-cb:checked ~ #ham-menu, */
#menu-cb:checked ~ #menu-icon {
	/* transform: translate(-200px); メニュー本体横幅 width と合わせる */
}

#menu-cb:checked ~ #menu-background {
	opacity: 0.5;
	z-index: 999;
}

@media screen and (min-width:770px) {
  #menu-icon {
    display:none;
	}
	.obento_fixed{
		left: 0px;

	}
	
}
@media screen and (max-width:769px) {
  .nav-none {
    display:none;
  }
}

/* --------------------------------------- */
/* フッター */
.footer-item{
	padding: 5px;
}
.footer{
	text-align: center;

}


/* アレルギー項目 */
.input-check{

}

/* フローティングメニュー */
.obento_fixed{
	width: 100%;
	/* left: 0px; */
	bottom: 0px;
	z-index: 500;
	text-align: center;
	padding: 0 auto;
	position: fixed;
	background: #fff;
}

/* テーブル */
.table{
	/* border: 2px solid #4e4e4e; */
}
th,td{
	/* border: 1px solid #4e4e4e; */
	/* border-collapse: collapse; */
	padding: 0.25em;
}
.thead th{
	/* border-bottom: 1px double #4e4e4e; */
}
.table-title{
	margin-top: 20px;
}





/* --------------------------------------- */
/* モーダル */
.modal-wrapper {
  z-index: 1005;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 10px;
  text-align: center
}

.modal-wrapper:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.modal-wrapper:target {
  opacity: 1;
  visibility: visible;
  transition: opacity .4s, visibility .4s;
}

.modal-wrapper::after {
  display: inline-block;
  height: 100%;
  margin-left: -.05em;
  vertical-align: middle;
  content: ""
}

.modal-wrapper .modal-window {
	box-sizing: border-box;
	display: inline-block;
	z-index: 2000;
	position: relative;
	width: 80%;
	max-width: 700px;
	padding: 30px 30px 15px;
	border-radius: 2px;
	background: #fff;
	box-shadow: 0 0 30px rgba(0, 0, 0, .6);
	vertical-align: middle;
}
/* スクロールの役割 */
.modal-wrapper .modal-window .modal-content {
  max-height: 80vh;
  overflow-y: auto;
  text-align: left
}

.modal-overlay {
  z-index: 1010;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-wrapper .modal-close {
  z-index: 2000;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  text-decoration: none;
  text-indent: 0
}

.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important
}


.tos-content{
	max-height: 50vh;
	overflow-y: auto;
	border: 1px solid #e5e5e5;
	padding: 5px 10px;
}


.js-btn_entrypage{
	opacity: 0.5;
}

/* aタグでないモーダル */
.modal{
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 5000;
}
.modal__bg{
	background: rgba(0,0,0,0.8);
	height: 100vh;
	position: absolute;
	width: 100%;
}
.modal__content{
	background: #fff;
	left: 50%;
	top: 50%;
	padding: 10px;
	position: absolute;
	transform: translate(-50%,-50%);
	width: 80%;
	max-width: 500px;
	height: 85%;
	overflow-y: auto;
	margin: 0 auto;
	text-align: center;
}
/* 背景の固定 */
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}
.js-bent-detail{
	cursor: pointer;
}
.modal-grey-container{
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	padding: 20px 10px;
	width: 100%;
	margin: 10px auto;
	box-sizing: border-box;
}
.bento-control{
	margin-bottom: 10px;
}

.eater-title{
	display: block;
	text-align: left;
	padding: 4px 0px 4px 7px;
	border-bottom: 1px solid #d9d7d7;
	background-color: #351600;
	color: #fff;
}





@media screen and (min-width:771px) {
	.main-container{
		width: 90%;
		margin: 50px auto;
	}
	.sub-container{
		margin: 30px auto;
	}
	.main-title{
		text-align: justify;
		font-size: 24px;
	}
	html{
		font-size: 16px;
	}
	p{
		font-size: 16px;
	}
	.sub-title{
		font-size: 20px;
	}
	.bold_dt{
		font-size: 20px;
	}
	.btn{
		padding: 15px 30px;
		border-radius: 10px;
		font-weight: bold;
		font-size: 20px;
		width: 100%;
		max-width: 240px;
		text-align: center;
		box-sizing: border-box;
		margin: 5px 10px;
		text-decoration: none;
	}
	
}




