﻿@charset "utf-8";
/*--------------------------------------------------------------------------------

  reservation

--------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------
  flow
--------------------------------------------------------------------------------*/
#flow .c-heading2 {
  display: flex;
  align-items: center;
}
#flow .c-heading2 .num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5em;
  height: 1.5em;
  background-color: var(--color-primary);
  color: #fff;
  margin-right: .5rem;
}
#flow .triangle {
  width: 50px;
  height: 30px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--pale-color-primary-light);
  margin: 0 auto;
}

/*--------------------------------------------------------------------------------
  apply
--------------------------------------------------------------------------------*/
#apply .c-list {
  width: 100%;
  grid-template-columns: repeat(2,1fr);
}

#apply .c-list.apply-list {
  row-gap: var(--list-rgap, 0.75rem);
}

#apply .c-box .c-btn {
  width: 100%;
}

@media (max-width:760px) {
  #apply .c-list {
    width: 100%;
    grid-template-columns: 1fr;
    grid-row-gap: var(--list-mgl);
  }
}







