@charset "utf-8";
/* CSS Document */
*{
    box-sizing: border-box;
}
html,
body{
    width: 100%;
    margin: 0;
}
body{
    margin:0 ;
	padding: 0 ;
    font-size: 100%;
    font-family: "メイリオ", Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    color: #333;
}

.sp-only{
    display: none;
}
.pc-only{
    display: block;
}


p {
    font-size:100%;
	line-height:1.8;
    margin:0;
}

strong {
    font-weight:bold;
}

ul{
	padding: 0;
}

a{
    color: #333;
    text-decoration: none;
}
img{
    border: 0;
    vertical-align: bottom;
    max-width: 100%;
    opacity: 1;
}
a img{
    opacity: 1;
    transition: 0.3s ease opacity;
}

a:hover img{
    opacity: 0.8;
}

em {
    color: #fff;
    background-color: #ff6469;
    font-size: 70%;
    padding: 5px;
    margin-left: 5px;
    white-space: nowrap;
}
h1{
    font-size: 218%;
}

.inner{
    width: 96%;
    max-width: 1008px;
    margin: 0 auto;
}

/*追加　完了アラート*/
.completion{
    font-weight: bold;
    background: #fff4f5;
    border: 1px solid #ff6469;
    padding: 5px 10px;
    margin-bottom: 1em;
}

.wrapper{
    min-height: 100vh;
    min-height: calc(100vh - 64px);
    padding-bottom: 96px;
    position: relative;
    background-color: #EFE1CB;
    overflow:clip;
}
.general .wrapper {
    padding-bottom: 58px;
    background-color: #fff;
    min-height: 100vh;
}
.bg-gray.wrapper {
    background-color: #f5f5f5;
}



/*　clearfix--------------------------------　*/
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
.clearfix {
    zoom: 1;
}
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}
.clearfix:after {
    clear: both;
}
/*　flex--------------------------------　*/
.flex{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}
.flex-jcc{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.flex-jcsb{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flex-jcsa{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.flex-wrap{
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}
.flex-aic{
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.flex-ais {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.flex-aie{
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.flex-drr {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

/*text-align*/
.tac{
	text-align: center !important;
}
.tal{
	text-align: left !important;
}
.tar{
	text-align: right !important;
}

/*マージン・パディング*/
.mb-0{
    margin-bottom: 0 !important;
}
.mb-2em{
    margin-bottom: 2em !important;
}

.mt-0{
    margin-top: 0 !important;
}
.mr-0{
    margin-right: 0 !important;
}
.ml-0{
    margin-left: 0 !important;
}
.pb-0{
    padding-bottom: 0 !important;
}
.pt-0{
    padding-top: 0 !important;
}
.mt-2{
    margin-top: 2em !important;
}



/*　テーブル　*/
table{
    margin: 0 auto;
    width: 100%;
}
table th{
    text-align: left;
    width: 25%;
    padding: 1em;
    font-weight: 600;
    background: #eee;
    border: 2px solid #fff;
}
table td{
    width: 90%;
    padding: 1em;
    background: #fff;
    border: 2px solid #fff;
}
table td table td{
    border: none;
}
#contents-main table td a{
    color: #333;
}


table th.pad0,
table td.pad0{
    padding: 0;
}
textarea{
    width: 100%;
}
textarea.tinymce{
    width: 100%;
    min-height: 10em;
}

/*フォーム*/

table input{
    width: 100%;
    padding: 5px
}
table input[type="email"] {
    width: 60%;
}
/* input[type="date"] {
    width: 30%;
} */

table input.widthauto{
    width: auto;
}

/* input[type="text"] {
    border: 1px solid #999;
  } */

/*フォーカス設定*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border: 2px solid #ff9900;
    outline: 0;
}

textarea:focus{
    border: 2px solid #ff9900;
    outline: 0;
}
/*テーブル中の注釈*/
table .note{
    font-size: 75%;
}
/*ラジオボタン・チェックボックス*/
table .radio input,
table .checkbox input{
    width: auto;
    vertical-align:baseline;
}
table .radio label,
table .checkbox label{
    padding-right: 1em;
}
table .checkbox .menucb {
    padding-right: 1em;
}

.ui-datepicker th,
.ui-datepicker td {
    width: inherit;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}



/*　ヘッダー --------------------------------　*/
/* ナビ--------------------------------　*/
#head{
    position: relative;
}

.head_inner{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 11;
}

#navi-box {
    display: block;
    width:100%;
    height:64px;
    background: #fff;
    border-bottom: 1px solid #DDDDDD;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05);

}

/* slimmenu.js内の .menu-collapseに上書き */

.menu-collapser {
    height:64px;
    text-align:left;
    background-color: #fff;
    padding: 5px;
    color: #333;
    /* color: transparent; */
}
ul.slimmenu li .sub-toggle>i {
    font-style: normal;
    font-size: 14px;
    margin-left: 0.3em;
}
ul.slimmenu.collapsed li .sub-toggle {
    height: 47px;
}

/* menu内のロゴ画像設定 */

/* .menu-collapser img#spHeadLogo {
    margin:0;
    width:85%;
    max-height:40px;
    width:auto;
    } */
/*
/*　スクロール時のナビ固定　jquery連動*/
#navi-box #navi {
    text-decoration: none;
    width: 100%;
    height:64px;
    margin: 0 0 0px 0;
    clear:both;
}

#navi-box #navi ul {
    width: 100%;
    height:auto;
    background:none;
    border-bottom: 1px solid #999;
    background: #fff;
}

/* ナビ下のborder */

#navi-box #navi li {
    float:none;
    list-style: none;
    text-align: center;
    }

#navi-box #navi li a {
    text-decoration: none;
    padding: 8px 10px;
    height:auto;
    width:100%;
    display: block;
    font-weight: normal;
    border-top: solid 1px #999;/* li上のborder */
    color: #333;/* 文字色 */
    background:#fff;/* リンク背景 */

}


#navi-box #navi li a span{
    display:inline;
}

/*　ボタン*/
.collapse-button {
    background-color: transparent;
    z-index: 10;
    width: 50px;
    font-size: 30px;
}
.collapse-button .icon-bar {
    display: block;
    height: 2px;
    width: 30px;
    margin: 8px 0;
    background-color: #000;
}
.collapse-button:hover, .collapse-button:focus {
    color: #333;
    background-color: transparent;
}
#navi-box #navi li a:hover{
    color: #3FB96C;
}
ul.slimmenu li {
    /* background-color: #AAA; */
    z-index: 10;
}


/*LOGO*/

#head .menu-collapser a {
    max-width: 25%;
    width: 25%;
    display: inline-block;
    padding: 16px;
}
#head h1{
    margin: 0;
    font-size: 35px;
}

#head h1 a{
    display: block;
    color: #333;
    padding: 12px 0 12px 1em;
    width: auto;
    height: 72px;
    box-sizing: border-box;
}
#head h1 a img{
    width: auto;
    height: 100%;
}


/*　スクロール時のナビ固定　jquery連動*/

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

/*ヘッダー　メニュー*/
.head_menu{
    position: absolute;
    top: 12px;
    right: 84px;
    display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
    z-index: 12;
}
#head .welcome{
    position: fixed;
    top: 12px;
    right: 120px;
    z-index: 12;
    margin-right: 2em;
    display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#head .welcome .user-thumbnail{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1em;
    object-fit: cover;
}
#head .welcome .user-name{
    padding: 8px 0;
}
#head .head_menu_cart img{
    width: 30px;
    height: 30px;
    margin-top: 4px;
}
#head .head_menu_cart {
    position: relative;
}
#head .head_menu_cart .cart_box{
	position: absolute;
    top: -5px;
    right: -10px;
	background-color: #ED4C4C;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	text-align: center;
	display: inline-block;
}
#head .head_menu_cart .cart_num{
	font-size: 10px;
    font-size:min(1vw,10px);
	color: #fff;
	line-height: 1;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

#head .btn-charge-point {
    background-color: #f6a73b;
    display: block;
    padding: 5px 1em;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    transition: 0.3s ease opacity;
    opacity: 1;
    white-space: nowrap;
    font-weight: 700;
    max-width: 400px;
    margin: 0 0 0 1em;
}
#contents-main .btn-charge-point{
    display: inline-block;
    background-color: #f6a73b;
    padding: 8px 1em;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    transition: 0.3s ease opacity;
    opacity: 1;
    white-space: nowrap;
    font-weight: 700;
    max-width: 400px;
    min-width: calc(1em * 7);
    margin: 0 1em;
    line-height: 1;
}

/* フロント画面 ユーザ設定画面のトグルボタン */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 1em;

}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .switch-slider {
    background-color: #f6a73b;
}

input:focus + .switch-slider {
    box-shadow: 0 0 1px #f6a73b;
}

input:checked + .switch-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.switch-slider {
    border-radius: 34px;
}

.switch-slider:before {
    border-radius: 50%;
}


/*　コンテンツ外枠--------------------------------　*/

#contents {
	width:100%;
    padding-top: 64px;
    margin:0 auto 0;
}
#contents:after {
	content:".";
	height:0;
	clear:both;
	visibility:hidden;
	display:block;
}
/*　コンテンツメイン--------------------------------　*/

#contents-main{
    width: 100%;
    position: relative;
    padding: 48px 0 64px;
    margin:  0 auto;
}
/*幅1008px　内枠*/
#contents-main .inner{
    max-width: 1200px;
    margin:  0 auto;
    position: relative;
}
/*floatした時の右端のマージン0*/
#contents-main .last{
    margin-right: 0 !important;
}



/*　本文　--------------------------------　*/

/*　文字色・サイズ　共通　*/
#contents-main p,
#contents-main table,
#contents-main ul ,
#contents-main ol {
	color:#333;
	font-size:100%;
	line-height:1.8;
	}

/*　段落　*/
#contents-main p {
	margin:0 0 1em 0 ;
}

/* リンク文字色 */
#contents-main a {
	color: #f6653b;
    opacity: 1;
    text-decoration:none ;
    /* display: block; */
    transition: 0.3s ease opacity;
}

#contents-main a:hover {
    text-decoration:none ;
    opacity: 0.8;
}

#contents-main h2{
    margin: 0 0 20px;
    line-height: 1.6;
    font-size: 150%;
    font-weight: bold;
}

#contents-main h3{
    font-size: 125%;
    line-height: 1.6;
    margin: 1em 0 20px;
    border-bottom: 1px solid #333;
}
#contents-main h4{
    font-size: 100%;
    font-weight: 700;
    margin-bottom: 0.5em;
}
#contents-main a.helptext{
    display: inline;
    color: #555;
}
#contents-main .text-red{
    color: #ff0000;
}


/* フッター--------------------------------　*/
#footer{
    margin-bottom: 64px;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.general #footer {
    margin-bottom: 0;
}
#footer .inner{
    padding: 20px 0;
}
#footer .footer_navi {
    margin-right: 3%;
}
#footer .footer_navi ul {
    text-align: left;
}
#footer .footer_navi ul li {
    display: inline-block;
    margin-right: 1em;
}
footer address{
    text-align: center;
    font-size: 12px;
    color: #555;
}
    /* ページトップ */
p.pagetop {
	position: fixed;
	bottom: 84px;
	right: 20px;
	}
.general p.pagetop{
	bottom: 20px;
}
p.pagetop a {
	display: block;
	width: 50px;
	height: 50px;
	background-color: #000;
	text-align: center;
	color: #fff;
	font-size: 18px;
    border-radius: 5px;
	text-decoration: none;
	line-height: 50px;
	filter: alpha(opacity=85); /* 透過設定 */
	  -moz-opacity:0.85;
	opacity:0.85;
	}
p.pagetop a:hover {
	background-color: #333;
	}


/*スライド*/
#contents-main .slider {
    position: relative;
}
#contents-main .slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    text-align: center;
    margin-top: -1em;
}
#contents-main .slider .slider-next {
    right: 0;
}
#contents-main .slider .slider-arrow img{
    height: 100%;
    width: auto;
}
#contents-main .slick-dots {
    bottom: 15%;
}
#contents-main .slick-dots li.slick-active button:before {
    color: #fff;
}
#contents-main .slick-dots li button:before {
    color: #fff;
}
#contents-main .slick-dotted.slick-slider {
    margin-bottom: 20px;
}

/*下部固定メニュー*/
#contents .bottom-menu {
    width: 100%;
    height: 64px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
}
#contents .bottom-menu ul{
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    box-shadow: 0 -5px 3px rgba(0, 0, 0, 0.05);
}
#contents .bottom-menu ul li{
    width: 33.3333%;
    width: calc(100% / 3);
    height: 64px;
    border: 0.5px solid #ccc;
}
#contents .bottom-menu ul li a{
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color: #fff;
    font-size: 183%;
    font-weight: 700;
    text-align: center;
    padding: 12px;
    line-height: 1;

}
#contents .bottom-menu ul li a span{
    display: block;
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    transition: 0.3s ease opacity;
}

#contents .bottom-menu ul li a:hover span{
    opacity: 0.8;
}
#contents .bottom-menu ul li a img{
    max-width: 40px;
    max-height: 40px;
    margin-right: 16px;
}
#contents .bottom-menu ul li .bottom-menu_order span{
    color: #F56539;
}
#contents .bottom-menu ul li .bottom-menu_home span{
    color: #23AD02;
}
#contents .bottom-menu ul li .bottom-menu_history span{
    color: #693A22;
}



/*　indexページのみ--------------------------------　*/
body.index #contents-main h3{
    border-bottom: none;
    margin-top:0;
}
#contents-main .ct-left{
    width: 64%;
    position: sticky;
    top: 74px;
    display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
#contents-main .ct-right{
    width: 32%;
    margin-left: 4%;
}

/*　今日のメニュー*/

#contents-main .todaymenu{
    width: 46.875%;
    background: #fff;
    padding: 3%;
    border-radius: 20px;
    border: 3px solid #3FB96C;
}
#contents-main .todaymenu_ttl{
    white-space: nowrap;
}
#contents-main .todaymenu_date{
    font-size: 72%;
    margin-left: 8px;
}
#contents-main .pop{
    width: 46.875%;
}
#contents-main .menu-schedule{
    background: #fff;
    padding: 3%;
    border-radius: 20px;
}
#contents-main .todaymenu_list_item a{
    display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
    -webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
#contents-main .todaymenu_list_item {
    margin-bottom: 1em;
}
#contents-main .todaymenu_list_item:last-child {
    margin-bottom: 0;

}
#contents-main .menu-thumb{
    width: 35%;
}
#contents-main .menu-thumb img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}
#contents-main .menu-text{
    width: 61%;
    margin-left: 4%;
}
#contents-main .menu-price{
    line-height: 1;
    font-size: 93.75%;
    color: #333;
}
#contents-main .menu-name{
    font-weight: bold;
    line-height: 1.3;
}
#contents-main .ct-below{
    margin-top: 66px;
}
#contents-main .ct-below.scroll{
    margin-top: 0;
}


/*POP*/
#contents-main .pop_item .slick-slide img{
    border-radius: 20px;
    width: 100%;
    max-height: 270px;
    object-fit: contain;
}
#contents-main .pop-ttl{
    font-weight: bold;
    text-align: center;
}
#contents-main .pop-ttl{
    margin-bottom: 0;
}

/*月間予定表*/
#contents-main .wave {
    padding-bottom: 5px;
    background: url(/common/img/nami-parts.png) repeat-x bottom left / auto 5px;
    display: inline-block !important;
}
#contents-main .dishware_ttl{
    position: relative;
    text-align: center;
}
#contents-main .dishware_ttl span{
    display: block;
}
#contents-main .dishware_ttl .category-menu_ttl{
    position: relative;
}
#contents-main .dishware_ttl .category-menu_ttl:before{
    content: "";
    width: 30px;
    height: 46px;
    background: url(/common/img/ttl_deco_left.png) no-repeat bottom left;
    background-size: contain;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 4px;
}
#contents-main .dishware_ttl .category-menu_ttl:after{
    content: "";
    width: 30px;
    height: 46px;
    background: url(/common/img/ttl_deco_right.png) no-repeat bottom right;
    background-size: contain;
    display: inline-block;
    vertical-align: bottom;
    margin-left: 4px;
}
#contents-main .fs-small,
#contents-main .dishware_ttl .fs-small{
    font-size: 85%;
}

#contents-main .monthly-btns{
    display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    margin-bottom: 12px;
}
#contents-main .btn-month{
    font-size: 112.5%;
    font-weight: bold;
    text-align: center;
    background-color: #EFCC3D;
    padding: 2px 1em;
    border-radius: 20px;
    color: #000;
}
#contents-main .menu-schedule_table th{
    border: 1px solid #666666;
    border-right: 0;
    padding: 5px 8px;
    background-color: #FFDDD3;
}
#contents-main .menu-schedule_table .nomenu{
    background-color: #DDDDDD;
}
#contents-main .menu-schedule_table .date{
    font-size: 93.75%;
}
#contents-main .menu-schedule_table .day{
    font-size: 12px;
    opacity: 0.5;
    margin-left: 5px;
}

#contents-main .menu-schedule_table td{
    border: 1px solid #666666;
    border-left: 0;
    padding: 5px 8px 0;
}
#contents-main .menu-schedule_name{
    background-color: #FFF9E0;
    border-radius: 5px;
    padding: 1px 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}
#contents-main .menu-schedule_name a{
    color: #333;
}
/*日替わり一括注文*/
#contents-main .order-schedule .menu-schedule_table {
    margin-bottom: 20px;
}
#contents-main .order-schedule .menu-schedule_table th{
    width: 10%;
}

/*　保護者TOPページ--------------------------------　*/

.registration_list{
    width: 30%;
    margin-bottom: 24px;
    position: absolute;
    top:0;
    left: 0;
    z-index: 2;
}

#contents-main .btn {
    display: block;
    background-color: #000;
    padding: 9px 1em;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    transition: 0.3s ease opacity;
    opacity: 1;
    white-space: nowrap;
    font-weight: 700;
    max-width: 400px;
    margin: 0 auto;
}
#contents-main .btn:hover{
    opacity: 0.8;
}
#contents-main .btn-add {
    margin: 2em auto;
}
#contents-main .btn-gray {
    background-color: #999999 !important;
}
#contents-main .btn-black {
    background-color: #000 !important;
}
#contents-main .btn-orange {
    background-color: #f6a73b !important;
}
#contents-main .btn-main {
    background-color: #f56539 !important;
}

#contents-main .back-btn {
    margin: 2em auto 0;
    text-align: center;
}
#contents-main .back-btn .btn{
    max-width: inherit;
    min-width: 140px;
    display: inline-block;
}

#contents-main .btn-reg-member {
    background-color: #3FB96C;
    border: 3px solid #3fb96c;
}
#contents-main .btn-reg-user {
    background-color: #fff;
    color: #3FB96C;
    border: 3px solid #3fb96c;
    /* outline: 3px solid #3FB96C;
    outline-offset: -3px; */
}
#contents-main .registration_list .btn{
    width: 47%;
    padding: 5px 1em;
}
#contents-main .registration_list .btn .img-icon{
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

#contents-main .studentinfo{
    width: 46.875%;
    margin-top: 66px;
}
#contents-main .studentinfo.scroll{
    margin-top: 0;
}
#contents-main .studentinfo .todaymenu{
    /* outline: 3px solid #3FB96C;
    outline-offset: -3px; */
    width: 100%;
}
#contents-main .studentinfo_ttl{
    margin: 4px 0 1em;
}
#contents-main .reg-color{
    color:  #3FB96C;
}
#contents-main .studentinfo .icon-ttl {
    white-space: nowrap;
    margin-bottom: 0;
}
#contents-main .studentinfo .icon-ttl::before{
    content: "";
    display: inline-block;
    width: 38px;
    height: 38px;
    background: url(/common/img/icon-studentinfo.png) no-repeat top center;
    background-size: contain;
    vertical-align: bottom;
    margin-right: 8px;
}
#contents-main .sub-ttl {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.4;
}
#contents-main .studentinfo_item{
    background-color:#F7F4EF;
    padding: 7%;
    border-radius: 10px;
    margin-bottom: 20px;
}
#contents-main .studentinfo_item:last-of-type{
    margin-bottom: 0;
}
#contents-main .studentinfo .user-thumbnail{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}
#contents-main .student_text p{
    line-height: 1.4;
}
#contents-main .student-name{
    font-weight: bold;
    margin-bottom: 5px;
}
#contents-main .mrms {
    font-size: 12px;
}
#contents-main .mrms-face {
    font-size: 12px;
	color: red;
}



/*　ここから他ページ--------------------------------　*/

/*共通*/
#contents-main hr{
    border-style: solid;
    color: #bbb;
    margin: 30px 0;
    border-width: 0.5px;
}
/*フォーム*/
.form-layout{
    max-width: 750px;
    margin: 0 auto;
}
.form-layout_ct{
    border-radius: 20px;
    padding: 3% 3%;
    border: 1px solid #ddd;
    background-color: #fff;
}
.form-layout_ct table{
    margin-bottom: 2em;
}
.form-layout_ct table:last-of-type{
    margin-bottom: 0;
}
#contents-main .form-layout h2{
    text-align: center;
}
table .no-padding{
    padding: 0;
}
table td button{
    margin: 5px;
}
.original-terms{
    height: 10em;
    overflow-y: auto;
    font-size: 80%;
}

/*利用規約、特定商取引法、プライバシー*/
.page-layout {
    max-width: 750px;
    margin: 0 auto;
}
.page-layout h2{
    text-align: center;
}
.law-contents{
    border: 1px solid #ddd;
}

/* ★追記の設定 */

.tuiki{
    display:none;
}
.read_open_close{
    cursor:pointer;
    position: relative;
}
.read_open_close:after{
    content: "";
    padding-right: 6px;
    background: url(/common/img/read_open_close_op.png) no-repeat center;
    width: 12px;
    height: 12px;
    background-size: contain;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    font-size: 18px;
}
.read_open_close.active:after{
    background: url(/common/img/read_open_close_cl.png) no-repeat center;
    background-size: contain;
}

/* .read_open_close:after{
    font-family: "Font Awesome 5 Free";
    content: '\f078';
    font-weight: 900;
    padding-right: 6px;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    font-size: 18px;
}
.read_open_close.active:after{
    font-family: "Font Awesome 5 Free";
    content: '\f077';
} */

/*  登録ページ　--------------------------------　*/
#contents-main table .birthday input{
    max-width: 5em;
}
#contents-main table .userpict_img img {
    width: 100%;
    max-width: 200px;
    max-height: 200px;
}
table th.pad0, table td.pad0 {
    padding: 0;
}


/* メニュー --------------------------------　*/
#contents-main .category-menu{
    background-color: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05);
    padding: 1em;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid #eee;
    position: relative;
}
#contents-main .category-menu ul {
    display: flex;
    width: max-content;
	margin: 0 auto;
}
#contents-main .category-menu ul li{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* display: table-cell; */
    padding: 2px 1em;
    margin: 0 1px 0 0;
    list-style: none;
    cursor: pointer;
    font-size: 125%;
    transition: 0.3s ease background-image color;
    white-space: nowrap;
}
#contents-main .category-menu ul li a{
    color: #000;
}
#contents-main .category-menu ul li:last-child {
    margin-right: 0;
}
#contents-main .category-menu ul li.current a{
    background-image: linear-gradient(transparent 95%, #F56539 0%);
    color: #F56539;
}
#contents-main .category-menu ul li a:hover {
    background-image: linear-gradient(transparent 95%, #F56539 0%);
    color: #F56539;
}
#contents-main .menu-date{
    line-height: 1;
    font-size: 93.75%;
    margin-bottom: 1em;
}
#contents-main .title{
    text-align: center;
    padding: 48px 0 0;
    margin-bottom: 32px;
}

#contents-main .title-r-btn{
    padding-right: 15%;
    padding-left: 15%;
    position: relative;
}
#contents-main  .bulk-btn{
    position: absolute;
    right: 0;
    bottom:0;
    margin-right: 1%;
    width: 14%;
}
#contents-main .bulk-btn .btn{
    width: 100%;
    background-color: #f6a73b;
    font-size:min(1.4vw,16px);
}
/*メニュー詳細追記　開閉*/
.more-detail{
    background-color: #e4e4e4;
    font-size: 90%;
    font-weight: 600;
    text-align: center;
    padding: 2px;
    border-radius: 10px;
    margin: 1em 0 1em 3em;
    color: #666;
}
.more-detail-tuiki{
    display:none;
}



/*タブ*/
.tab_menu {
    display: flex;
    width: max-content;
	margin: 0 auto;
}
.tab_menu li{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px 1em;
    margin: 0 1px 0 0;
    list-style: none;
    cursor: pointer;
    color: #999;
    font-size: 125%;
    transition: 0.3s ease;
    white-space: nowrap;
}
.tab_menu li:last-child {
    margin-right: 0;
}
.tab_menu li.selected {
    background-image: linear-gradient(transparent 95%, #F56539 0%);
    color: #F56539;
}
.tab_menu li:hover {
    background-image: linear-gradient(transparent 95%, #F56539 0%);
    color: #F56539;
}
.tab_menu li img {
    display: inline-block;
    padding: 0 5px 2px 0;
}
.tab_panel {
    overflow: hidden;
    height: 0;
    opacity: 0;
}
.tab_panel.is-show {
    overflow: visible;
    height: auto;
    opacity: 1;
    transition: opacity .4s ease-in-out;
}
.menu-list_box{
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}
.menu-list_item{
    background-color: #fff;
    border-radius: 20px;
    padding: 1em;
    width: 31%;
    width: calc(94% / 3);
    margin: 0 1% 2em;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.menu-list_thumb{
    margin-top: 10px;
}
.menu-list_thumb img{
    border-radius: 5px;
}
#contents-main .menu-list_item a{
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-orient: vertical;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: column;
  	flex-direction: column;
    height: 100%;
}
#contents-main .menu-list_item a .menu-list_thumb{
    margin-top: auto;
}
#contents-main .menu-list_item a .menu-list_thumb img{
    margin-top: 5px;
}

#contents-main .menu-list_text .menu-name {
    min-height: 2.6em;
    margin-bottom: 0;
}
#contents-main .menu-list_item .cartin{
    margin-top: auto;
}

/*メニュー詳細*/
#contents-main .menu-detail {
    background-color: #fff;
    padding: 3% 4.5% 3%;
    border-radius: 20px;
}
.menu-detail .menu-list_thumb{
    width: 48%;
}
.menu-detail_text{
    margin-top: 1em;
}
.menu-detail .menu-detail_text{
    width: 48%;
    margin: 10px 0 0;
}
#contents-main .menu-type{
    color: #F56539;
}
#contents-main .menu-title .menu-name{
    font-size: 130%;
}
#contents-main .menu-quantity{
    margin-bottom: 1em;
}
#contents-main .menu-number{
    display:-webkit-box;
  	display:flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


#contents-main .menu-stocks{
    margin: 0 0 0;
    white-space: nowrap;
}
#contents-main .menu-nutrtion{
    font-size: 86.666%;
    padding-left: 3em;
    margin-bottom: 1em;
}
#contents-main .menu-set{
    margin-bottom: 0;
    text-indent: -3em;
    padding-left: 3em;
}
#contents-main .allergen span{
    color: #F56539;
}

/*スピナー*/
.spinner-container {
    display: flex;
    justify-content: center;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #ccc;
}

  .spinner {
    width: 50px;
    padding: 0;
    text-align: center;
    border: none;
    background: none;
    outline: none;
    pointer-events: none;
  }

  .spinner::-webkit-inner-spin-button,
  .spinner::-webkit-outer-spin-button {
    -webkit-appearance: none;
  }

  .spinner-sub,
  .spinner-add {
    display: block;
    text-align: center;
    width: 35px;
    height: 35px;
    color: #383a3a;
    font-size: 24px;
    margin: 0;
    cursor: pointer;
    line-height: 30px;
  }

  .disabled {
    opacity: 0.3;
    cursor: inherit;
  }
  .menu-spinner{
	margin-bottom: 1em;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}


/*　カート--------------------------------　*/

#contents-main .order-schedule{
    max-width: 800px;
    margin: 0 auto;
}

#contents-main .order-schedule .btn-month {
    font-size: 112.5%;
    font-weight: bold;
    text-align: center;
    background-color: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.order-schedule_table{
    margin-bottom: 20px;
}
#contents-main .order-schedule_table th{
    border: 1px solid #666666;
    border-right: 0;
    padding: 5px 8px;
    background-color: #fff;
}
#contents-main .order-schedule_table .nomenu,
#contents-main .order-schedule_table .nomenu + td{
    background-color: #DDDDDD;
}

#contents-main .order-schedule_table .date{
    font-size: 93.75%;
    width: 10%;
}
#contents-main .order-schedule_table .day{
    font-size: 12px;
    opacity: 0.5;
    margin-left: 5px;
}

#contents-main .order-schedule_table td{
    border: 1px solid #666666;
    border-left: 0;
    padding: 5px 8px 0;
}
#contents-main .order-schedule_contents{
    background-color: #FFF9E0;
    border-radius: 5px;
    padding: 5px 5px;
    margin-bottom: 5px;
}
#contents-main .order-schedule_table .nomenu + td .order-schedule_contents{
    background-color: #eee;
}
#contents-main .order-schedule_name{
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
}
#contents-main .order-schedule_name .daily{
    color: #F56539;
    border: 1px solid #f56539;
    font-size: 85%;
    padding: 0.2em;
    margin-right: 0.3em;
}
#contents-main .order-schedule_application .menu-number{
    margin: 0 5px;
}
.order-schedule_application{
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    -webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
#contents-main .order-schedule_application .menu-price{
    margin: 4px auto 4px 0;
}
#contents-main .order-cancel button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
#contents-main .order-cancel button img{
    width: 1.8em;
}
.total-quantity, .total-price, .total-point{
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
    border-bottom: 1px solid #D3C0A4;
    font-weight: bold;
    font-size: 86.666%;
    padding: 6px 0;
}

#contents-main .fs-big{
    font-size: 120%;
    font-weight: bold;
    margin: 2em auto;
}
#contents-main .total-point .point-status{
    font-size: 100%;
}
#contents-main .total-point_num{
    color: #333;
}




/*モーダル　カレンダー*/
#contents-main .date-select_calender_table th {
    width: 14.28%;
    display: table-cell;
    padding: 4px 4px;
    border: 1px solid #707070;
    background-color: #fff;
    text-align: center;
    line-height: 1;
}
#contents-main .date-select_calender_table td {
    width: 14.28%;
    display: table-cell;
    padding: 10px 5px 5px;
    text-align: center;
    border: 1px solid #707070;
}
#contents-main .date-select_calender td {
    position: relative;
    z-index: 1;
}
#contents-main .date-select_calender td .frame{
    position: absolute;
    top: 0;
    left: 0;
}
#contents-main .date-select_calender td input{
    position: relative;
    z-index: 2;
    margin-top: 30px;
    text-align: center;
    width: auto;
}
#contents-main .date-select_calender td .date{
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    display: block;
    z-index: 2;
}
#contents-main .date-select_calender td input:checked ~ .frame{
    border: 3px solid #FC3D3D;
    background-color: #FFEBE5;
    color: #FC3D3D;
    font-weight: bold;
    width:100%;
    height: 100%;
}
#contents-main .date-select_calender td input:checked ~ .date{
    color: #FC3D3D;
    font-weight: bold;
}
#contents-main .date-select_calender td.off{
    background-color: #EEEEEE;
}

#contents-main .date-select .update .btn {
    width: 100%;
}
.btn-modal-close:before {
    font-family: Arial,"Helvetica CY","Nimbus Sans L",sans-serif !important;
    font-size: 40px;
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    width: 35px;
    content: "\00d7";
    text-align: center;
}


/*保護者ページ----------------------*/
/*注文履歴*/
#contents-main .student-select .studentinfo {
margin-top: 0;
}
#contents-main .student-select .studentinfo_item {
    padding: 0;
}
#contents-main .student-select .studentinfo_item a{
    padding: 7%;
}
.bg-gray #contents-main .student-select .studentinfo_item {
    border: 1px solid #bbb;
}
#contents-main .studentinfo_item_inner {
    display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#contents-main .student-select .studentinfo .user-thumbnail {
    width: 60px;
    height: 60px;
}
#contents-main .student-select .student-name {
    margin-bottom: 0;
}
#contents-main .studentinfo_item_inner .studentinfo_detail{
    width: 48%;
}
#contents-main .studentinfo_item_inner .order-info{
    width: 48%;
}

#contents-main .cl01 .studentinfo_item_inner .studentinfo_detail{
    width: 100%;
    -webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#contents-main .studentinfo .cl01 .user-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

#contents-main .studentinfo .cl01 .student_text{
    font-size: 135%;
}
#contents-main .studentinfo .cl01 .student-name {
    margin-bottom: 0;
}

/*行動選択ボタン*/
#contents-main .acction-select_btn{
    margin: 5% 2%;
}
/*ポイント購入*/
#contents-main .point-charge {
    width: 70%;
    margin: 0 auto 1em
}
#contents-main .point-charge_item{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
#contents-main .point-charge_text{
    width: 45%;
    margin-bottom: 0;
    margin-right: 5%;
}
#contents-main .point-charge_btn{
    width: 50%;
    margin: 0;
    background-color: #f6a73b;
}
.holding-points{
    font-weight: bold;
}
.point-status,
#contents-main .point-status{
    color: #f6653b;
    font-size: 80%;
    white-space: nowrap;
}
#contents-main .studentinfo_detail .point-status{
    margin-bottom: 1em;
    margin-left: 52px;
}
#contents-main .my-points {
    margin-bottom: 2em;
}
#contents-main .my-points .point-status{
    font-size: 150%;
    text-align: center;
}
#contents-main .student_text .point-status{
    font-size: 16px;
    text-align: left;
    margin: 0;
}

#contents-main .my-points .studentinfo {
    width: 100%;
}
#contents-main .my-points .student-select .studentinfo_item {
    width: 46%;
}
.welcome-member{
    padding: 8px 0;
}



/*モーダル----------------------*/


/* modal*/
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.modal__bg{
    background: rgba(0,0,0,0.6);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    overflow: auto;
    background: #fff;
    height: auto;
    padding: 2%;
    width: 40%;
    max-width: 500px;
    border-radius: 20px;
}
.js-modal-close{
    padding: 10px 10px 0;
    font-size: 120%;
}
.js-modal-open{
    cursor: pointer;
    display: inline-block;
}

#contents-main .modal .js-modal-close{
    text-align: center;
    font-size: 140%;
    color: #999;
    display: inline-block;
}
.modal__content p{
    margin-bottom: 1em;
}
.modal__content p strong{
    font-weight: bold;
    font-size: 120%;
}
.modal__content .decision{
    margin: 2em 0;
}

#contents-main .modal .reserve div,
#contents-main .modal .modal__inner div{
    margin: 20px 1em;
}

#contents-main .modal input.w-auto {
    width: auto;
}
#contents-main .modal .btn-decision .btn {
    width: 60%;
    padding: 1em;
}
#contents-main .modal .btn-decision span.btn-gray {
    width: 30%;
    font-size: 100%;
    padding: 1em;
}

/*　ログイン signin　--------------------------------　*/
.signin-box{
    padding-top: 8%;
}
.signin-box h1{
    text-align: center;
    margin: 0.5em auto;
}
.signin-box h2{
    margin-bottom: 1em;
}
.signin-box p{
    margin-bottom: 1em;
}

.signin-box .form-layout_ct{
    margin-bottom: 1em;
    padding: 3% 10%;
}
.signin-box .btn{
    display: block;
    background-color:#F56539;
    padding: 9px 1em;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    transition: 0.3s ease opacity;
    opacity: 1;
    white-space: nowrap;
    font-weight: 700;
    width: 100%;
    max-width: 500px;
    margin: 1em auto 1em;
}
.signin-box .first-btn{
    color: #f56539;
    background-color: #fff;
    border: 3px solid #f56539;
    padding: 6px 1em;
}
.signin-table {
    max-width: 500px;
}
.signin-table th{
    background-color: inherit;
    white-space: nowrap;
    padding: 10px 0 10px 10px;
}
.signin-box input[type="email"] {
    width: 100%;
    padding: 5px;
}
.assist{
    font-weight: bold;
}
.fc-main{
    color: #f56539;
}
.agreement{
    margin-top: 1em;
}



/*  登録ボタン　--------------------------------　*/

#contents-main .update, #contents-main .delete{
    position: relative;
    text-align: center;
}

#contents-main .update .btn{
    display: inline-block;
    margin: 2em auto 0;
    width: 42%;
    background-color: #F56539;
}

#contents-main .delete .btn{
    display: inline-block;
    margin: 2em auto 0;
    width: 42%;
    background-color: #ca3b10;
}

#contents-main .update .btn-delete{
    width: 20%;
    position: absolute;
    right: 0;
}
/*カートイン*/
#contents-main .cartin {
    margin-top: 2em;
}
#contents-main .cartin .btn {
    /* width: 100%; */
    background-color: #F56539;
    border: none;
    font-size: 100%;
}

/*戻る*/
#contents-main .back {
    width: 25%;
    max-width: 145px;
    margin-left: auto;
    margin-top: 50px;
}


#contents-main .sortbtn{
    margin: 2em 0;
}
#contents-main .sortbtn input#search {
    height: 30px;
    line-height: 30px;
}
#contents-main .sortbtn input[type="button"] {
    display: inline-block;
    height: 30px;
    padding: 0 30px;
    color: #555;
    text-align: center;
    /* line-height: 30px; */
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #bbb;
    cursor: pointer;
    font-weight: 500;
    vertical-align: bottom;
}

#contents-main .w-20{
    width: 20%;
    min-width: 4em;
    display: inline-block;
}

table .btn-wauto{
    width: auto;
    min-width: 5em;
    margin-left: 1em;
    padding: 0 0.5em;
}


#contents-main .small{
    font-size: 80%;
    margin-left: 1em;
}
.js-modal-open {
    cursor: pointer;
    display: inline-block;
}

/*記事ページ（POP・イベント）*/
#contents-main .event-contents h3 {
    font-weight: bold;
    border-bottom: inherit;
}

/*削除のボーダー*/
#contents-main .waku {
    text-align: center;
    padding: 1em;
    margin: 1em 0 0;
    position: relative;
}
#contents-main .waku input,
#contents-main .waku label {
    position: relative;
    z-index: 2;
}
#contents-main .waku .frame{
    border: 2px solid #ddd;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#contents-main .waku input:checked ~ .frame{
    border: 2px solid #333333;
    background-color: #efefef;
}




/* メディアクエリ　800px以上　1080px以下--------------------------------　*/

@media screen and (min-width:800px) and ( max-width:1100px) {

/*　TOPページ--------------------------------　*/
    #contents-main h2 {
        margin: 0 0 16px;
        font-size: 130%;
    }
    #contents-main .btn-month {
        font-size: 100%;
        padding: 2px 8px;
    }
    #contents .bottom-menu ul li a {
        font-size: 150%;
        font-size:min(2.6vw,30px);
    }
    #contents-main .menu-name {
        font-weight: bold;
        line-height: 1.3;
        margin-bottom: 0.8em;
    }
    #contents-main .registration_list .btn .img-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        vertical-align: middle;
    }
    #contents-main .registration_list .btn {
        font-size:min(1.6vw,16px);
    }
    #contents-main .studentinfo .icon-ttl,
    #contents-main .todaymenu_ttl{
        font-size:min(2vw,20px);
    }
    #contents-main .studentinfo .icon-ttl::before {
        width: 26px;
        height: 26px;
        margin-right: 5px;
    }
    #contents-main .menu-quantity {
        display: block;
    }
    #contents-main .menu-quantity .menu-number{
        margin-bottom: 1em;
    }
    #contents-main .registration_list .btn {
        padding: 5px 2%;
    }


}


/* メディアクエリ　800px以下--------------------------------　*/
@media screen and (max-width:800px) {



    /*　共通設定--------------------------------　*/


    img {
        border: 0;
        vertical-align:bottom;
        max-width: 100%;
    }

    body {
        width: 100%;
    /*	font: 14px/1.231 'ヒラギノ角ゴ pro W3', "Hiragino KaKu Gothic Pro", Osaka, sans-serif; */
        font-size: 15px;
        line-height: 1.6;
        text-size-adjust: 100%;
        -webkit-text-size-adjust: 100%;
        }

    .sp-only{
        display: block;
    }
    .pc-only{
        display: none;
    }
    .inner{
        width: 96%;
        margin: 0 auto;
        }
    iframe{
        width: 100%;
        height: auto;
        min-height: 250px;
    }
    .bg-g{
        margin-top: 1.5em;
    }


        /* ページトップ */
    p.pagetop {
        position: fixed;
        bottom: 80px;
        right: 20px;
    }

    /*table*/
    table th {
        width: 100%;
        display: block;
        padding: 5px;
    }
    table td {
        width: 100%;
        display: block;
        word-break: break-all;
        padding: 10px;
    }
    table td a{
        word-break: break-all;
    }

    input,textarea{
        font-size: 16px;
    }

    .ui-datepicker th,
    .ui-datepicker td {
        width: inherit;
        display: table-cell;
    }

    /*　flex--------------------------------　*/
    .flex, .flex-jcc, .flex-jcsb, .flex-jcsa{
        display: block;
    }
    .flex.remain {
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
    }
    .flex-jcc.remain{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .flex-jcsb.remain{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .flex-jcsa.remain{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }


    /*sp login*/

    #navi-box-sp #navi-sp #splogin {
        position: absolute;
        right: 70px;
        top: 5px;
        z-index: 11;
    }

    #navi-box-sp #navi-sp #splogin img{
        border-radius: 50%;
        width: 40px;
    }

    /*　ヘッダー--------------------------------　*/
    #navi-box {
        height:50px;
    }
    .menu-collapser {
        height:50px;
    }
    #navi-box #navi{
        height:50px;
    }
    #head h1 {
        font-size: 30px;
    }
    #head h1 a{
        height:50px;
    }
    #head .menu-collapser a {
        padding: 5px;
    }
    .head_menu {
        position: absolute;
        top: 5px;
        right: 72px;
    }
    #head .welcome {
        position: relative;
        top: inherit;
        right: inherit;
        z-index: 0;
        margin: 50px auto 0;
        background-color: #fff;
        padding: 8px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    #head .head_menu_cart .cart_box{
        top: -2px;
    }
    #head .head_menu_cart .cart_num{
        font-size: 10px;
        font-size:min(2.4vw,10px);
    }
    .welcome .point-status {
        display: block;
    }
    #head .btn-charge-point {
        margin: 0 auto;
        font-size: 90%;
        padding: 2px 1em;
    }
    .welcome-member {
        padding: 8px 0;
        display: block;
        width: 100%;
        text-align: center;
    }




    /*　コンテンツ--------------------------------　*/

    .wrapper {
        min-height: 100vh;
        min-height: calc(100vh - 50px);
        /* padding-bottom: 96px; */
        position: relative;
    }

    #contents {
        width:100%;
        padding-top: 0;
    }

    /*　コンテンツ　メインカラム--------------------------------　*/

    #contents-main {
        width:100%;
        padding: 20px 0 1em;
        margin:0 auto;
    }
    #contents-main.sp-mt-head{
        margin-top: 50px;
    }

    /*　コンテンツ　インナー--------------------------------　*/
    #contents-main .inner{
        width: 96%;
        margin: 0 auto;
        padding: 0 2% 0;
    }
    /* 本文--------------------------------　*/
    #contents-main h2 {
        margin: 0 0 12px;
        text-align: left;
        font-size: 135%;
    }
    #contents-main h2 img{
        width: 40%;
    }
    #contents-main h3 {
        margin: 10px 0;
        font-size: 110%;
        font-weight: 600;
    }

    /* フロント画面 ユーザ設定画面のトグルボタン */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 1em;

}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .switch-slider {
    background-color: #f6a73b;
}

input:focus + .switch-slider {
    box-shadow: 0 0 1px #f6a73b;
}

input:checked + .switch-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.switch-slider {
    border-radius: 34px;
}

.switch-slider:before {
    border-radius: 50%;
}


    /*　段落　*/
    #contents-main p {
        margin:0 0 1em 0 ;
        text-align: left;
    }

    #contents-main .sp-scroll {
        overflow-x: auto;
        padding: 0;
        /* margin: 25px 0 15px 0; */
    }


    /* フッター--------------------------------　*/
    #footer {
        padding: 0 0 0;
    }
    #footer .inner {
        padding: 8px 0;
        display: block;
    }
    #footer .footer_navi ul li {
        display: block;
        margin-right: 0;
    }
    /* コピーライト */

    #footer .footer_navi {
        margin-left: 0;
    }
    footer address {
        font-size: 10px;
    }


    /* トップページ--------------------------------　*/

    #contents-main .ct-left{
        width: 100%;
        position: relative;
        top: inherit;
        display:block;
    }
    #contents-main .ct-right{
        width: 100%;
        margin-left: 0;
    }

    /*　今日のメニュー*/

    #contents-main .ct-below {
        margin-top: 0;
    }
    #contents-main .todaymenu{
        width: 100%;
        margin-bottom: 32px;
        padding: 4.5%;
    }
    #contents-main .todaymenu_date {
        font-size: 14px;
        display: inline-block;
        margin-left: 0.5em
    }
    #contents-main .pop{
        width: 100%;
        margin-bottom: 32px;
    }

    /*月間予定表*/
    #contents-main .menu-schedule {
        padding: 5%;
    }

    #contents-main .menu-schedule_table th {
        width: 13%;
        display: table-cell;
        padding: 4px 4px;
    }
    #contents-main .menu-schedule_table td {
        width: 87%;
        display: table-cell;
    }
    #contents-main .menu-schedule_table .day {
        font-size: 10px;
        margin-left: 2px;
    }

    /*下部固定メニュー*/
    #contents .bottom-menu ul li a {
        line-height: 1;
        font-size: 14px;
        display: block;
        text-align: center;
        padding: 8px 4px;
    }
    #contents .bottom-menu ul li a span {
        display: block;
    }
    #contents .bottom-menu ul li a img {
        max-width: 27px;
        max-height: 27px;
        margin: 0 auto 8px;
        display: block;
    }

    /*保護者TOPメニュー*/
    .registration_list {
        width: 100%;
        margin-bottom: 20px;
        position: relative;
    }
    #contents-main .studentinfo {
        width: 100%;
        margin-top: 0;
    }
    #contents-main .studentinfo_ttl {
        margin: 0 0 1em;
    }
    #contents-main .sub-ttl {
        font-size: 11px;
        line-height: 1.3;
    }
    #contents-main .my-points .student-select .studentinfo_item {
        width: 100%;
        margin-top: 1em;
    }
    #contents-main .my-points {
        padding: 5%;
    }



    /* ページ --------------------------------　*/
    /*共通*/
    #contents-main #main {
        width: 100%;
        margin-right: 0;
        padding-right: 0;
        float: none;
    }
    #contents-main .menu-price {
        font-size: 100%;
    }
    /*btn*/
    #contents-main .update .btn {
        display: inline-block;
        width: 100%;
        margin: 1.5em auto 0;
    }
    #contents-main .cartin {
        margin-top: 0;
    }

    /*登録ページ*/
    #contents-main table .userpict_img img {
        width: 100%;
        max-width: 150px;
        max-height: 150px;
    }
    .form-layout {
        padding: 3% 3% 9%;
    }
    .form-layout table td{
        font-size: 12px;
    }
    table input[type="email"] {
        width: 100%;
    }

    /*メニュー-----------------------*/
    .menu-list_item {
        background-color: #fff;
        border-radius: 20px;
        padding: 1em;
        width: 100%;
        margin: 0 2% 2em;
    }
    #contents-main .title {
        padding: 20px 0 10px;
        margin-bottom: 16px;
    }
    #contents-main .bulk-btn {
        width: 50%;
        position: relative;
        right: inherit;
        bottom: inherit;
        margin: 20px auto 10px;
    }
    #contents-main .category-menu{
        padding: 8px;
    }
    #contents-main .category-menu ul {
        display: flex;
        width: max-content;
        margin: 0 auto;
    }
    #contents-main .category-menu ul li{
        font-size: 100%;
        font-weight: bold;
    }

    .tab_menu li {
        font-size: 100%;
        font-weight: bold;
    }
    #contents-main .menu-detail {
        padding: 5% 4.5% 9%;
    }
    #contents-main .menu-title .menu-name {
        font-size: 100%;
    }
    .menu-detail .menu-list_thumb{
        width: 100%;
    }
    .menu-detail .menu-detail_text{
        width: 100%;
        margin: 1em 0 0;
    }
    #contents-main .dishware_ttl .category-menu_ttl:before,
    #contents-main .dishware_ttl .category-menu_ttl:after {
        content: "";
        width: 20px;
        height: 36px;
    }

    #contents-main .dishware_ttl .category-menu_ttl {
        font-size: 90%;
    }
    #contents-main .order-schedule .cartin .btn {
        margin: 1.5em auto 0;
    }
    #contents-main .bulk-btn .btn {
        font-size: 100%;
    }

    /*カート-----------------------*/
    #contents-main .order-schedule_table th {
        width: 13%;
        display: table-cell;
        padding: 4px 4px;
    }
    #contents-main .order-schedule_table td {
        width: 87%;
        display: table-cell;
    }
    #contents-main .order-schedule_table .day {
        font-size: 10px;
        margin-left: 2px;
    }
    .spinner {
        width: 60px;
    }
    .spinner-sub,
    .spinner-add {
      width: 26px;
      height: 26px;
      font-size: 20px;
      line-height: 22px;
    }
    .order-copy button{
        font-size: 13px;
    }
    #contents-main .order-cancel button img {
        width: 1.5em;
    }
    #contents-main .date-select_calender td .date {
        font-size: 14px;
        white-space: nowrap;
    }

    /*保護者ページ----------------------*/
    /*注文履歴*/
    #contents-main .studentinfo_item_inner {
        display: block;
    }
    #contents-main .studentinfo_item_inner .studentinfo_detail{
        width: 100%;
    }
    #contents-main .studentinfo_item_inner .order-info{
        width: 100%;
    }
    /*生徒選択*/
    #contents-main .studentinfo .cl01 .student_text{
        font-size: 125%;
    }
    /*生徒削除*/
    #contents-main .waku {
        padding: 10px;
        margin: 0.5em 0 1em;
    }


    /*signin-----------------------*/
    .signin-box.form-layout{
        padding-top: 10%;
    }
    .signin-box .form-layout_ct {
        padding: 3% 0 5%;
    }
    .signin-box table th {
        padding: 10px 10px 0;
    }
    .signin-box table td {
        padding: 0 10px 10px;
        font-size: 15px;
    }
    .signin-box .btn{
        margin: 2em auto 1em;
    }
    .first-entry {
        margin-top: 1em;
        display: inline-block;
    }



    /*modal*/
    .modal__content {
        width: 90%;
        top: 45%;
        padding: 5% 3% 3%;
    }
    #contents-main .modal .js-modal-close {
        font-size: 90%;
    }
    #contents-main .date-select_calender_table td {
        padding: 5px 5px;
        text-align: center;
    }
    .btn-modal-close:before {
        top: 4px;
        font-size: 36px;
    }

}
