@charset "UTF-8";

.header {
  transform: translateX(-50%);
}

.breadcrumb {
  display: flex;
  margin: 152px auto 15px;
  max-width: 1130px;
  padding-inline: 15px;
  gap: 5px;
  font-size: 14px;
}

.breadcrumb li::before {
  content: "/";
  margin-right: 5px;
}

.breadcrumb li:first-child::before {
  content: "";
  margin-right: 0;
}

.main {
  margin-top: 0;
}

.main-inner {
  padding: 40px 40px;
  background-color: #FFF;
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
}

.main h2 {
  font-size: 26px;
  font-weight: bold;
  line-height: 36.4px;
  margin-bottom: 20px;
}

.photos {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}

.photos p {
  max-width: 750px;
}

.photos img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.photos ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features {
  margin-bottom: 65px;
}

.features h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.features li {
  font-size: 16px;
  line-height: normal;
  margin-bottom: 5px;
  list-style: disc;
  margin-left: 20px;
}

.equipment {
  margin-bottom: 69px;
}

.equipment h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}

.equipment ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.equipment li {
  font-size: 14px;
  line-height: 14px;
  border: 1px solid #CCC;
  padding: 5px 10px;
}

.form {
  border: 1px solid #CCC;
  border-radius: 20px;
  padding: 40px;
}

.form h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  margin-bottom: 30px;
  padding-left: 18px;
  border-left: 3px solid #222;
}

.form h3 span {
  color: #F00;
  font-size: 20px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 60px;
}

.plan-card {
  cursor: pointer;
}

.plan-card input {
  position: absolute;
  opacity: 0;
}

.plan-card__inner {
  display: block;
  border: 2px solid #ccc;
  border-radius: 20px;
  padding: 40px 20px;
}

.plan-card input:checked+.plan-card__inner {
  border-color: #21A0E1;
}

.plan-card__inner .name {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
  text-align: center;
  line-height: normal;
}

.plan-card__inner .price {
  display: block;
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
  line-height: normal;
}

.plan-card__inner .text {
  display: block;
  font-size: 14px;
  margin-bottom: 30px;
  line-height: normal;
}

.plan-card__inner .time {
  font-size: 14px;
}

#date-select,
#start-time,
#end-time {
  width: 300px;
  height: 60px;
  padding: 10px;
  border: 1px solid #CCC;
  margin-bottom: 60px;
}

.time-range {
  display: flex;
  align-items: center;
  gap: 15px;
}

.time-range p {
  font-size: 14px;
}

.time-range span {
  padding-bottom: 40px;
}

.plan-option {
  margin-bottom: 60px;
}

.option-select {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.option-card {
  cursor: pointer;
}

.option-card input {
  display: none;
}

.option-card__inner {
  display: block;
  border: 2px solid #ccc;
  border-radius: 12px;
  max-width: 168px;
  overflow: hidden;
}

.option-card__inner img {
  width: 100%;
  margin-bottom: 20px;
}

.option-card input:checked+.option-card__inner {
  border-color: #21A0E1;
}

.option-card__name {
  display: block;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  line-height: normal;
  margin-bottom: 5px;
}

.option-card__price {
  display: block;
  font-size: 15px;
  text-align: center;
  line-height: normal;
  margin: 0 auto 20px;
}

form .button {
  display: block;
  max-width: 400px;
  height: 60px;
  background-color: #21A0E1;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
  line-height: 60px;
  border: none;
  border-radius: 10px;
  text-align: center;
  margin: 0 auto;
}

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

  #start-time,
  #end-time {
    width: 250px;
  }
}

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

  #start-time,
  #end-time {
    width: 200px;
  }
}

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

  .form {
    border: none;
    border-radius: 0;
    padding: 0;
  }

  .card-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 35px;
    margin-bottom: 60px;
  }
}

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

  .main-inner {
    padding: 30px 15px;
  }

  #start-time,
  #end-time {
    width: 140px;
  }

  .option-select {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .option-card__inner {
    border-radius: 10px;
    max-width: 158px;
  }

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

  .breadcrumb {
    margin-top: 101px;
  }

  .main h2 {
    font-size: 20px;
    line-height: 28px;
  }

  .photos {
    display: block;
  }

  .photos p {
    margin-bottom: 15px;
  }

  .photos ul {
    gap: 15px;
  }

  .equipment ul {
    padding-right: 10px;
  }

  .form h3 {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
    padding-left: 15px;
  }

  .form h3 span {
    font-size: 18px;
  }

  .plan-card__inner {
    padding: 20px 40px 20px 20px;
  }

  .plan-card__inner h4 {
    margin-bottom: 10px;
  }

  .plan-card__inner .price {
    margin-bottom: 10px;
  }

  #date-select,
  #start-time,
  #end-time {
    height: 40px;
  }

  #start-time,
  #end-time {
    max-width: 134px;
  }

}