@charset "UTF-8";


/* ==========================================================================
   WORKSHOP - Common
========================================================================== */
.dateBox {
  display: flex;
  align-items: center;
  line-height: 1.25;
  letter-spacing: 0;
  position: relative;
}
.dateBox p {
  margin-bottom: 0;
}
.dateBox .date-time {
  padding-right: .75rem;
  margin-right: .75rem;
  position: relative;
}
.dateBox .date-time::after {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  border-right: 1px solid var(--border1);
  position: absolute;
  top: -.1em;
  right: 0;
  transform: rotate(12deg);
}
.dateBox .date {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  position: relative;
  white-space: nowrap;
  min-width: 4rem;
}
.dateBox .date span {
  display: block;
}
.dateBox .date_l {
  padding-right: .25rem;
}
.dateBox .date .year {
  font-size: .75rem;
  letter-spacing: -.05em;
  opacity: .5;
}
.dateBox .date .day {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.05em;
}
.dateBox .date .week {
  font-size: .75rem;
}
.dateBox .time {
  font-weight: 600;
  white-space: nowrap;
}

table.detail th {
  font-size: .813rem;
  font-weight: 400;
  letter-spacing: .02em;
  text-align: left;
  white-space: nowrap;
  padding-right: 1.25em;
  position: relative;
  color: var(--d-gray);
}
table.detail th::after {
  content: ':';
  position: absolute;
  right: .5em;
}

.action {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.action .class {
  flex: 0 0 100%;
  font-size: .75rem;
  letter-spacing: 0;
  margin-bottom: .2em !important;
}
.flag {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: .5em .25em .4em;
  font-size: .75rem;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: #FFF;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  position: relative;
}
a.flag {
  border-top: 0;
  border-bottom: 2px solid rgba(0,0,0,0.1);
}
.flag::before {
  content: '\f105';
  display: block;
  font-size: 1em;
  font-family: 'Line Awesome Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}

.flag-apply {
  flex: 1 1 100%;
  background-color: var(--green);
}
.flag-wait {
  flex: 1 1 100%;
  background-color: var(--green);
}
.flag-cancel {
  margin-left: 10px;
  background-color: #FFF;
  color: var(--red);
  border-bottom-color: var(--red);
  font-weight: 400;
}
.flag-finished {
  flex: 0 0 100%;
  background-color: var(--gray);
}
.flag-closed {
  flex: 1 1 100%;
  background-color: var(--gray);
}
.flag.flag-cancel::before,
.flag.flag-finished::before,
.flag.flag-closed::before {
  display: none;
}

.flag .status {
  font-size: .875em;
  font-weight: 400;
}

/* ==========================================================================
   WORKSHOP - Archive
========================================================================== */
.archive .card .dateBox .date-time {
  flex: 1 1 30%;
}
.archive .card .dateBox .action {
  flex: 1 1 70%;
}

.archive .card .card-img-link {
  display: block;
  position: relative;
}
.archive .card .card-img-link .more {
  line-height: 1;
  width: 1.8em;
  height: 1.8em;
  text-align: center;
  padding-top: .35em;
  color: #FFF;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: 2s cubic-bezier(.2,1,.2,1);
}
.archive .card .card-img-link:hover .more {
  transform: translate3d(-50%, -50%, 0) scale(1.6);
  opacity: 1;
}

.archive .card .card-img:not(.no-image) {
  padding-top: 100%;
  background-color: #121214;
}
.archive .card .card-img img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
.archive .card .no-image {
  padding-top: 100%;
}
.archive .card .card-header {
  padding: .5rem 1.5rem;
  background-color: var(--dd-gray);
  color: #FFF;
}
.archive .card .card-body {
  padding: 0;
}
.archive .card .card-body .dateBox {
  padding: .5rem 1.5rem;
}
.archive .card .card-body .dateBox:not(:first-of-type) {
  border-top: 1px solid var(--border1);
}

/* ==========================================================================
   WORKSHOP - Single
========================================================================== */
.single .title {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  line-height: 1.25;
  border-bottom: 1px solid var(--border1);
}
.single .title .ttl {
  letter-spacing: 0;
}
.single .title .ttl span {
  display: inline-block;
}
.single .title .ttl span:not(:last-of-type) {
  margin-right: .5rem;
}

.single .page-top-content h5 {
  margin-top: 1rem;
  line-height: 1.5;
}
.single .page-top-content p {
  margin-bottom: 1rem;
  font-size: 0.813rem;
  line-height: 1.5;
}

@media only screen and (max-width: 767px){
  .single .post_thumbnail {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 575px) {
  .single .page-top-content {
    padding-top: 0;
  }
  .single .post_thumbnail {
    padding: 0;
  }
  .single .post_thumbnail img {
    min-width: 100%;
  }
}

.ws-list .list {
  background-color: #FFF;
  border: 1px solid var(--border1);
  margin: 0 0 15px;
}
.ws-list .list .info {
  padding: 15px 15px 10px;
}
.ws-list .list .class {
  display: block;
  line-height: 1.25;
  font-weight: 700;
}
.ws-list .list .dateBox + .class {
  margin-top: 10px;
}
.ws-list .list .data {
  padding: 0 15px 15px;
  line-height: 1.5;
  color: var(--d-gray);
}
.ws-list .list.row .date {
  padding-right: .75rem;
  margin-right: .75rem;
}
.ws-list .list.row .date::after {
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  border-right: 1px solid var(--border1);
  position: absolute;
  top: -.1em;
  right: 0;
  transform: rotate(12deg);
}
.ws-list .list .data p {
  margin: 0;
}

.ws-list .list .action {
  padding: 0 15px 15px;
  flex-wrap: nowrap;
}
.ws-list .list .action .flag {
  padding: 1em 0 .9em;
  font-size: .875rem;
}

@media only screen and (min-width: 576px) {
  .ws-list .list .class {
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 768px) {
  .ws-list .list.row .info {
    padding: 15px;
    border-right: 1px solid var(--border1);
  }
  .ws-list .list.row .data {
    padding: 15px;
  }
}
