/*============================
#plans
============================*/
section#plans {
  display: flex;
  padding: var(--padding-block, 80px) var(--padding-inline, 20px);
  flex-direction: column;
  align-items: center;
  gap: var(--gap-row, 56px);
}
section#plans h2 {
  color: var(--on-surface, #423527);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: var(--scale-40, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
section#plans div.plans__body {
  display: flex;
  max-width: var(--width-md, 1080px);
  flex-direction: column;
  align-items: center;
  gap: var(--scale-20, 20px);
  align-self: stretch;
  width: 100%;
  margin-inline: auto;
}
section#plans div.plans__body table {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
}
section#plans div.plans__body table thead {
}
section#plans div.plans__body table thead tr {
}
section#plans div.plans__body table thead tr td.spacer {
  width: 270px;
}
section#plans div.plans__body table thead tr:nth-of-type(1) th {
  padding: var(--scale-8, 8px);
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: var(--scale-16, 16px) var(--scale-16, 16px) 0 0;
  background: var(--primary, #f0813b);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
section#plans
  div.plans__body
  table
  thead
  tr:nth-of-type(1)
  th:nth-last-of-type(1) {
  background: var(--tertiary, #2f67ba);
}
section#plans
  div.plans__body
  table
  thead
  tr:nth-of-type(1)
  th:nth-last-of-type(2) {
  background: var(--secondary, #298344);
}
section#plans div.plans__body table thead tr:nth-of-type(2) th {
  padding: var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-right: 1px solid var(--border, #a9a9a9);
  border-bottom: 1px solid var(--border, #a9a9a9);
  border-left: 1px solid var(--border, #a9a9a9);
  background: var(--primary-container, #ffe5d5);
}
section#plans
  div.plans__body
  table
  thead
  tr:nth-of-type(2)
  th:nth-last-of-type(1) {
  background: var(--tertiary-container, #cadfff);
}
section#plans
  div.plans__body
  table
  thead
  tr:nth-of-type(2)
  th:nth-last-of-type(2) {
  background: var(--secondary-container, #d0f0da);
}

section#plans div.plans__body div.price {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
section#plans div.plans__body div.price div.num {
  color: var(--on-surface);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: var(--scale-40, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 40px */
}

section#plans div.plans__body div.price div.yen {
  color: var(--on-surface);
  font-family: "Zen Maru Gothic";
  font-size: var(--scale-24, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
section#plans div.plans__body div.price div.yen small {
  font-size: var(--scale-12, 12px);
  line-height: 100%;
}
section#plans div.plans__body table thead tr th div.price div.yen span {
}
section#plans div.plans__body table tbody {
}
section#plans div.plans__body table tbody tr {
}
section#plans div.plans__body table tbody tr th[colspan="3"] {
  border-left: 1px solid var(--border, #a9a9a9);
  background-color: #eee;
}
section#plans div.plans__body table tbody tr th {
  color: var(--on-surface, #423527);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: var(--scale-24, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  border-right: 1px solid var(--border, #a9a9a9);
  border-bottom: 1px solid var(--border, #a9a9a9);
  border-left: 1px solid var(--border, #a9a9a9);
  padding: var(--scale-8);
}

section#plans div.plans__body table tbody tr:nth-of-type(2) th {
  border-top: 1px solid var(--border, #a9a9a9);
  border-radius: var(--scale-16, 16px) 0 0 0;
}

section#plans div.plans__body table tbody tr:nth-last-of-type(1) th {
  border-radius: 0 0 0 var(--scale-16, 16px);
}
section#plans div.plans__body table tbody tr td {
  border-right: 1px solid var(--border, #a9a9a9);
  border-bottom: 1px solid var(--border, #a9a9a9);
  padding: var(--scale-16, 16px) 0;
}

section#plans div.plans__body table tbody tr td div.dot {
  background: var(--primary, #f0813b);
  width: var(--scale-16, 16px);
  aspect-ratio: 1/1;
  margin-inline: auto;
  border-radius: 1000px;
}
section#plans div.plans__body table tbody tr td:nth-last-of-type(1) div.dot {
  background: var(--tertiary, #2f67ba);
}
section#plans div.plans__body table tbody tr td:nth-last-of-type(2) div.dot {
  background: var(--secondary, #298344);
}
section#plans div.plans__body div.body__other {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
  width: 100%;
}

section#plans div.plans__body div.body__other h3 {
  display: flex;
  padding: var(--scale-8, 8px);
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  border-radius: var(--scale-16, 16px) 0 0 var(--scale-16, 16px);
  background: var(--on-surface, #423527);
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  flex: 0 0 197px;
  text-align: center;
}

section#plans div.plans__body div.body__other div.other__price {
  display: flex;
  padding: var(--scale-8, 8px);
  justify-content: center;
  align-items: center;
  flex: 0 0 320px;
  align-self: stretch;
  border-top: 1px solid var(--border, #a9a9a9);
  border-right: 1px solid var(--border, #a9a9a9);
  border-bottom: 1px solid var(--border, #a9a9a9);
  background: var(--surface-variant, #f9eee2);
}

section#plans div.plans__body div.body__other div.other__price div.price {
}
section#plans
  div.plans__body
  div.body__other
  div.other__price
  div.price
  div.num {
}
section#plans
  div.plans__body
  div.body__other
  div.other__price
  div.price
  div.yen {
}
section#plans div.plans__body div.body__other p {
  color: var(--on-surface);
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  display: flex;
  padding: var(--scale-8, 8px) var(--scale-20, 20px);
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 0 var(--scale-16, 16px) var(--scale-16, 16px) 0;
  border-top: 1px solid var(--border, #a9a9a9);
  border-right: 1px solid var(--border, #a9a9a9);
  border-bottom: 1px solid var(--border, #a9a9a9);
  background: var(--surface, #fff);
}
section#plans div.plans__body div.body__other div.other__price big {
  color: var(--highlight, #de1d0c);
  font-size: var(--scale-40, 40px);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  section#plans div.plans__body table tbody tr td:nth-of-type(1) {
    border-left: 1px solid var(--border, #a9a9a9);
  }
  section#plans div.plans__body div.body__other {
    flex-direction: column;
  }
  section#plans div.plans__body div.body__other h3 {
    flex: 1 0 0;
    border-radius: var(--scale-16, 16px) var(--scale-16, 16px) 0 0;
  }
  section#plans div.plans__body div.body__other div.other__price {
    flex: 1 0 0;
    border-left: 1px solid var(--border, #a9a9a9);
  }
  section#plans div.plans__body div.body__other p {
    border-left: 1px solid var(--border, #a9a9a9);
    border-radius: 0 0 var(--scale-16, 16px) var(--scale-16, 16px);
  }
}
