@charset "UTF-8";

html {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-size: .705vw;
  height: 100%;
}

body {
  color: #000;
  background: #fff;
  font-family: 'Hiragino Kaku Gothic ProN',
    'ヒラギノ角ゴ ProN W3',
    'Helvetica Neue',
    Arial,
    'Hiragino Sans',
    'Meiryo',
    sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
  overflow-y: scroll;
}

a {
  text-decoration: none;
  color: #fff;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
}

.contents {
  display: flex;
}

.el_hover_op {
  transition: all .25s ease;
}

.el_hover_op:hover {
  opacity: .8;
}

.el_sp {
  display: none;
}

.el_inner {
  padding: 0 30px;
}

.bl_main {
  width: 500px;
  margin: 0 auto;
  min-height: 100vh;
  padding-bottom: 100px;
}

.bl_schedule {
  margin: 15px 0 30px;
}

.bl_schedule_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #000;
}

.bl_schedule_table th,
.bl_schedule_table td {
  padding: 12px 10px;
  border: 1px solid #000;
  text-align: left;
  vertical-align: top;
  font-size: 11.5px;
  font-weight: bold;
  letter-spacing: normal;
}

.bl_schedule_table thead th {
  background-color: #d9d9d9;
  font-weight: bold;
  text-align: center;
  padding: 3px 0;
}

.bl_schedule_table tbody th {
  width: 31%;
  background-color: #fafafa;
}

.bl_schedule_table_btnWrap {
  display: flex;
}

.bl_schedule_table_btn {
  width: calc((100% - 20px) / 3);
  cursor: pointer;
}

.bl_schedule_table_btn:not(:last-child) {
  margin-right: 10px;
}


/* P-Money */
.bl_pmoney {
  position: relative;
}

.bl_pmoney_btnWrap {
  position: absolute;
  bottom: 10%;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 0px 12%;
  width: 100%;
}

.bl_pmoney_btn {
  display: block;
  width: calc((100% - 8%) / 3);
}

.bl_contact {
  padding: 0 30px;
}

@media screen and (max-width: 500px) {

  .el_inner {
    padding: 0 5%;
  }

  .bl_schedule_table th,
  .bl_schedule_table td {
    padding: 8px 5px;
    font-size: 10px;
  }

  .bl_schedule_table tbody th {
    width: 33%;
  }

  .bl_schedule_table_btn {
    width: calc((100% - 14px) / 3);
  }

  .bl_schedule_table_btn:not(:last-child) {
    margin-right: 7px;
  }

  .bl_contact {
    padding: 0 7%;
  }



}