/**
* Available vars:
* @var --viewport-from: <number> - Number in pixels without the unit. Required if `--font-size` is not exist.
* @var --viewport-to: <number> - Number in pixels without the unit. Required if `--font-size` is not exist.
* @var --font-size-from: <number> - Number in pixels without the unit. Required if `--font-size` and `--min-font-size` is not exist.
* @var --font-size-to: <number> - Number in pixels without the unit. Required if `--font-size` and `--max-font-size` is not exist.
* @var --max-font-size: <number> - Number in pixels without the unit. Optional.
* @var --min-font-size: <number> - Number in pixels without the unit. Optional.
* @var --viewport-unit-converter: 1vw | 1vh | 1vmin | 1vmax - Optional. Default: 1vw.
* @var --font-size: <length> | <percentage> | <absolute-size> | <relative-size> | Global values - Optional.
*/
*,
*::before,
*::after {
  --viewport-unit-converter: 1vw;
  --fz-from: var(--font-size-from, var(--min-font-size));
  --fz-to: var(--font-size-to, var(--max-font-size));
  --fz-slope: (var(--fz-to) - var(--fz-from)) / (var(--viewport-to) - var(--viewport-from)) * 100;
  --fz-intercept: (var(--viewport-to) * var(--fz-from) - var(--viewport-from) * var(--fz-to)) / (var(--viewport-to) - var(--viewport-from));
  --font-size: calc(var(--fz-slope) * var(--viewport-unit-converter) + var(--fz-intercept) * 1px);
  --min-fz-px: calc(var(--min-font-size) * 1px);
  --max-fz-px: calc(var(--max-font-size) * 1px);
  --clamp: clamp(var(--min-fz-px), var(--font-size), var(--max-fz-px));
  --max: var(--has-max, var(--min));
  --min: var(--has-min, var(--font-size));
  --has-max: min(var(--max-fz-px), var(--font-size));
  --has-min: max(var(--min-fz-px), var(--font-size));
  font-size: var(--clamp, var(--max));
}

/*----------------------------------------------------
  basic
----------------------------------------------------*/
@media (min-width: 769px) {
  .container {
    max-width: 700px;
  }
}
/* -----------------------------------------------------------
  sec-opn
----------------------------------------------------------- */
.sec-opn_bg {
  padding: 60px 0;
  background: url(../img/common/opn_bg.jpg) no-repeat center;
  background-size: cover;
}

.opn-ttl img {
  max-height: 55px;
}

@media (min-width: 769px) {
  .sec-opn_bg {
    padding: 180px 0;
  }
}
@media only screen and (max-width: 768px) {
  .opn-ttl img {
    max-height: 35px;
  }
}
/* -----------------------------------------------------------
  sec01
----------------------------------------------------------- */
.sec01_bg {
  padding: 30px 10px;
  background: url(../img/top/sec04_bg.svg) no-repeat center;
  background-size: cover;
}

.cstm-con {
  width: 100%;
  background: #FFF;
  padding: 5vw;
}

.store-wait {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-align: center;
  padding: 15px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.store-wait__txt {
  display: inline-block;
  font-size: 13px;
  font-weight: normal;
  margin-right: 5px;
}

.store-name {
  font-size: 2.4rem;
  font-weight: 600;
  width: 100%;
  display: block;
  padding: 1.5rem;
  text-align: center;
  background: #13833b;
  color: #FFF;
  letter-spacing: 0.1rem;
}

.store-name-guest {
  font-size: 2.4rem;
  font-weight: 600;
  width: 100%;
  display: block;
  padding: 1.5rem;
  text-align: center;
  background: #c24188;
  color: #FFF;
  letter-spacing: 0.1rem;
}

.store-thumb-img img {
  width: 100%;
  height: auto;
}

.timeline {
  width: 100%;
}

.timeline td {
  padding: 15px;
  line-height: 1.8;
}

.timeline td:first-child {
  font-weight: 600;
  border-bottom: 1px solid #aaa;
  background: #fafafa;
}

.timeline td:nth-child(2n) {
  border-bottom: 1px solid #eee;
}

.text-area-ttl {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  background: #ca1315;
  padding: 0.5rem 1rem;
  display: inline-block;
  color: #FFF;
}

.store-txt_01 p {
  font-size: 1.3rem;
  line-height: 2.1 !important;
}

@media (min-width: 769px) {
  .sec01_bg {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 768px) {
  .store-name-guest {
    font-size: 1.8rem;
  }
  .timeline td {
    width: 100%;
    display: block;
  }
  .timeline td:nth-child(2n) {
    border-bottom: 1px solid #aaa;
  }
}
/*----------------------------------------------------
  button
----------------------------------------------------*/
.button {
  position: relative;
  width: 70%;
  display: inline-block;
  height: 54px;
  text-align: center;
  letter-spacing: 0.2em;
  font-size: 14px;
  text-decoration: none;
  line-height: 54px;
  outline: none;
}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.button {
  color: #ca1315;
  border: 1px solid #ca1315;
  background-color: transparent;
  line-height: 50px;
}

.button:hover {
  text-decoration: none;
  border: 1px solid #ca1315;
  background: #ca1315;
  color: #FFF;
}

.button_box {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media only screen and (max-width: 640px) {
  .button_box {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
  .button {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2em;
    display: inline-block;
    width: 100%;
  }
}/*# sourceMappingURL=single-exhibit_post.css.map */