/* css reset */
@charset "utf-8";
html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p, img, a,
ol, ul, li,
form, label,
table, tbody, tfoot, thead, tr, th, td,
article,footer, header, menu, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  list-style: none;
  text-decoration: none;
  vertical-align: baseline;
}

/* 共通CSS */
html {
    font-family: sans-serif;
  /*min-height: 100%;*/
    height: 100%;
    position: relative;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 15px; 
}

a.logo {
   font-size:14px;
   color:#000000;
}

a:hover,
.btn:hover {
    opacity: 0.6;
    cursor: pointer;
}
.btn:disabled{
    filter:brightness(0.8);
    cursor:not-allowed;
}

.btn {
    padding: 10px 20px;
    font-size: 15px;
    border-radius: 5px;
    border: none;
    margin-top: 20px;
    background-color:#f0f0f0;
}

.btn-sm {
    padding: 3px 10px;
    font-size: 13px;
    margin: 0;
    border-radius: 5px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 30px !important;
    font-weight: bold !important;
    line-height: 1.42857143 !important;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px !important;
    font-weight: bold !important;
    line-height: 1.42857143 !important;
}

.wrapper {
  /*width: 70%;*/
    min-width: 70%;
    padding: 30px 0 30px;
    margin: 0 auto;
}

    .wrapper-title {
        text-align: center;
        margin-bottom: 30px;
    }

    .wrapper-title p {
        color: #4c586f;
    }

    .last-wrapper {
        margin-bottom: 80px;
    }

.wrapper-body{
    text-align: center;
}
        
.news-list {
    width: 80%;
    margin: 0 auto;
}
form {
    /*width: 80%;*/
    margin: 0 auto;
}
        
.btn-submit {
    background-color: #4c586f;
    border: 1px solid #4c586f;
    color: #fff;
}

.btn-gray {
    border: 1px solid #3e3e3b;
    color: #3e3e3b;
}

.btn-blue {
    background-color: #4a80d6;
    border: 1px solid #4a80d6;
    color: #fff;
    margin: 0 ;
}

.btn-yellow {
    background-color: #ef7508;
    border: 1px solid #ef7508;
    color: #fff;
    margin: 0 ;
}

.btn-green {
    background-color: #20c977;
    border: 1px solid #20c977;
    color: #fff;
  /*padding: 5px 10px;*/
    font-size: 15px;
}

.btn-est {
    background-color: #20c977;
    border: 1px solid #20c977;
    color: #fff;
}

.btn-red {
  /*background-color: #ffe0e0*/;
    border: 1px solid red;
    color: red;
    padding: 5px 10px;
    font-size: 15px;
}

.btn-txt{
    padding: 4px 8px;
    font-size:13px;
}
.btn-txt2{
    padding: 6px 20px;
    font-size:14px;
}


/* header */
header {
    height: 60px;
    background-color: /*#4c586f*/#F5C51D;
    position: fixed;
    z-index: 1; 
    width: 100%;
}

    /* スマホ用メニューを非表示 */
    .sp-menu,
    .cart {
        display: none;
    }

    #logo {
      /*width: 120px;*/
        width: 48px;
        margin-top:-12px;
        margin-right:6px;
        vertical-align:middle;
    }

    .header-logo a{
        float:left;
      /*line-height: 68px;*/
        line-height: 66px;
        padding-right: 40px;
        font-size: 24px;
        font-weight:bold !important;
    }

    .header-logo a:hover{
        opacity: 1;
    }

    .menu a {
        line-height: 60px;
        color: #fff;
    }

    .menu-left a{
        float: left;
        padding-right: 15px;
    }

    .menu-right a{
        float: right;
        padding-right: 15px;
    }

/* top-img */
.top-img {
    height: 600px;
    background-image: url("img/bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.top-text {
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: #fff;
    text-align: center;
}

/* news */
.news-list li {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid;
}

    .news-list a {
        color: #3e3e3b;
    }

/* service */
.boxs {
    display: flex;
}

    .box {
        width: 50%;
        margin: 20px 10px;
        text-align: center;
    }

    .box img {
        width: 100%;
    }

/* about */
.about-table {
    text-align: left;
    width: 100%;
}

    .about-table th,td {
        padding: 10px 0;
    }
    .about-table th {
        width: 30%;
        vertical-align: top;
    }

    iframe {
        width: 100%;
    }

/* contact */
form  {
    text-align: center;
}
    
.form-group {
  /*margin-bottom: 20px;*/
  /*margin-bottom: 12px;*/
    text-align: left;
    margin:0px auto 12px;
    width:90%;
}
    
input,
textarea {
    width: 100%;
    border: 1px solid #ebeced;
}
    
    input {
        height: 25px;
    }
    
    textarea {
        height: 200px;
    }
    
.error {
    font-size: 12px;
    color: #d84950;
}

.price {
    font-size: 18px;
    /*color: #d84950;*/
    font-weight:bold;
}
    

/* footer */
footer {
  /*height: 60px;*/
    height: 96px;
    background-color: /*#3e3e3b*/#a0a0a0;
    text-align: center;
  /*position: absolute;*/
    position: relative;
    bottom: 0;
    width: 100%;
    color: #fff;
    line-height: 60px;
    font-size:14px;
}
.fmenu {
    width:calc(100% - 0px);
    margin:0px auto;
    padding: 6px 0;
    /* border:1px solid red; */
    line-height: 24px;
    color:#000000;
    background-color: #eeeeee;
}
.fmenu a{
    color:#000000;
}

/* page.html */
.page-title {
    border-bottom: 1px solid #ddd;
    padding: 20px 0 10px;
}
    
.page-text {
    padding: 20px 0 80px;
}

/* confirm.php */
.conf-form {
    background-color: #ebeced;
    padding: 30px;
}

/* send.php */
.thanks{
    background-color: #ebeced;
    padding: 80px 0;
}
    
    .thanks h4 {
        margin-bottom: 10px;
    }

/* breadcrumb */
.breadcrumbs {
    padding-top: 60px;
    background-color: #ebeced/*#a0a0a0*/;
}
    .breadcrumbs ul {
        padding: 10px 0;
    }

    .breadcrumbs li {
        display: inline;
        font-size: 13px;
        font-weight: bold;
    }

    .breadcrumbs li a{
        color: #4c586f;
        font-size: 13px;
        font-weight: normal;
    }

    .breadcrumbs ul li::before {
        padding: 0 6px 0 6px;
        font-family: "Font Awesome 5 Free";
        font-weight: 900 !important;
        content: "\f105";
        font-size: 14px;
        color: #3e3e3b;
    }

/* sns */
#sns {
    background-color: #ebeced;
    padding-bottom: 80px;
}
.sns {
    width: 50%;
    margin: 0 auto;
}

/* login.html */
.login,
.register {
    width: 55%;
    margin: 0 auto;
    padding: 50px 0;
}

.login {
    background-color: #ebeced;
    border:1px solid #ebeced;
}

.register {
    border:1px solid #ebeced;
    text-align: center;
}

/* register.html */
.checkbox {
    width: auto;
}

/* regi_conf.php */
.conf-form{
    background-color: #ebeced;
    padding: 30px;
}

/* regi_end.php */
.thanks{
    background-color: #e4eff3/*#ebeced*/;
    text-align: center;
    padding: 50px 0;
    justify-content: center;
}

.thanks h4{
    margin-bottom: 10px;
}

/* updmem.php */
.updmsg{
    background-color: #d8f9cd;
    text-align: center;
    padding: 20px 0;
    justify-content: center;
}


/* shop */
.itemlist ul:after {
    content: "";
    clear: both;
    display: block;
}

.itemlist ul {
    display: flex;
    flex-wrap:wrap;
}
.itemlist ul li {
    display: block;
    width: 31%;
    margin: 10px 10px;
}

.itemlist ul li:nth-child(3n-1) {
   /*margin: 10px 5%;*/
}

.itemlist img {
    width: 100%;
}

.item-form {
    float: right;
    margin-top: 15px;
}

.item-form input{
/*    width: 20px;*/
    width: 36px;
    padding: 0 5px;
    text-align: right;
}

/* cart */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}

    .cart-table th,
    .cart-table td {
        border: 1px solid #ebeced;
        vertical-align: middle;
        padding: 5px 10px;
    }

    .cart-table th {
        background-color: #4c586f;
        color: #fff;
    }

    .cart-table button {
        margin: 0;
    }

    .total td{ 
        text-align: center;
    }

    .cart-btn {
        text-align: center;
    }

/* pay */
.pay-form {
    width: calc(90% - 114px);
    background-color: #ebeced;
  /*padding: 35px 30px;*/
    padding: 25px 30px;
}
.pay-form.nofocus input{
  color:#4f4f4f;
/*user-select: none;*/
  outline: none;
/*pointer-events: none;*/
}
.settle-form {
    background-color:#e4eff3;
}

.form-group label {
    font-size: 13px;
}

.sm-form {
    width: 10%;
}

/* calendar.php */

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.calendar-table th,
.calendar-table td{
    border: 1px solid #ebeced;
    padding: 10px;
}

.calendar-table .header {
    background-color: #4c586f;
    color: #fff;
    font-size: 12px;
    text-align: left;
}

.month {
    text-align: center;
    width: 100%;
}

.month a {
    color: #4a80d6;
}

.left {
    float: left;
}

.right {
    float: right;
}

.day {
    height: 100px;
}


/* cart icon */

span.quantity_badge {
    position: relative;
    top: -16px;
    left: -10px;
}

span.quantity_badge {
    position: relative;
    top: -8px;
    left: -4px;
    background-color: #cd162c;
    padding: 3px 4px;
    border-radius: 16px;
    color: #fff;
    font-size: 10px;
    text-decoration: none !important;
}

.zero_quantity_badge{
	background-color:transparent !important;
}
span.zero_quantity_badge{
	color:transparent !important;
}

label.settle {
    display: inline-block;
    padding: 5px 12px;
    cursor: pointer;
}
label.settle input {
    width: 22px;
    height: 16px;
    display: inline-block;
    position:relative;
    top:3px;
    /*-webkit-appearance: none;*/
}

/* menu_boxs */
    .menu_boxs {
        display: flex;
        width:80%;
        margin: 0 auto;
    }

    .menu_box {
        display: inline-block;
        width: 25%;
        height: 140px;
        border:1px solid #ebeced;
        margin: 0 5px;
        padding:20px 0 0 0;
        text-align: center;
        color: #3e3e3b;
        background-color: #eeeeeb;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
        }
    .menu_box:hover {
        color: #4c586f;
    }
    .menu_icon{
        font-size: 60px;
        height: 80px;
        line-height: 120px;
    }
    .menu_box p {
        font-size: 20px;
        font-weight: bold;
    }


.area_settle {
   margin: 6px auto;
}
.area_bill {
   margin: 6px auto 0px;
   font-size:12px;
}


/*--------------------------*/

/* legal.php */
.legal-table {
    width: 90%;
    border-collapse: collapse;
}
.legal-table th,
.legal-table td {
    border: 1px solid #ebeced;
    vertical-align: middle;
    padding: 20px 40px;
}
.legal-table th {
    background-color: #4c586f;
    color: #fff;
}
.legal-td-head {
    width:30%;
    background-color: #ecf0f5;
    color: #333;
    border-bottom:1px solid #ffffff !important;
}
.legal-td-text {
    width:70%;
    color: #333;
}
.legal-table button {
   margin: 0;
}
.legal-btn {
   text-align: center;
}
.legal-td-head h3 {
  font-size: 16px !important;
  font-weight: bold !important;
  line-height: 1.0em !important;
/*border-bottom: solid 3px #cce4ff;*/
  position: relative;
}
.legal-td-head h3:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #5472cd;
  bottom: -3px;
  width: 80%;
}

/* updmem.php */
.sel-disp {
  height:28px;
  padding:2px 20px;
  border:1px solid #ebeced;
}

/* member menu */
.dropdown {
  float:right;
  position: relative;
  display: inline-block;
  -webkit-appearance: none;
}
    
.dropdown-content {
  display: none;
  position: absolute;
  top:42px;
  left:-16px;
  background-color: #f6f6f6;
  min-width: 100px;
  box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2);
  padding: 6px 16px;
  z-index: 1;
  -webkit-appearance: none;
}
.dropdown-content a{
/*border-top:1px solid black;*/
  color:black;
  line-height:30px;
  float:left;
  -webkit-appearance: none;
}
.dropdown-content a:hover{
  color:black;
  text-decoration:underline;
  -webkit-appearance: none;
}
    
.dropdown:hover .dropdown-content {
  display: block;
  -webkit-appearance: none;
}
.dropdown:focus .dropdown-content {
  display: block;
  -webkit-appearance: none;
}


/* member contents */
.mem-contents {
   width:100%;
   overflow: hidden;
}
.mem-item {
   float: left;
   padding: 0px 14px;
   text-align: left;
   width:calc((100% - 64px)/2);
   margin:20px auto;
}
.mem-contents::after {
   content: "";
   display: block;
   clear: both;
}
.mem-items {
   font-size:14px;
   margin:20px 20px 60px 20px;
   padding:20px;
   border:1px solid #aaa;
   border-radius:6px;
   -webkit-appearance: none;
}
.mem-items p{
   margin-bottom:12px;
}
/* index.php */
.mem-item-a {
   float: left;
   padding: 0px 14px;
   text-align: left;
   width:calc((100% - 64px)*0.76);
   margin:10px auto;
}
.mem-item-b {
   float: left;
   padding: 0px 14px;
   text-align: center;
   width:calc((100% - 64px)*0.24);
   margin:10px auto;
}
.mem-items-a {
   font-size:14px;
   margin:12px 12px 24px 12px;
   padding:20px;
   border:1px solid #ccc;
   border-radius:6px;
   -webkit-appearance: none;
}
.mem-items-a p{
   margin-bottom:12px;
}

/* member pulldown */
.cp_ipselect04 {
  position: relative;
  display: flex;
  align-items: center;
/*margin: 2em auto;*/
  margin: 1em auto;
  border: 2px solid #333333;
  border-radius: 50px;
  -webkit-appearance: none;
}
/*プルダウンの三角を設定*/
.cp_ipselect04::before {
  position: absolute;
  right: 15px;
  content: '';
  width: 16px;
  height: 8px;
  background: #000000;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  -webkit-appearance: none;
}
.cp_ipselect04 select {
  width: 100%;
  padding: 10px 25px 10px 30px;
  color: #000000;
  cursor: pointer;
  text-overflow: ellipsis;/*テキストがオーバーしたら'...'で省略*/
  z-index: 1;
  /* 標準のスタイルを無効にする */
  border: none;
  appearance: none;
  outline: none;
/*border: 2px solid #f4c436;*/
  border-radius: 50px;
  background:rgba(244,196,54,0.6);
  font-size:14px;
  font-weight:bold;
  -webkit-appearance: none;
}


/* media query */

/* pc */
@media all and (min-width: 769px) {
    /* page_wp.php */
    .disp-pagearea {
         width:64%;
         margin:24px auto;
    }
    .disp-pagearea-a {
         width:84%;
         margin:24px auto;
    }
}
/* tablet */
@media all and (min-width: 481px) and (max-width: 768px) {
    /* page_wp.php */
    .disp-pagearea {
         width:90%;
         margin:24px auto;
    }
    .disp-pagearea-a {
         width:90%;
         margin:24px auto;
    }
}

/* mobile */
@media all and (max-width: 480px) {
    /* page_wp.php */
    .disp-pagearea {
         width:100%;
         margin:24px auto;
    }
    .disp-pagearea-a {
         width:98%;
         margin:24px auto;
    }
}

