body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background-image: linear-gradient(to right top, #336cb0, #0096d4, #00bcc3, #00da81, #a8eb12);
  padding: 20px 2% 0 2%;
}

.layout::-webkit-scrollbar {
  /* width: 15px;
  height: 10px;
  background: #ffffff; */
  }
  
  /* スクロールの背景の設定 */
  .layout.scrollbar::-webkit-scrollbar {
width: 15px;
height: 10px;
background: #f5f5f5;
}
  
  /* スクロールのつまみ部分の設定 */
  .layout.scrollbar::-webkit-scrollbar-thumb {
  background: #5e00e7;
  }

/* -- 共通Layout ---------------------------- */
.flexLayout{
	display: flex;
}
.wrap{
	flex-wrap: wrap;
}
.nowrap{
	flex-wrap: nowrap;
}
.mx-auto{
	margin: 0 auto;
}

.just-center{
	justify-content: center;
}
.just-around{
	justify-content: space-around;
}
.just-between{
	justify-content:space-between;
}
.just-stretch{
	justify-content:stretch;
}
.align-start{
	align-items: flex-start;
}
.align-center{
	align-items:center;
}
.align-end{
	align-items:flex-end;
}

.gap5{
	grid-gap: 5px;
}
.gap10{
	grid-gap: 10px;
}
.gap20{
	grid-gap: 20px;
}
.col00{
	width: 100%;
}
.col10{
	width: 10%;
}
.col20{
	width: 20%;
}
.col3{
	width: 31%;
}
.col80{
	width: 80%;
}
.col90{
	width: 90%;
}
.col50{
	width: 50%;
}
.col70{
	width: 70%;
}
.col30{
	width: 30%;
}
.col32{
	width: 32%;
}
@media (max-width: 960px) {
	.col70,.col30,.col3,.col10,.col90{
	width: 100%;
}
.col32{
	width: 49%;
}
}

@media (max-width: 465px) {
	.col50,.col80,.col20{
	width: 100%;
}
}
.width100{
	width: 100%;
}
.width1200{
	width: 1200px;
}
.width800{
	width: 800px;
}
@media (max-width: 1000px) {
  .width800{
    width: 100%;
  }
}
.width600{
	width: 600px;
}
@media (max-width: 800px) {
  .width600{
    width: 100%;
  }
}

/* -- フォント整列 ---------------------------- */
.f0{
  font-size: 10px;
  }
  .f1{
    font-size: 12px;
  }
  .f2{
    font-size: 14px;
  }
  .f3{
    font-size: 16px;
  }
  .f4{
    font-size: 18px;
  }
  .f6{
    font-size: 20px;
  }
  .f7{
    font-size: 24px;
  }
  .f8{
    font-size: 28px;
  }
  .f9{
    font-size: 34px;
  }

  .fontB{
    font-weight: bold;
  }
.t-center{
	text-align: center;
}
.t-right{
	text-align: right;
}
.t-left{
	text-align: left;
}
.t-just{
	text-align:justify
}

/* -- padding/marign ---------------------------- */

.padding10{
	padding: 10px;
}
.padding20{
	padding: 20px;
}
.padding2010{
	padding: 20px;
}
.padding40{
	padding: 40px;
}
@media (max-width: 465px) {
.padding40{
	padding: 20px;
}
.padding2010{
	padding: 15px;
}
}
.marign10{
  margin: 10px;
}
.marign20{
  margin: 20px;
}
.marign40{
  margin: 40px;
}
@media (max-width: 465px) {
  .marign40{
    margin: 20px;
  }
  }
.padding-t10{
	padding-top: 10px;
}
.padding-t30{
	padding-top: 30px;
}
.padding-b10{
	padding-bottom: 10px;
}
.padding-b30{
	padding-bottom: 30px;
}
.padding-r10{
	padding-right: 10px;
}
.padding-r20{
	padding-right: 20px;
}
.padding-l10{
	padding-left: 10px;
}
.padding-l20{
	padding-left: 20px;
}

.marign-t10{
	margin-top: 10px;
}
.marign-t30{
	margin-top: 30px;
}
.marign-b10{
	margin-bottom: 10px;
}
.marign-b30{
	margin-bottom: 30px;
}
.marign-r10{
	margin-right: 10px;
}
.marign-r30{
	margin-right: 30px;
}
.marign-l10{
	margin-left: 10px;
}
.marign-l30{
	margin-left: 30px;
}

/* -- フォントカラー ---------------------------- */
.font-w{
	color: #ffffff;
}
.font-blue{
	color: #336CB0;
}
.font-green{
	color: #008000;
}
.font-red{
	color: #FF0000;
}

/* -- 背景カラー ---------------------------- */
.bg-w{
	background: #ffffff;
}
.bg-blue{
	background: #336CB0;
}
.shadow{
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}


/* -- btnデザイン ---------------------------- */

.Sbtn{
	background: #ffffff;
	border-radius: 50vh;
	color: #000;
  text-align: center;
	font-size: 14px;
	padding: 5px 20px;
	border: 2px solid #000000;
}
.radius50{
border-radius: 50vh;
}
.radius10{
border-radius:10px;
}
.radius20{
border-radius:20px;
}

/* -- header ---------------------------- */

.header {
  width: 96%;
  height: 70px;
  position: fixed;
  z-index: 99;
  border-radius:  20px 20px 0 0 ;
}


.header-content {
  display: flex;
  align-items: center;
}

.header-orderbtn{
  display: none;
	padding:5px 20px; 
	border-radius: 50vh;
	font-size:14px; 
	background: #5e00e7; 
	color: #fff;
}


@media (max-width: 860px) {
  .header-content {
    justify-content: space-between;
  }
  .header-orderbtn{
    display: inherit;
  }
  .header-content>a {
    display: inline-flex;
  }
}

.header-logo {
  width: 20%;
}

.header-logo img {
  width: 150px;
}
@media (max-width: 465px) {
	.header-logo img {
  width: 120px;
}
}

.header-navigation {
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
}


@media (max-width: 860px) {
  .header-navigation {
    display: none;
  }
}

.header-navigation-links {
  display: flex;
  align-items: center;
}

.header-navigation-links a {
  text-decoration: none;
  color: #336CB0;
  padding: 5px 25px;
  font-weight: 600;
  font-size: 14px;
  background: #F1F4F6;
  transition: 0.15s ease;
  border-radius: 100vh;
}

.header-navigation-links a:hover {
  color: #fff !important;
  background: #336CB0;
}


.header-navigation-links a+* {
  margin-left: 1.5rem;
}

.header-navigation-links a:hover,
.header-navigation-links a:focus {
  color: #000;
}


.header-navigation-actions {
  display: flex;
  align-items: center;
  position: relative;
}


.icon-button {
  font: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #5e00e7;
  transition: 0.15s ease;
}

.icon-button i {
  font-size: 1.6em;
}


/* -- 全体管理Layout ---------------------------- */

.layout {
  border-radius: 20px 20px 0 0;
  z-index: 1;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 100%;
    background: #f5f5f5;
    overflow-y: auto;
    overflow-x: hidden;
}

.layout.has-sidebar {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.sidebar {
  width: 280px;
  min-width: 280px;
  -webkit-transition: width, left, right, 0.3s;
  transition: width, left, right, 0.3s;
  overflow-x: hidden !important;
  position: relative;
}

.layout .sidebar.collapsed {
  width: 80px;
  min-width: 80px;
}


/* -- sidebar ---------------------------- */

.sidebar::-webkit-scrollbar-thumb,
.content::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  border-radius: 4px;
}

.sidebar::-webkit-scrollbar,
.content::-webkit-scrollbar,
.container::-webkit-scrollbar {
  width: 6px;
  background-color: #ffffff;
}



.sidebar-layout {
  padding-top: 90px;
  height: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  z-index: 2;
}


@keyframes swing {
  0%,
  30%,
  50%,
  70%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(10deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }
}

.sidebar .menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.sidebar .menu .menu-header {
  padding: 5px 25px;
  font-size: 0.8em;
  letter-spacing: 2px;
  opacity: 0.5;
}


.sidebar .menu .menu-item a {
  display: flex;
  align-items: center;
  height: 45px;
  padding: 0px 20px;
  color: #505050;
}

.sidebar .menu .menu-item a .menu-icon {
  font-size: 1.2rem;
  width: 35px;
  min-width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  border-radius: 2px;
  transition: color 0.3s;
}

.sidebar .menu .menu-item a .menu-icon i {
  display: inline-block;
}

.sidebar .menu .menu-item a .menu-title {
  font-size: 15px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
  transition: color 0.3s;
}
.sidebar .menu .menu-item a .menu-title-sm {
  display: none;
 }

.sidebar .menu .menu-item:hover,
.sidebar .menu .menu-item:active {
  background: #F1F4F6;
}

.sidebar .menu .menu-item a:hover .menu-title {
  color: #336CB0;
}

.sidebar .menu .menu-item a:hover .menu-icon {
  color: #336CB0;
}

.sidebar .menu .menu-item a:hover .menu-icon i {
  animation: swing ease-in-out 0.5s 1 alternate;
}

.sidebar.collapsed .menu-header {
  display: none;
}



.sidebar .sidebar-collapser {
  transition: left, right, 0.3s;
  position: fixed;
  left: calc(2% + 250px);
  top: 118px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #5e00e7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  transform: translateX(50%);
  z-index: 111;
  cursor: pointer;
  color: white;
}

.sidebar.collapsed .sidebar-collapser {
  left: calc(2% + 50px);
}

.sidebar.collapsed .sidebar-collapser i {
  transform: rotate(180deg);
}

.badge{
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  margin-left: 15px;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  color: #fff;
  background-color: #ff0000;
}


/* -- スマホ対応 ---------------------------- */

@media (max-width: 860px) {
	#btn-collapse {
    display: none;
  }
  .sidebar-layout {
    padding-top: 0;
    width: 96%;
  }
  .sidebar.break-point-sm {
    position: fixed;
    bottom: 0;
	width: 100%;
    z-index: 100;
  }
	.layout .sidebar .menu .menu-item a .menu-title-sm {
 display:inherit!important;
}
.layout.fixed-sidebar .sidebar {
  overflow: hidden;
		padding-top:0px;
		    height:90px!important;
    min-height: 90px!important;
		
	}

	.layout .menu li{
		display: inline-flex;
		width: 18%;
		justify-content: center;
		    align-items: center;
		    height: 70px;
		    margin-top: 5px;
	}
	.stickyBottom{
		position: fixed!important;
		left: 0px;
		bottom: 120px;
    font-size: 12px;
		background:#fffb00;
		width: 40px!important;
    height: 120px!important;
    display: block!important;
    font-weight: 600;
	}
  .stickyBottom .menu-icon{
    font-size: 1.0rem!important;
    margin-left: -2px;
  }
	.menu-header,.nobottomMenu,.layout .sidebar .menu .menu-item a .menu-title{
		display: none!important;
	}
	.layout .sidebar .menu .menu-item a{
		    text-align: center;
		display: block;
		padding: 0px 5px;
	}
	.menu-suffix{
		position: absolute;
		top: 0;
	}
	.layout .sidebar .menu .menu-item a .menu-icon{
	font-size: 1.4rem;
        width: 100%;
    margin-right: 0px;
    transition: color 0.3s;
	}
	.layout .sidebar .menu .menu-item a .menu-title{
		font-size: 12px;
	}

  .layout .sidebar.break-point-sm.collapsed {
    left: 0px;
  }

  .layout .sidebar.break-point-sm.toggled~.overlay {
    display: block;
  }

}


.layout .content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width:2000px) {
  .layout .content {
    width: 1400px;
  }
}

.layout .overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 99;
  display: none;
}



.layout .footer {
  margin-top:50px;
  margin-bottom: 0px;
      padding: 50px 20px 50px 20px;
    height: 250px;
}
@media screen and (max-width:860px) {
  .layout .footer {
      padding-bottom: 150px;
      height: 400px;
  }
}

.footer img {
  width: 150px;
}

.footer{
	background: #336CB0;
}
.footer a,.footer{
	color:#ffffff;
	font-size:12px;
}