@charset "UTF-8";

#PhotoFee img {
  height: auto;
}

.PhotoFee h2 {
  text-align: center;
  margin-bottom: 50px;
}

.location-plan__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 46px 20px;
}

.location-card {
  text-align: center;
}

.location-card__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
}

.location-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card__name {
  margin: 12px 0 8px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.location-card__price {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  font-family: "PT Serif", serif;
  font-style: italic;
}

.location-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 32px;
  padding: 0 14px;
  border: 1px solid #c7b07a;
  font-size: 12px;
  line-height: 1;
  color: #988123;
  text-decoration: none;
  background: #fff;
  transition: 0.3s;
}

.location-card__btn:visited {
  color: #988123;
}

.location-card__btn:hover {
  background: #8f6d1f;
  color: #fff;
}

/* plan-option */
.option-section {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 70px;
  box-sizing: border-box;
}
@media screen and (max-width: 680px) {
  #main .option-section {
    padding: 40px 13px;
  }
}
.option-section h2 {
  color: #707070;
  font-size: 40px;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 60px;
}
@media screen and (max-width: 680px) {
  #main .option-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.option-wrap {
  margin-bottom: 60px;
}
.option-wrap h3 {
  color: #988123;
  font-size: 20px;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 10px;
}
@media screen and (max-width: 680px) {
  .option-wrap {
    margin-bottom: 30px;
  }
  .option-wrap h3 {
    font-size: 16px;
    margin-top: 30px;
  }
}

.option-item-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.option-item {
  width:  47%;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #D9D9D9;
  padding: 20px 40px;
  box-sizing: border-box;
  margin-bottom: -1px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 680px) {
  .option-item {
    width: 100%;
    padding: 20px;
  }
}
.option-name {
  font-size: 16px;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 20px;
}
.option-price {
  font-size: 16px;
  font-weight: 500;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 20px;
}
.etc {
  width: 100%;
  font-size: 12px;
}
.option-section {
  background-color: #F7F5F3;
}

#PhotoFee, .option-section {
  max-width: 1300px;
  margin: 0 auto;
}

.option-section {
  border-radius: 10px;
  padding: 50px 70px;
}

.option-section h2 {
  text-align: center;
  font-size: 32px;
  color: #988124;
}

.mt70 {
  margin: 70px auto 0 !important;
}

@media screen and (max-width: 680px) {
  .option-name,
  .option-price {
    font-size: 13px;
  }
  .etc {
    font-size: 11px;
  }
}

@media (max-width: 991px) {
  .location-plan__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-plan__title {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .location-plan {
    padding: 40px 16px 50px;
  }

  .location-plan__title {
    margin-bottom: 28px;
    font-size: 22px;
  }

  .location-card__name {
    font-size: 13px;
  }
  .location-plan__grid {
    gap: 46px 13px;
  }
  .location-card__price {
    font-size: 16px;
  }
}