@charset "UTF-8";
/* =============================================
display
============================================= */
.pc {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

/* =============================================
Title
============================================= */
.page-ttl {
  font-size: 1.7em;
  letter-spacing: 0.1em;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.7;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-ttl {
    font-size: 1.4em;
  }
}
.page-ttl span {
  display: block;
  font-size: 0.5em;
}

.form-label {
  font-size: 12px;
}

.shop-ttl {
  font-size: 1.1em;
  letter-spacing: 0.1em;
  line-height: 1.7;
  font-weight: 600;
  text-align: center;
}

.low-ttl {
  font-size: 1.4em;
  letter-spacing: 0.1em;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.7;
  font-weight: 700;
}

/* =============================================
Text
============================================= */
.text-small {
  font-size: 0.8em;
}

.form-remark {
  font-size: 0.7em;
  margin-top: 0.5em;
}
.form-remark.nm {
  margin-top: -0.8rem;
}
@media screen and (max-width: 768px) {
  .form-remark.nm {
    margin-top: 0.5em;
  }
}

.form-check-label {
  font-size: 1rem;
}

/* =============================================
Button
============================================= */
.btn {
  width: 100%;
  max-width: 500px;
  line-height: 2;
  display: inline-block;
  border: 0;
}
.btn.btn-primary {
  background-color: #f19176;
}
.btn.btn-primary:hover {
  background-color: #b2573d;
}
.btn.btn-back {
  background-color: #cccccc;
  color: #fff;
}
.btn.btn-back:hover {
  background-color: #666;
  color: #fff;
}
.btn.btn-link {
  color: #231916;
  text-decoration: none;
}

.btn-mini {
  display: block;
  width: 100%;
  padding: 0.2rem;
  border-radius: 0.25rem;
  text-align: center;
  color: #000;
  text-decoration: none;
  font-size: 12px;
}
.btn-mini.btn-primary {
  background-color: #f19176;
  color: #fff;
}
.btn-mini.btn-primary:hover {
  background-color: #b2573d;
}
.btn-mini.btn-secondary {
  color: #fff;
  border: none;
}
.btn-mini.btn-delete {
  background: inherit;
  border: none;
  font-size: 12px;
}
.btn-mini.btn-delete svg {
  color: #b2573d;
}

.btn-logout {
  font-size: 14px;
  text-decoration: underline;
}

.carendar-position {
  position: relative;
}

.btn_disabled {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  background: #cfcfcf;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  color: #fff;
  border-radius: 0.25rem;
  margin: 0 auto 1.5rem;
}

/* =============================================
Form
============================================= */
.form-control {
  border-radius: 5px;
  border-color: #ccc;
  padding: 0.5rem 0.75rem;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.form-check {
  margin-bottom: 0.5rem;
}

.datepicker-dropdown {
  margin-left: 114px;
  margin-top: -41px;
}

/* =============================================
Alert
============================================= */
.alert {
  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;
}
@media screen and (max-width: 768px) {
  .alert {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.alert div {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .alert form {
    width: 100%;
  }
}
.alert .send_btn {
  display: block;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #856404;
  background: #856404;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .alert .send_btn {
    margin: 10px auto 0;
    text-align: center;
  }
}
.alert.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert.alert-warning .send_btn {
  border: 2px solid #856404;
  background: #856404;
  color: #fff;
}
.alert.alert-success .send_btn {
  border: 2px solid #0f5132;
  background: #0f5132;
  color: #fff;
}
.alert form {
  min-width: 136px;
}
@media screen and (max-width: 768px) {
  .alert form {
    width: 100%;
  }
}

/* =============================================
Common
============================================= */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #231916;
}

#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

main {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

.container-inner {
  width: 65%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container-inner {
    width: 85%;
  }
}

/* =============================================
Header
============================================= */
header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 124px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(34.95%, rgba(255, 255, 255, 0.5)), color-stop(95.92%, #DFC7BD));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 34.95%, #DFC7BD 95.92%);
}
@media screen and (max-width: 768px) {
  header {
    height: 88px;
  }
}
header .logo {
  margin: 20px 0 0 50px;
}
@media screen and (max-width: 768px) {
  header .logo {
    margin: 10px 0 0 20px;
  }
  header .logo img {
    width: 100px;
    height: auto;
  }
}
header.head-top {
  background: none;
}

.header-menu-btn {
  width: 1.5rem;
  height: 0.9375rem;
  position: relative;
  z-index: 99;
  margin: 20px 30px 0 0;
}
.header-menu-btn span {
  width: 100%;
  height: 1px;
  background: #231916;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-menu-btn span:first-of-type {
  top: 0;
}
.header-menu-btn span:nth-of-type(2) {
  top: 0.44rem;
}
.header-menu-btn span:last-of-type {
  bottom: 0;
}

.dropdown-toggle.show span:first-of-type {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
  bottom: 0;
}
.dropdown-toggle.show span:nth-of-type(2) {
  opacity: 0;
}
.dropdown-toggle.show span:last-of-type {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}

.dropdown-toggle:after {
  display: none;
}

.dropdown-menu {
  -webkit-transform: translate3d(-114px, 50px, 0px) !important;
          transform: translate3d(-114px, 50px, 0px) !important;
  padding: 10px;
}
.dropdown-menu li {
  margin-bottom: 0.5rem;
}
.dropdown-menu li:first-child {
  margin-bottom: 1rem;
}
.dropdown-menu li a {
  color: #231916;
  text-decoration: none;
  font-size: 14px;
}

/* =============================================
Navigation
============================================= */
.head-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head-nav li {
  list-style: none;
}

/* =============================================
 Footer
============================================= */
footer {
  margin-top: auto;
  background: #fff;
}
footer a {
  color: #231916;
}
footer .operating {
  font-size: 1em;
  font-weight: bold;
  border-top: 0.3px #ddd solid;
}
footer .address {
  font-size: 0.8em;
}
@media screen and (max-width: 768px) {
  footer .address {
    font-size: 0.6em;
  }
}
footer .copyright {
  font-size: 0.6em;
  background-color: #dfc7bd;
}

/* =============================================
Secton
============================================= */
.ttl-sec {
  padding: 2rem 0;
}

.alert-sec {
  padding: 2rem 0;
}

/* =============================================
Form
============================================= */
.form-row {
  margin-bottom: 1.5rem;
}

.btn-wrap {
  text-align: center;
  margin-top: 3rem;
}
.btn-wrap .btn {
  margin-bottom: 1.5rem;
}

.mybtn-wrap {
  margin-top: 0.5rem;
  text-align: center;
}

/* =============================================
Low
============================================= */
.low-row {
  margin-bottom: 3rem;
  line-height: 2;
}

/* =============================================
Top page
============================================= */
.main-visual {
  margin-top: -124px;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .main-visual {
    margin-top: -88px;
    margin-bottom: 0;
  }
}
.main-visual img {
  width: 100%;
  height: auto;
}

.top-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.top-action .box {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .top-action .box {
    width: 100%;
  }
}
.top-action .box .btn {
  font-size: 16px;
}

/* =============================================
Register page
============================================= */
.form-control-plaintext span {
  margin-left: 10px;
  font-size: 0.8em;
}

/* =============================================
My page
============================================= */
table th {
  border-bottom-color: rgb(222, 226, 230) !important;
  border-bottom-width: 2px !important;
}
table th.action {
  width: 120px;
}
@media screen and (max-width: 768px) {
  table.coupon th,
  table.coupon td {
    width: 100%;
    display: block;
    padding: 1rem 0.5rem !important;
  }
}
table.coupon-cont td {
  font-size: 0.8rem;
  padding: 1rem 0.5rem;
}

/* =============================================
Low
============================================= */
.low-row ol {
  margin: 0 0 0 10px;
}
.low-row ol li {
  position: relative;
  list-style: outside decimal;
  padding: 0 0 0 5px;
}
.low-row ol li ol {
  margin-top: 10px;
}

/* =============================================
Coupon
============================================= */
.coupon-name {
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem !important;
  border: 2px solid #DFC7BD !important;
}/*# sourceMappingURL=user_style.css.map */