.reservation-main {
  padding: 48px 16px 120px;
  color: #333333;
}

.reservation-main__container {
  width: min(100%, 960px);
  margin: 0 auto;
}

.reservation-main__header {
  display: grid;
  justify-items: center;
  gap: 20px;
}

.reservation-main__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 64px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.reservation-main__subhead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.reservation-main__line {
  display: block;
  width: 56px;
  height: 1px;
  background: #7a7979;
}

.reservation-main__subtitle {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.reservation-main__description {
  margin: 56px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.reservation-main__card {
  margin-top: 56px;
  padding: 64px 48px;
  background: #c8836b;
}

.reservation-main__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: start;
}

.reservation-main__row--start-time,
.reservation-main__row--people {
  align-items: center;
}

.reservation-main__row--start-time .reservation-main__label {
  transform: translateY(0px);
}

.reservation-main__label {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
}

.reservation-main__value {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  color: #ffffff;
  min-height: 1px;
}

.reservation-main__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #ffffff;
}

.reservation-main__divider {
  display: block;
  width: 94%;
  height: 0;
  margin: 28px auto;
  background: none;
  border-top: 1px solid rgba(247, 248, 250, 0.68);
}

.reservation-main__footnote {
  display: grid;
  gap: 12px;
}

.reservation-main__footnote .reservation-main__text {
  font-size: 16px;
  line-height: 1.75;
}

.reservation-date {
  padding: 0 16px 120px;
  color: #333333;
}

.reservation-date__container {
  width: min(100%, 960px);
  margin: 0 auto;
}

.reservation-date__guide {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  color: #333333;
}

.reservation-date__placeholder {
  width: 100%;
  height: 660px;
  margin-top: 24px;
  background: #d9d9d9;
}

.reservation-calendar {
  height: 100%;
  padding: 18px;
  background: #ffffff;
}

.reservation-calendar__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.reservation-calendar .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.reservation-calendar .calendar-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.reservation-calendar .calendar-nav {
  width: 36px;
  height: 36px;
  border: 1px solid #c9c9c9;
  background: #ffffff;
  cursor: pointer;
}

.reservation-calendar .calendar-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  text-align: center;
}

.reservation-calendar .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  flex: 1;
  grid-auto-rows: 1fr;
}

.reservation-calendar .calendar-cell {
  position: relative;
  height: auto;
  min-height: 72px;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  text-align: center;
  padding-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
}

.reservation-calendar .calendar-cell:nth-child(7n + 1) {
  border-left: 1px solid #dddddd;
}

.reservation-calendar .calendar-grid .calendar-cell:nth-child(-n + 7) {
  border-top: 1px solid #dddddd;
}

.reservation-calendar .calendar-cell .date {
  font-size: 14px;
  line-height: 1.3;
}

.reservation-calendar .calendar-cell .status {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1;
}

.reservation-calendar .calendar-cell.empty .status,
.reservation-calendar .calendar-cell.empty .date {
  visibility: hidden;
}

.reservation-calendar .calendar-cell--standard {
  background-color: rgba(202, 232, 226, 0.5);
}

.reservation-calendar .calendar-cell--special {
  background-color: #fddac5;
}

.reservation-calendar .calendar-course-card {
  display: flex;
  position: absolute;
  left: calc(100% + 8px);
  top: 28px;
  transform: translateY(3px);
  width: 256px;
  min-height: 64px;
  height: auto;
  padding: 12px 12px;
  border: 1px solid #8b9098;
  background: #f4f7fb;
  box-shadow: 0 6px 16px rgba(33, 40, 52, 0.11), 0 1px 2px rgba(33, 40, 52, 0.06);
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  box-sizing: border-box;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.reservation-calendar .calendar-cell:hover .calendar-course-card {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.reservation-calendar .calendar-grid .calendar-cell:nth-child(7n) .calendar-course-card {
  left: auto;
  right: calc(100% + 8px);
}

.reservation-calendar .calendar-course-card__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-style: italic;
  line-height: 1.1;
}

.reservation-calendar .calendar-course-card__title {
  font-size: 20px;
}

.reservation-calendar .calendar-course-card__description {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.reservation-calendar .calendar-course-card--standard::before,
.reservation-calendar .calendar-course-card--special::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  pointer-events: none;
}

.reservation-calendar .calendar-course-card--standard::before {
  background: #b9d7d1;
}

.reservation-calendar .calendar-course-card--special::before {
  background: #e7c8b7;
}

.reservation-calendar .calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  display: none;
}

.reservation-date__legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.reservation-date__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
}

.reservation-date__mark {
  display: inline-block;
  min-width: 1em;
  text-align: center;
}

.reservation-date__legend--course {
  margin-top: 8px;
}

.reservation-date__color-chip {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  border-radius: 2px;
}

.reservation-date__color-chip--standard {
  background-color: #cae8e2;
}

.reservation-date__color-chip--special {
  background-color: #fddac5;
}

@media (max-width: 768px) {
  .reservation-main {
    padding: 40px 16px 96px;
  }

  .reservation-main__title {
    font-size: 36px;
  }

  .reservation-main__line {
    width: 36px;
  }

  .reservation-main__subtitle {
    font-size: 16px;
  }

  .reservation-main__description {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.9;
  }

  .reservation-main__card {
    margin-top: 40px;
    padding: 30px 18px 24px;
  }

  .reservation-main__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .reservation-main__label {
    font-size: 18px;
    line-height: 1.6;
  }

  .reservation-main__text {
    font-size: 16px;
    line-height: 1.8;
  }

  .reservation-main__divider {
    margin: 20px auto;
  }

  .reservation-main__footnote .reservation-main__text {
    font-size: 16px;
    line-height: 1.8;
  }

  .reservation-date {
    padding: 0 16px 96px;
  }

  .reservation-date__placeholder {
    height: 430px;
    margin-top: 16px;
  }

  .reservation-calendar {
    padding: 10px;
  }

  .reservation-calendar .calendar-title {
    font-size: 16px;
  }

  .reservation-calendar .calendar-cell {
    min-height: 46px;
    padding-top: 4px;
  }

  .reservation-calendar .calendar-cell .date {
    font-size: 12px;
  }

  .reservation-calendar .calendar-cell .status {
    margin-top: 4px;
    font-size: 12px;
  }

  .reservation-calendar .calendar-legend {
    margin-top: 8px;
    font-size: 12px;
    gap: 4px 12px;
  }

  .reservation-date__legend {
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-top: 16px;
  }
}

.reservation-policy {
  padding: 0 16px 120px;
  color: #333333;
}

.reservation-policy__container {
  position: relative;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 40px 44px;
  border: 1px solid transparent;
  background: #ffffff;
}

.reservation-policy__container::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px solid rgba(222, 154, 129, 0.65);
  pointer-events: none;
}

.reservation-policy__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
}

.reservation-policy__text {
  margin: 20px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
}

@media (max-width: 768px) {
  .reservation-policy {
    padding: 0 16px 96px;
  }

  .reservation-policy__container {
    padding: 24px 18px;
  }

  .reservation-policy__title {
    font-size: 24px;
  }

  .reservation-policy__text {
    margin-top: 16px;
    font-size: 20px;
  }
}

.reservation-access {
  padding: 0 16px 120px;
  color: #333333;
}

.reservation-access__container {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.reservation-access__content {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 56px;
  align-items: start;
}

.reservation-access__left {
  grid-column: 2;
  grid-row: 1;
}

.reservation-access__address {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 0;
  padding: 20px 32px;
  position: relative;
  transform: translateX(-64px);
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
  color: #ffffff;
  background: #c8836b;
}

.reservation-access__routes {
  margin-top: 48px;
  text-align: center;
  transform: translateX(-64px);
}

.reservation-access__route {
  margin: 28px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
}

.reservation-access__route:first-child {
  margin-top: 0;
}

.reservation-access__map {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 560px;
  background: #d9d9d9;
}

@media (max-width: 768px) {
  .reservation-access {
    padding: 0 16px 96px;
  }

  .reservation-access__content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .reservation-access__left,
  .reservation-access__map {
    grid-column: auto;
    grid-row: auto;
  }

  .reservation-access__address {
    margin-top: 0;
    padding: 16px 18px;
    transform: none;
    font-size: 20px;
  }

  .reservation-access__routes {
    margin-top: 24px;
    transform: none;
  }

  .reservation-access__route {
    margin-top: 20px;
    font-size: 20px;
  }

  .reservation-access__map {
    height: 360px;
  }
}

.page-reservation .reservation-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 224px;
  height: 100vh;
  padding: 120px 40px 40px;
  background: #333333;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.12);
  z-index: 30;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  color: #ffffff;
}

.page-reservation .reservation-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-reservation .reservation-sidebar__list li {
  padding: 14px 0;
}

.page-reservation .reservation-sidebar__list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.page-reservation .reservation-sidebar__list a {
  color: #ffffff;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.page-reservation .reservation-sidebar__list a:hover {
  color: #de9a81;
}

.page-reservation:not(.page-mypage) .reservation-sidebar__list li:nth-child(4) > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
}

.page-reservation:not(.page-mypage) .reservation-sidebar__list li:nth-child(4) > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 1.1em;
  transform: translateY(-50%);
  background: #de9a81;
}

.page-reservation:not(.page-mypage).is-access-current .reservation-sidebar__list li:nth-child(4) > a::before {
  content: none;
}

.page-reservation:not(.page-mypage).is-access-current .reservation-sidebar__list li:nth-child(5) > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
}

.page-reservation:not(.page-mypage).is-access-current .reservation-sidebar__list li:nth-child(5) > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 1.1em;
  transform: translateY(-50%);
  background: #de9a81;
}

.page-reservation .workshop-header__icon {
  flex-direction: column;
  gap: 2px;
  transition: color 0.24s ease;
}

.page-reservation .workshop-header__icon-label {
  transition: color 0.24s ease;
}

.page-reservation .workshop-header__icon:hover {
  color: #ffffff;
}

.page-reservation .workshop-header__icon:hover .workshop-header__icon-label {
  color: #ffffff;
}

.page-reservation .workshop-header__menu-label,
.page-reservation .workshop-header__icon-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #000000;
}

.page-reservation .workshop-header__menu .workshop-header__menu-label {
  display: block;
  width: auto;
  height: auto;
  background: none;
  transition: color 0.24s ease;
}

.page-reservation .workshop-header__menu .workshop-header__menu-line {
  display: block;
}

.page-reservation .workshop-header__menu {
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.page-reservation:not(.is-sidebar-open) .workshop-header__menu .workshop-header__menu-line {
  display: none;
}

.page-reservation .workshop-header__menu .workshop-header__menu-open-icon {
  display: block;
  width: auto;
  height: auto;
  background: none;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  transition: color 0.24s ease;
}

.page-reservation:not(.is-sidebar-open) .workshop-header__menu {
  transition: color 0.24s ease;
}

.page-reservation:not(.is-sidebar-open) .workshop-header__menu:hover {
  color: #ffffff;
}

.page-reservation:not(.is-sidebar-open) .workshop-header__menu:hover .workshop-header__menu-label {
  color: #ffffff;
}

.page-reservation .workshop-header__menu .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  line-height: 1;
}

.page-reservation .workshop-header__menu .workshop-header__menu-close-icon,
.page-reservation .workshop-header__menu .workshop-header__menu-close-label {
  display: none;
  width: auto;
  height: auto;
  background: none;
}

.page-reservation .workshop-header__menu .workshop-header__menu-close-icon {
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  transition: color 0.24s ease;
}

.page-reservation .workshop-header__menu .workshop-header__menu-close-label {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #000000;
  transition: color 0.24s ease;
}

.page-reservation.is-sidebar-open .workshop-header__menu {
  transition: color 0.24s ease;
}

.page-reservation.is-sidebar-open .workshop-header__menu:hover {
  color: #ffffff;
}

.page-reservation.is-sidebar-open .workshop-header__menu:hover .workshop-header__menu-close-label {
  color: #ffffff;
}

.page-reservation .reservation-sidebar-overlay {
  opacity: 0;
  visibility: hidden;
}

.page-reservation.is-sidebar-open .reservation-sidebar {
  transform: translateX(0);
}

.page-reservation.is-sidebar-open .workshop-header__menu .workshop-header__menu-line,
.page-reservation.is-sidebar-open .workshop-header__menu .workshop-header__menu-open-icon,
.page-reservation.is-sidebar-open .workshop-header__menu .workshop-header__menu-label {
  display: none;
}

.page-reservation.is-sidebar-open .workshop-header__menu .workshop-header__menu-close-icon,
.page-reservation.is-sidebar-open .workshop-header__menu .workshop-header__menu-close-label {
  display: block;
}

.page-reservation.is-sidebar-open .workshop-header__bar {
  left: 224px;
  width: calc(100% - 224px);
}

.page-reservation.is-sidebar-open main {
  margin-left: 224px;
}

.page-reservation.is-sidebar-open .workshop-footer {
  margin-left: 224px;
}

/* mypage: minimal scoped adjustments */
.page-mypage .reservation-main {
  padding: 48px 16px 120px;
}

.page-mypage .reservation-main__container {
  width: min(100%, 960px);
}

.page-mypage .reservation-main__header {
  gap: 16px;
}

.page-mypage .reservation-main__title {
  font-size: clamp(40px, 8vw, 64px);
}

.page-mypage .reservation-main__subtitle {
  font-size: clamp(14px, 2.4vw, 18px);
}

.page-mypage .reservation-sidebar__list li:nth-child(1) > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 12px;
}

.page-mypage .reservation-sidebar__list li:nth-child(1) > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 1.1em;
  transform: translateY(-50%);
  background: #de9a81;
}

.page-mypage .mypage-section {
  margin-top: 32px;
  padding: 32px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  background: #ffffff;
}

.page-mypage .mypage-section:first-of-type {
  margin-top: 56px;
}

.page-mypage .mypage-section h2 {
  margin: 0 0 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  color: #333333;
}

.page-mypage .mypage-section dl {
  margin: 0;
  padding: 0;
}

.page-mypage .mypage-section dl > div {
  display: grid;
  grid-template-columns: 176px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(51, 51, 51, 0.16);
}

.page-mypage .mypage-section dl > div:first-child {
  border-top: 0;
  padding-top: 0;
}

.page-mypage .mypage-section dt,
.page-mypage .mypage-section dd {
  margin: 0;
}

.page-mypage .mypage-section dt {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #7a7979;
}

.page-mypage .mypage-section dd {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #333333;
}

.page-mypage .mypage-sensitive-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.page-mypage .mypage-sensitive {
  font-variant-numeric: tabular-nums;
}

.page-mypage .mypage-reveal {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #7a7979;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-mypage .mypage-reveal:hover {
  color: #de9a81;
}

.page-mypage .mypage-reveal:focus-visible {
  outline: 1px solid #de9a81;
  outline-offset: 2px;
}

.page-mypage .mypage-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-mypage .mypage-section li {
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid rgba(51, 51, 51, 0.16);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #333333;
}

.page-mypage .mypage-section li:first-child {
  border-top: 0;
  padding-top: 0;
}

.page-mypage .mypage-section p {
  margin: 16px 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #333333;
}

.page-mypage #mypage-profile-title + dl + p,
.page-mypage #mypage-history-title + dl + p {
  font-size: 14px;
  color: #7a7979;
}

.page-mypage .mypage-section a {
  color: #333333;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.page-mypage .mypage-section a:hover {
  color: #de9a81;
}

.page-mypage .mypage-section[aria-labelledby="mypage-info-title"] a,
.page-mypage .mypage-section[aria-labelledby="mypage-contact-title"] a {
  color: #b7745d;
  text-decoration-line: underline;
  text-decoration-color: rgba(183, 116, 93, 0.85);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.page-mypage .mypage-section[aria-labelledby="mypage-info-title"] a:hover,
.page-mypage .mypage-section[aria-labelledby="mypage-contact-title"] a:hover {
  color: #de9a81;
  text-decoration-color: #de9a81;
}

.page-mypage .mypage-section[aria-labelledby="mypage-info-title"] a:focus-visible,
.page-mypage .mypage-section[aria-labelledby="mypage-contact-title"] a:focus-visible {
  outline: 1px solid #de9a81;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .page-mypage .reservation-main {
    padding: 40px 16px 96px;
  }

  .page-mypage .mypage-section {
    margin-top: 24px;
    padding: 24px 20px;
  }

  .page-mypage .mypage-section:first-of-type {
    margin-top: 40px;
  }

  .page-mypage .mypage-section h2 {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .page-mypage .mypage-section dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 0;
  }

  .page-mypage .mypage-section dt {
    font-size: 13px;
  }

  .page-mypage .mypage-section dd,
  .page-mypage .mypage-section li,
  .page-mypage .mypage-section p {
    font-size: 15px;
  }
}
