h1 {
    padding:20px;
    border-top:5px solid #98D431;
    border-bottom:1px solid #ddd;
    line-height:1.5;
    font-size:20px;
    font-weight: bold;
}

@media screen and (max-width: 768px){
    h1{
        padding:0;
    }
}

h1 p{
    font-size:10px;
    font-weight: bold;
}

#event,p.headline {
    line-height:160%;
    font-size:12px;
    margin:1em 0;
}

#event p {
    margin: 10px 0;
    font-size: 13px;
}

#eventbody {
}

#eventbody h2,
#eventbody h3,
#eventbody h4,
#eventbody h5,
#eventbody h6 
{
    clear:both;
    position:relative;
    color:#333;
    margin:10px 0;
}

#eventbody h2 a,
#eventbody h3 a,
#eventbody h4 a,
#eventbody h5 a,
#eventbody h6 a
{
    color:#000000;
}

#eventbody h2 {
    clear:both;
    margin:30px 0px 7px;
    padding:10px 5px;
    background:#F3F3F3;
    border-left:10px solid #98D431;
    font-size:15px;
}

#eventbody h3{
    clear:both;
    border-left:5px solid #98D431;
    font-size: 13px;
    font-weight:bold;
    margin:16px 0px 8px ;
    padding:5px 10px 4px;
}

/* #eventbody h3 {
    color:#98D431;
} */

#eventbody img {
    max-width: 100%;
}

#eventbody ul {
    margin:20px 0;
    padding:0;
    list-style:none;
}

#eventbody li {
    margin-bottom:5px;
    padding-left:10px;
    border-left:10px solid #6bc6b5;
}

#eventbody strong {
font-weight:bold;
}

#eventbody .table_basic {
    display: table;
    flex-wrap: wrap;
    width: 100%;
    border: 1px solid #707070;
}

#eventbody .table_basic .basic_form {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #707070;
}

#eventbody .table_basic .basic_form .table_label {
    width:15%;
    padding: 5px;
    font-size:13px;
    font-weight:bold;
    background: #dddddd;
    border-right: 2px solid #707070;
}

#eventbody .table_basic .basic_form .table_tb {
    font-size: 13px;
    padding: 5px;
    width:85%;
}

@media screen and (max-width: 768px){
    #eventbody .table_basic .basic_form {
        flex-wrap: wrap;
    }

    #eventbody .table_basic .basic_form .table_label,
    #eventbody .table_basic .basic_form .table_tb {
        width:100%;
        border-right: 0;
    }

    #eventbody .table_basic .basic_form .table_label {
        border-bottom: 2px solid #707070;
    }

}

/* カフェメニュー */
.menu_list {
    display: flex;
    flex-wrap: wrap;
}

.menuitem {
    width: calc(100%/2 + -10px);
    margin: 5px;
}

#eventbody .menu_base {
    display: table;
    width: 100%;
    box-sizing: border-box;
}

#eventbody .menuitem .imgarea {
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80%;
    margin-bottom: 5px;
}

#eventbody .menuitem img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    object-fit: cover;
}

#eventbody .menu_label {
    width: 100%;
    padding: 5px;
    font-size: 16px;
    font-weight: bold;
    box-sizing: border-box;
}

#eventbody .menu_info {
    width: 100%;
    padding: 5px;
    font-size: 13px;
    box-sizing: border-box;
}

#eventbody .menu_name {
    font-weight: bold;
    width: 65%;
}

#eventbody .d_menu_base {
    display: table;
    width: 60%;
}

#eventbody .drink_menu {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

#eventbody .drink_menu:last-child {
    border-bottom: 0;
}

#eventbody .drink_name {
    font-weight: bold;
    width:80%;
    padding: 5px;
    box-sizing: border-box;
}

#eventbody .menu_money {
    width:20%;
    padding: 5px;
    box-sizing: border-box;
}

@media screen and (max-width: 768px){
    .menuitem {
        width: 100%;
        margin: 5px auto;
    }

    #eventbody .d_menu_base {
        width: 100%;
    }

    #eventbody .menu_name,
    #eventbody .drink_name {
        width:75%;
    }
    
    #eventbody .menu_money {
        width:25%;
        
    }
}

/* カフェメニュー END */


/* 商品イメージ */
#eventbody .items {
    width: calc(100% + 10px);
    display: flex;
    flex-wrap: wrap;
}

/* 商品イメージ */
#eventbody .img {
    position: relative;
    float: left;
    width: calc(100% / 4 - 7px);
    border: 1px solid #d3d3d3;
    margin: 0 5px 5px 0px;
    background: #FFFFFF;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 3px solid #98D431;
    margin-bottom: 10px;
    flex-flow: column;
}

@media screen and (max-width: 768px){
    #eventbody .img {
        width: calc(100% / 3 + -10px);
    }
}

#eventbody .img a {
    width: 100%;
    height: 100px;
    padding-bottom: 100%;
    height: 0;
}

#eventbody .img img {
    position: relative;
    margin: 10px;
    width: 160px;
}

#eventbody .img strong {
    padding: 5px 10px 10px;
    font-size: 13px;
}

#eventbody .img p {
    padding: 5px 10px 0;
    margin:0 !important;
    font-size:13px;
    overflow: hidden;
}

#eventbody .img p a {
    color:#333;
    text-decoration:none;
    padding-bottom: 0;
}

#eventbody .img p a:hover {
    color:#98D431;
}

hr {
    clear:both;
}



#eventbody .page_list{
    zoom:1;
    overflow:hidden;
    overflow:-moz-scrollbars-none;
}

#eventbody .page_list li{
    float:left;
    padding:0px 8px 7px 0px;
    white-space:nowrap;
    border:none;
}

#eventbody .page_list li a{
    padding:7px 0px 7px 20px;
    background:url("https://www.noitamina-shop.com/img/geestore2/event/m_event.gif") 0 50% no-repeat;
}

#eventbody .link_more{
    margin:-28px 16px 0px 0px;
    text-align:right;
}

.table_basicevent{
    margin:0px auto;
    width:100%;
    border-top:1px solid #ccc;
    border-left:1px solid #ccc;
}

.table_basicevent th{
    padding: 5px;
    /* width:150px; */
    background:#f1f1f1;
    border-right:1px solid #ccc;
    border-bottom:1px solid #ccc;
}

.table_basicevent th.font_bold{
    font-weight:bold;
}

.table_basicevent td{
    padding: 5px;
    border-right:1px solid #ccc;
    border-bottom:1px solid #ccc;
    word-break:break-all;
}

#eventbody .curemenu_list2{
    margin:0px auto;
    width:700px;
}

#eventbody .curemenu_list2 li{
    float:left;
    margin:0px;
    padding:0px 0px 0px 10px;
    width:335px;
    border:none;
}

#eventbody .curemenu_list2 li.long{
    float:left;
    margin:0px;
    padding:0px 10px 0px 0px;
    width:690px;
    border:none;
}

#eventbody .curemenu_list2 li p{
    margin:0px;
}

#eventbody .curemenu_list{
    margin:0px auto;
    width:500px;
}

#eventbody .curemenu_list li{
    float:left;
    margin:0px;
    padding:0px 10px 0px 0px;
    width:240px;
    border:none;
}

#eventbody .curemenu_list li p{
    margin:0px;
}

.table_eventsche{
    margin:0px auto;
    width:703px;
    border:1px solid #ccc;
}
.table_eventsche thead th{
    padding:3px 5px;
    background:#f1f1f1;
    border:1px solid #ccc;
    font-weight:bold;
    text-align:center;
}
.table_eventsche td{
    padding:3px 5px;
    border:1px solid #ccc;
}

#eventbody .challenge{
    margin:15px auto 0px;
    padding:0px;
    width:500px;
}
#eventbody .challenge li{
    float:left;
    margin:0px;
    padding:0px 0px 8px;
    width:500px;
    border:none;
}

#eventbody .oritoku{
    display: flex;
    flex-wrap: wrap;
    margin:0px;
    padding:0px;
}

#eventbody .oritoku li{
    width: calc(100% / 2 + -10px);
    border: none;
    margin: 5px;
    padding: 0;
}

@media screen and (max-width: 768px){
    #eventbody .oritoku li{
        width:100%;
    }
    .addcartlist {
        font-size: 11px;
    }

    #eventbody .img strong {
        padding: 5px 5px 10px;
    }

    #eventbody .img p {
        padding: 5px 5px 0;
    }

}

#eventbody .oritoku .table_oritoku{
    margin:0px;
    width:340px;
    border-top:1px solid #ccc;
    border-left:1px solid #ccc;
}

#eventbody .oritoku .table_oritoku th{
    padding:3px 5px;
    width:65px;
    background:#f1f1f1;
    border-right:1px solid #ccc;
    border-bottom:1px solid #ccc;
    font-weight:bold;
}

#eventbody .oritoku .table_oritoku td{
    padding:3px 5px;
    border-right:1px solid #ccc;
    border-bottom:1px solid #ccc;
}

/* Google Map レスポンシブ設定 */

.gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

/* Google Map レスポンシブ設定 END */

/******************************
カート追加ボタンのレイアウト
*******************************/

/*カート追加ボタン*/
.addcartlist {
  width: 95%;
  padding: 3px;
  background: #ffffff;
  border: none;
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  margin: 5px auto;
  height: 26px;
  display: flex;
  justify-content:center;
  align-items:center;
  margin-top: auto;
}

/*カート追加ボタン（ダイアログ）*/
.addcartdialog {
  width: 100%;
  padding: 10px;
  background: #ffffff;
  border: none;
  color: #ffffff;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content:center;
  align-items:center;
}

/*カート追加ダイアログのレイアウト*/
.stock_area {
  display: flex;
  flex-wrap: wrap;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.stock {
  width: 100%;
  text-align: left;
  font-size: 15px;
}
.cart_in {
  display: flex;
  width: 100%;
  border: 1px solid #dadada;
  padding: 5px 0px;
  margin: 5px auto;
  box-sizing: border-box;
}
.cart_in .thumbWrapOut {
  max-width: 60px;
}
.thumbWrapOut {
  width: 100%;
  max-width: 80px;
  margin: auto;
}
.thumbWrapIn {
  width: 100%;
  height:0;
  padding-bottom: 100%;
  position: relative;
}
.thumbWrapIn img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ui-dialog {
  padding: 20px!important;
  width: 332px!important;
}
.ui-dialog .ui-dialog-content {
  margin-top: 10px!important;
  padding: 0!important;
}
#dialog_attention {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 11px;
  color: #E72F29;
  font-weight: bold;
  border: 1px solid #E72F29;
  text-align: justify;
}

/*カートボタンのアイコン*/
.addcartlist img {
  width: 18px!important;
  height: 18px!important;
  margin: 0 3px 0 0!important;
}

/*カートボタンのアイコン（ダイアログ）*/
.addcartdialog img {
  width: 20px!important;
  height: 20px!important;
  margin: 0 3px 0 0!important;
}

/*ポップアップ*/
#cart_msg{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:250;
    background: #ffffff;
    width: 200px;
    font-weight: bold;
    border: 1px solid #317b96;
    border-radius: 5px;
    text-align: center;
    padding: 30px;
}


/******************************
カート追加ボタンのレイアウト　ここまで
*******************************/