@charset "UTF-8";
/*-------------------------------------------*/
/* ステップインジケーター
/*-------------------------------------------*/
.progress-container {
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
}
.progress-container .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.progress-container .circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background-color: #ccc;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}
.progress-container .active .circle {
  background-color: #2196f3;
  border-color: #2196f3;
}
.progress-container .label {
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}
.progress-container .active .label {
  color: #000;
}
.progress-container .line {
  flex: 1;
  height: 2px;
  background-color: #2196f3;
  margin: 0 10px 30px;
}
.progress-text {
  text-align: center;
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .progress-container {
    max-width: 220px;
  }
  .progress-container .circle {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
  .progress-container .label {
    font-size: 12px;
    margin-top: 5px;
  }
  .progress-container .line {
    margin: 0 0 25px;
  }
  .progress-text {
    font-size: 12px;
  }
}
/*-------------------------------------------*/
/* マップ
/*------------------------------------------*/
.map-container {
  max-width: 768px;
  margin: 0 auto;
}
.map-area {
  position: relative;
  margin-top: 5%;
  text-align: center;
}
.map-area img {
  width: 70%;
  display: inline;
}
.map-button {
  position: absolute;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.map-button img {
  width: 100% !important;
}
.btn-hkd {
  top: 9%;
  left: 51%;
  width: 98px;
}
.btn-thk {
  top: 44%;
  left: 72%;
  width: 80px;
}
.btn-kto {
  top: 64%;
  left: 68%;
  width: 80px;
}
.btn-tyb {
  top: 45%;
  left: 44%;
  width: 80px;
}
.btn-ksa {
  top: 81%;
  left: 47%;
  width: 80px;
}
.btn-tyg {
  top: 59%;
  left: 28%;
  width: 80px;
}
.btn-shi {
  top: 87%;
  left: 32%;
  width: 80px;
}
.btn-kyu {
  top: 72%;
  left: 9%;
  width: 80px;
}
.btn-oki {
  top: 45%;
  left: 10%;
  width: 80px;
}
.btn-oln {
  top: 104%;
  left: 22%;
  width: 426px;
}
@media screen and (max-width: 768px) {
  .map-container {
    margin-bottom: 30vw;
  }
  .map-area img {
    width: 85%;
  }
  .btn-hkd {
    top: 0%;
    left: 48%;
    width: calc(74vw / 768 * 100 * 2.2);
  }
  .btn-thk {
    top: 40%;
    left: 78%;
    width: calc(56vw / 768 * 100 * 2.2);
  }
  .btn-kto {
    top: 60%;
    left: 78%;
    width: calc(56vw / 768 * 100 * 2.2);
  }
  .btn-tyb {
    top: 40%;
    left: 36%;
    width: calc(56vw / 768 * 100 * 2.2);
  }
  .btn-ksa {
    top: 79%;
    left: 46%;
    width: calc(56vw / 768 * 100 * 2.2);
  }
  .btn-tyg {
    top: 58%;
    left: 7%;
    width: calc(56vw / 768 * 100 * 2.2);
  }
  .btn-shi {
    top: 89%;
    left: 26%;
    width: calc(56vw / 768 * 100 * 2.2);
  }
  .btn-kyu {
    top: 100%;
    left: 7%;
    width: calc(56vw / 768 * 100 * 2.2);
  }
  .btn-oki {
    top: 27%;
    left: 7%;
    width: calc(56vw / 768 * 100 * 2.2);
  }
  .btn-oln {
    top: 118%;
    left: 7%;
    width: calc(282vw / 768 * 100 * 2.2);
  }
}
/*-------------------------------------------*/
/* 場所選択
/*-------------------------------------------*/
.place-list {
  display: flex;
  flex-direction: column;
  width: 600px;
  margin: 0 auto;
}
.place-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  padding: 1em 0;
}

.place-item:last-child {
  border-bottom: none;
}
.place-item button {
  padding: 10px 20px;
  margin-right: 30px;
  color: initial;
  font-size: 1.2em;
  font-weight: bold;
  border: 2px solid #ccc;
  border-bottom: 4px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  cursor: pointer;
  width: 25%;
}
.place-item .place-list {
  text-align: left;
  font-size: 0.9em;
  width: 75%;
}
.place-item .place-list p {
  margin: 0;
}
.place-item .place-list a {
  color: #0078d4;
  text-decoration: none;
  font-weight: bold;
}
.place-item .place-list a:hover {
  text-decoration: underline;
}
.back-button {
  margin: 2em;
  text-align: center;
}
.back-button span {
  color: #0078d4;
}
.back-button button {
  padding: 10px 25px;
  color: initial;
  font-size: 1.1em;
  border-radius: 20px;
  border: 2px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .place-list {
    width: 100%;
  }
  .place-item button {
    margin-right: 10px;
    width: 35%;
    color: initial;
    font-size: 0.9em;
    padding: 10px;
  }
  .place-item .place-list {
    width: 65%;
    font-size: 12px;
  }
  .place-item .place-list p {
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
  }
  .back-button {
    margin: 10px 0 0;
  }
  .back-button button {
    font-size: 14px;
  }
}
/*-------------------------------------------*/
/* カレンダー選択
/*-------------------------------------------*/
.place-info {
  max-width: 768px;
  margin: 0 auto 20px;
  font-size: 15px;
  display: grid;
  grid-template-columns: 20% 1fr;
  gap: 10px 0;
}
.place-info dt {
  text-align: center;
}
.place-info dd {
  margin: 0;
}
/* ヘッダー部分 */
.calendar-header {
  font-weight: bold;
  background-color: #f9f9f9;
  max-width: 768px;
  margin: 0 auto;
  font-size: 15px;
}
.calendar-header table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 0px;
  border-bottom: 2px solid #ccc;
}
.calendar-header th {
  text-align: center;
  vertical-align: middle;
  border: 0px;
  height: 40px;
}
/* カレンダー部分 */
.calendar-container {
  max-height: 50vh;
  overflow-y: auto;
  max-width: 768px;
  margin: 0 auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: 15px;
}
.calendar-container::-webkit-scrollbar {
  display: none;
}
.calendar-container table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.calendar-container th,
.calendar-container td {
  border: 1px solid #ccc;
  text-align: center;
  vertical-align: middle;
  height: 40px;
}
.calendar-container td img {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .calendar-header {
    font-size: 12px;
  }
  .place-info {
    display: grid;
    grid-template-columns: 15% 1fr;
    font-size: 12px;
  }
  .calendar-container {
    max-height: 40vh;
    font-size: 12px;
  }
  .calendar-container th,
  .calendar-container td {
    height: 35px;
  }
}
/*-------------------------------------------*/
/* 共通
/*-------------------------------------------*/
.dsp-pc {
  display: block !important;
}
.dsp-sp {
  display: none !important;
}
.dsp-sp-vertical {
  writing-mode: horizontal-tb;
}
@media screen and (max-width: 768px) {
  .calendar-subject {
    width: 30%;
  }
  .dsp-pc {
    display: none !important;
  }
  .dsp-sp {
    display: block !important;
  }
  .dsp-sp-vertical {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}
