.plan__top {
  margin-bottom: 50px;
}

.plan__body {
  margin-bottom: 70px;
}

.plan__name {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 20px;
}

.plan__name span {
  font-size: 1.6rem;
  font-weight: 400;
}

.plan__desc {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 50px;
}

.plan__image--main {
  width: 100%;
  margin-bottom: 50px;
}

.plan__image--main img {
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

@media (max-width: 768px) {
  .plan__name {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
  }

  .plan__name span {
    font-size: 1.4rem;
    font-weight: 400;
  }

  .plan__desc {
    text-align: left;
  }
}

.plan__base {
  margin-bottom: 50px;
}

.plan__base .right {
  margin-top: 40px;
}

.plan__heading {
  position: relative;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 50px;
}

.plan__heading::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: #4B4743;
}

.plan__price {
  font-size: 1.6rem;
  text-align: center;
}

.weekday_mark {
  width: 2em;
  height: 2em;
  display: inline-block;
  background-color: #F3B02A;
  color: #fff;
  border-radius: 50%;
  padding: 0.6em 0.6em;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1;
}

.plan__price-weekend {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 15px;
}

.plan__price-amount {
  font-size: 3rem;
  font-weight: 600;
}

.plan__base .img_wrapper img {
  border-radius: 10px;
}

@media (min-width: 768px) {
  .plan__base {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .plan__heading{
    font-size: 2rem;
  }

  .plan__base .img_wrapper {
    width: 48%;
  }

  .plan__base .right {
    margin-top: 0;
    width: 48%;
  }
}

.plan__acc--static .plan__acc-header {
  display: block;
  padding: 8px 14px;
  border-radius: 10px 10px 0 0;
  background: #f5bb48;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.plan__acc--static .plan__acc-panel {
  border: 1px solid #e1ddd9;
  border-radius: 0 0 10px 10px;
  background: #fff;
  padding: 18px 16px 26px;
  margin-top: 0;
}

.plan__acc-toggle {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 14px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.plan__acc-label {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
}

.plan__acc-spacer {
  display: block;
}

.plan__acc-icon {
  justify-self: end;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  position: relative;
}

.plan__acc-icon::before,
.plan__acc-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}

.plan__acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.plan__acc-toggle[aria-expanded="true"] .plan__acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
  opacity: 0;
}

.plan__acc-toggle--special {
  background-color: #23B2BA;
}

.plan__acc-toggle--shoot {
  background-color: #61BB7C;
}

.plan__acc-panel {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    height .28s ease,
    opacity .24s ease,
    transform .24s ease;
  will-change: height, opacity, transform;
  margin-top: 10px;
  padding: 0 16px;
  border: 1px solid #e1ddd9;
  border-radius: 10px;
  background: #fff;
}

.plan__acc-panel.is-open {
  opacity: 1;
  transform: translateY(0);
}

.plan__acc-panel>.plan__acc-inner {
  padding: 20px 0;
}

@media (prefers-reduced-motion: reduce) {
  .plan__acc-panel {
    transition: none;
  }

  .plan__acc-icon::before,
  .plan__acc-icon::after {
    transition: none;
  }
}

@media (min-width: 768px) {
  .plan__acc--static .plan__acc-header {
    display: block;
    padding: 10px 14px;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .plan__acc-label {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .plan__acc-toggle {
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font: inherit;
  }
}

.plan__acc-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  justify-items: center;
  align-items: start;
}

@media (min-width: 768px) {
  .plan__acc-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.plan__acc-item {
  width: 100%;
  max-width: 220px;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 8px;
}

.plan__acc-item-icon {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.plan__acc-item-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #5a5450;
}

.plan__acc-options {
  margin: 0;
}

.plan__acc-opt {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.plan__acc-opt:last-child {
  border-bottom: 0;
}

.plan__acc-opt-title small {
  display: block;
  font-size: 1.2rem;
  opacity: .8;
}

.plan__acc-opt-price {
  white-space: nowrap;
}

.plan-accordion__plus {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 18px auto;
  border-radius: 50%;
  background: #fff;
  color: #3F2E18;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 0;
}

/* MARY特別オプション */
.maryopt {
  margin: 24px 0;
}

.maryopt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 960px) {
  .maryopt__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.maryopt__card {
  text-align: center;
}

.maryopt__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.maryopt__title {
  font-size: 1.6rem;
  letter-spacing: .2em;
  font-weight: 600;
  margin: 24px 0 10px;
}

.maryopt__price {
  margin: 0 0 12px;
  font-weight: 600;
}

.maryopt__price-in {
  font-size: 2rem;
}

.maryopt__yen {
  margin-left: 2px;
}

.maryopt__tax {
  margin-left: 4px;
  font-weight: 500;
  font-size: 1.3rem;
  color: #444;
}

.maryopt__desc {
  font-size: 1.4rem;
  line-height: 1.9;
  margin: 0;
}

/* 撮影オプション */
.shootopt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 900px) {
  .shootopt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.shootopt-grid__cell {
  min-width: 0;
  display: flex;
}

.shootopt-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #c9c9c9;
}

/* カード */
.shootopt-card__head {
  display: block;
  margin-bottom: 8px;
}

.shootopt-card__titlewrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.shootopt-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.shootopt-badge--child {
  background: rgb(156, 212, 158);
}

.shootopt-badge--adult {
  background: #7dc5c9;
}

.shootopt-badge--common {
  background: #9E9E9E;
}

.shootopt-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.shootopt-pricewrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.shootopt-note {
  font-size: 1.3rem;
  color: #777;
}

.shootopt-price__num {
  font-size: 1.8rem;
  font-weight: 600;
}

.shootopt-price__unit,
.shootopt-price__tax {
  font-size: 1.2rem;
  margin-left: 2px;
}

.shootopt-detail {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.plan__note-wrap {
  margin-top: 40px;
}

.plan__note-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #5a5450;
}