@charset "UTF-8";

/* ============================================================
   パンくずリスト
============================================================ */
.pankuzu {
  margin-top: 0;
  padding: 10rem 0 0;
  position: relative;
}
@media all and (min-width: 897px) and (max-width: 1024px) {
  .pankuzu {
    padding-top: 8rem;
  }
}
@media all and (max-width: 896px) {
  .pankuzu {
    padding-top: 3rem;
  }
}
.pankuzu ul {
  max-width: 1100px;
  margin: 0 auto;
}
@media all and (min-width: 897px) and (max-width: 1024px) {
  .pankuzu ul {
    width: 100%;
    padding: 0 5rem;
  }
}
@media all and (max-width: 896px) {
  .pankuzu ul {
    width: 100%;
    padding: 0 3rem;
  }
}
.pankuzu ul li {
  font-size: 1.2rem;
  display: inline-block;
  letter-spacing: 2.5px;
}
@media all and (max-width: 896px) {
  .pankuzu ul li {
    font-size: 1rem;
  }
}
.pankuzu ul li:not(:last-of-type):after {
  content: "＞";
  margin-left: 0.5em;
}

/* ============================================================
   アンカーリンクボックス
============================================================ */
.comAnchorBox ul {
  margin: 0 auto;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.comAnchorBox ul li {
  width: 48%;
  margin-bottom: 1rem;
}
.comAnchorBox ul li a {
  border-bottom: 1px solid var(--blue);
  display: block;
  width: 100%;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  padding: 12px 20px 12px 0;
  position: relative;
  color: var(--dark-blue);
}
.comAnchorBox ul li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--dark-blue);
  border-right: 1px solid var(--dark-blue);
  transform: translateY(-50%) rotate(135deg);
}
@media all and (max-width: 896px) {
  .comAnchorBox ul {
    display: block;
    width: auto;
  }
  .comAnchorBox ul li {
    width: 100%;
    margin-bottom: 1rem;
  }
  .comAnchorBox ul li:last-child {
    margin-bottom: 0;
  }
  .comAnchorBox ul li a {
    font-size: 1.4rem;
    padding: 9px 20px 8px 0;
  }
}

/* ============================================================
   合わせて読みたいカード
============================================================ */
a.rink-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 4rem;
}
@media all and (max-width: 896px) {
  a.rink-card-link {
    margin-bottom: 3rem;
  }
}

.rink-card {
  position: relative;
  background-color: var(--blue-02);
  border: 1px solid var(--blue);
  border-radius: 10px;
  padding: 2.4rem 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  overflow: hidden;
}
.rink-card > span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--blue);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.7rem 1.6rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 10px 0 20px 0;
  box-sizing: border-box;
}
.rink-card > span img {
  width: 2.3rem;
  height: 2.3rem;
  object-fit: contain;
  vertical-align: middle;
}
@media all and (max-width: 896px) {
  .rink-card > span img {
    width: 2.5rem;
    height: 2.5rem;
  }
  .rink-card {
    padding: 0 0 2rem;
  }
  .rink-card > span {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem 2rem;
    margin-bottom: 0;
    border-radius: 10px 10px 0 0;
  }
}
.rink-card .side-img {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0 !important;
  padding-top: 0.5rem;
}
@media all and (max-width: 896px) {
  .rink-card .side-img {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 2rem 2rem 0;
  }
}
.rink-card .content {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  width: 70% !important;
}
.rink-card .content h3 {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  margin: 0 0 0.8rem !important;
  line-height: 1.4;
  color: var(--dark-blue);
  border-bottom: none !important;
  background: none !important;
}
@media all and (max-width: 896px) {
  .rink-card .content h3 {
    font-size: 1.6rem !important;
  }
}
.rink-card .content p {
  color: var(--base-color);
  font-size: 1.4rem;
  line-height: 1.7;
  margin: 0;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.rink-card .img {
  flex-shrink: 0;
  width: 30% !important;
  margin: 0;
}
@media all and (max-width: 896px) {
  .rink-card .img {
    width: 100% !important;
    order: -1;
    padding: 0 2rem;
  }
}
.rink-card .img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   メインコンテンツ共通
============================================================ */
main#sub {
  display: block;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 0;
}
main#sub a:hover {
  opacity: 0.7;
}

/* H1 */
main#sub h1 {
  text-align: center;
  margin-block: 20rem 3rem;
}
@media all and (max-width: 896px) {
  main#sub h1 {
    margin-block: 10rem 0;
  }
}
main#sub h1 .jp {
  display: block;
  font-family: var(--base-font);
  color: var(--dark-blue);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
main#sub h1 .en {
  display: block;
  line-height: 0.85;
}
@media all and (max-width: 896px) {
  main#sub h1 {
    line-height: 1.2;
  }
  main#sub h1 .en {
    font-size: 6rem;
    line-height: 0.9;
  }
  main#sub h1 .jp {
    font-size: 1.8rem;
  }
}

/* セクション */
main#sub section:not([class]) {
  display: block;
  margin: 0 auto;
  padding: 7rem 0 5rem;
  box-sizing: border-box;
  max-width: 1100px;
}
@media all and (min-width: 897px) and (max-width: 1024px) {
  main#sub section:not([class]) {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) {
    width: 100%;
    padding: 5rem 2.5rem 0;
    margin: 0;
  }
}
main#sub section:not([class]):not(:has(~ section:not([class]))) {
  padding-bottom: 15rem;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]):not(:has(~ section:not([class]))) {
    padding-bottom: 7.5rem;
  }
}
main#sub section:not([class]) > *:last-child {
  margin-bottom: 0 !important;
}
main#sub section:not([class]) > *:first-child {
  margin-top: 0 !important;
}
main#sub section:not([class]) * {
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
main#sub section:not([class]) h2 + *,
main#sub section:not([class]) h3 + *,
main#sub section:not([class]) h4 + *,
main#sub section:not([class]) h5 + * {
  margin-top: 0 !important;
}
main#sub section:not([class]) h2 + img,
main#sub section:not([class]) h3 + img {
  display: block;
  width: 100%;
  margin: 4rem auto;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) h2 + img,
  main#sub section:not([class]) h3 + img {
    margin: 1.8rem 0;
  }
}

/* H2 */
main#sub section:not([class]) h2:not([class]) {
  font-weight: 600;
  font-size: 2.8rem;
  font-family: var(--base-font);
  line-height: 1.6;
  background: var(--dark-blue);
  color: var(--white);
  text-align: left;
  margin: 0 0 4rem;
  padding: 0.5em 1em;
  border-radius: 15px;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) h2:not([class]) {
    font-size: 1.9rem;
    margin: 6rem 0 2.5rem;
    border-radius: 0.75rem;
  }
}

/* H3 */
main#sub section:not([class]) h3:not([class]) {
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--dark-blue);
  margin: 6rem 0 2.6rem;
  letter-spacing: 0.05em;
  padding-left: 0.5em;
  border-bottom: 1px #33B3FD solid;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) h3:not([class]) {
    font-size: 1.8rem;
    margin: 5rem 0 2rem;
  }
}

/* H4 */
main#sub section:not([class]) h4:not([class]) {
  font-size: 2.1rem;
  font-weight: 700;
  font-family: var(--base-font);
  color: var(--dark-blue);
  letter-spacing: 0.1em;
  margin: 5rem 0 3rem;
  padding: 0.5em 1em;
  background-color: var(--lingt-blue02);
  border-radius: 15px;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) h4:not([class]) {
    font-size: 1.7rem;
    margin: 4rem 0 2rem;
  }
}

/* H5 */
main#sub section:not([class]) h5:not([class]) {
  font-size: 1.9rem;
  font-weight: 700;
  font-family: var(--base-font);
  color: var(--base-color);
  display: flex;
  margin: 3rem 0 0.5em;
  line-height: 2;
  position: relative;
  padding-left: 2.2rem;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) h5:not([class]) {
    font-size: 1.6rem;
    margin: 3rem 0 1rem;
    line-height: 1.5;
  }
}
main#sub section:not([class]) h5:not([class]):before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 0.2rem;
  top: 1.2rem;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) h5:not([class]):before {
    top: 0.6rem;
  }
}

/* p / dd */
main#sub section:not([class]) p,
main#sub section:not([class]) dd {
  text-align: justify;
  margin-bottom: 1em;
  line-height: 2;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) p,
  main#sub section:not([class]) dd {
    font-size: 1.4rem;
  }
}
main#sub section:not([class]) p strong,
main#sub section:not([class]) dd strong {
  font-weight: 700;
  color: var(--dark-blue);
}
main#sub section:not([class]) p > a,
main#sub section:not([class]) dd > a {
  border-bottom: 1px solid;
}

/* img */
main#sub section:not([class]) img {
  border-radius: 10px;
}
main#sub section:not([class]) img + p,
main#sub section:not([class]) a + p {
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) img + p,
  main#sub section:not([class]) a + p {
    margin-top: 3vw;
  }
}

/* comLink */
.comLink {
  margin: 3rem 0;
}
.comLink a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--dark-blue);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 2px;
}
.comLink a:after {
  content: "›";
  font-size: 1.8rem;
  line-height: 1;
}

/* side-img */
main#sub section:not([class]) .side-img {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 50px 0;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) .side-img {
    margin: 8vw 0;
  }
}
main#sub section:not([class]) .side-img .content {
  width: 55%;
  margin: 0;
  padding: 0;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) .side-img .content {
    width: 100% !important;
    order: 2;
  }
}
main#sub section:not([class]) .side-img .content > *:first-child {
  margin-top: 0;
}
main#sub section:not([class]) .side-img .content > *:last-child {
  margin-bottom: 0;
}
main#sub section:not([class]) .side-img .img {
  width: 40%;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) .side-img .img {
    width: 100%;
    order: 1;
    margin-bottom: 5vw;
  }
}
main#sub section:not([class]) .side-img .half {
  width: calc(50% - 20px);
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) .side-img .half {
    width: 100%;
    margin-bottom: 10vw;
  }
  main#sub section:not([class]) .side-img .half:last-child {
    margin-bottom: 0;
  }
}
main#sub section:not([class]) .side-img .half > *:first-child {
  margin-top: 0 !important;
}
main#sub section:not([class]) .side-img .half > *:last-child {
  margin-bottom: 0 !important;
}

/* ul */
main#sub section:not([class]) ul:not([class]) {
  margin: 4rem 0;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) ul:not([class]) {
    margin: 3rem 0;
  }
}
main#sub section:not([class]) ul:not([class]) li {
  font-size: 1.6rem;
  padding-left: 3rem;
  position: relative;
  line-height: 2;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) ul:not([class]) li {
    font-size: 1.3rem;
  }
}
main#sub section:not([class]) ul:not([class]) li:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 0.2rem;
  top: 0.9rem;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) ul:not([class]) li:before {
    top: 0.6rem;
  }
}
main#sub section:not([class]) ul:not([class]) li + li {
  margin-top: 2rem;
}

main#sub section:not([class]) ul.inline-list li {
  background: var(--blue-02);
  padding: 0.2em 0.5em;
  margin-right: 0.5em;
  margin-bottom: 1em;
  color: var(--base-color);
  display: inline-block;
  border-radius: 4px;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) ul.inline-list li {
    font-size: 1.3rem;
    margin-bottom: 0.5em;
  }
}

main#sub section:not([class]) ul.dot-list li {
  margin-block: 0.5em;
  position: relative;
  padding-left: 1em;
  font-size: 1.5rem;
}
main#sub section:not([class]) ul.dot-list li:before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--base-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 14px;
}

/* ol */
main#sub section:not([class]) ol:not([class]) {
  margin: 4rem 0;
  counter-reset: number;
}
main#sub section:not([class]) ol:not([class]) li {
  font-size: 1.6rem;
  padding-left: 6.4rem;
  position: relative;
  min-height: 5rem;
  display: grid;
  align-items: center;
  line-height: 3rem;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) ol:not([class]) li {
    font-size: 1.3rem;
    line-height: 2.6rem;
    padding-left: 4rem;
    margin-bottom: 2.5rem;
  }
}
main#sub section:not([class]) ol:not([class]) li:before {
  font-weight: 500;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0;
  counter-increment: number;
  content: counter(number);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  box-sizing: border-box;
  background: var(--dark-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) ol:not([class]) li:before {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}
main#sub section:not([class]) ol:not([class]) li + li {
  margin-top: 5rem;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) ol:not([class]) li + li {
    margin-top: 2.35rem;
  }
}

/* ol.flow */
main#sub section:not([class]) ol.flow {
  counter-reset: flow;
  margin: 5rem 0;
  list-style: none;
  padding-left: 0;
}
main#sub section:not([class]) ol.flow li {
  position: relative;
  line-height: 2;
  text-align: justify;
  font-size: 1.6rem;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) ol.flow li {
    font-size: 1.3rem;
  }
}
main#sub section:not([class]) ol.flow li + li {
  margin-top: 4rem;
}
main#sub section:not([class]) ol.flow li strong:first-of-type {
  position: relative;
  padding-left: 4rem;
  display: block;
  margin-bottom: 1.2rem;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--base-color);
}
main#sub section:not([class]) ol.flow li strong:first-of-type:before {
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--white);
  counter-increment: flow;
  content: counter(flow);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  box-sizing: border-box;
  background: var(--dark-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
  position: absolute;
  left: 0;
  top: 4px;
}
main#sub section:not([class]) ol.flow li img {
  width: 35rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) ol.flow li img {
    width: 100%;
    position: static;
    margin-top: 1.5rem;
    display: block;
  }
}
main#sub section:not([class]) ol.flow li.has-img {
  padding-right: 40rem;
  margin-bottom: 10rem;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) ol.flow li.has-img {
    padding: 0;
    margin-bottom: 6rem;
  }
}

/* ol.card-list */
main#sub section:not([class]) ol.card-list {
  counter-reset: card;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 4rem 0;
}
main#sub section:not([class]) ol.card-list li {
  background: var(--grey);
  border-radius: 1.5rem;
  padding: 2rem 2rem 2.6rem;
  width: 32rem;
  line-height: 2;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) ol.card-list li {
    width: 100%;
    font-size: 1.3rem;
  }
}
main#sub section:not([class]) ol.card-list li strong:first-of-type {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1em;
  padding-bottom: 0.6em;
  position: relative;
  text-align: center;
}
main#sub section:not([class]) ol.card-list li strong:first-of-type::before {
  color: var(--blue);
  content: counter(card, decimal-leading-zero);
  counter-increment: card;
  display: block;
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.5em;
  text-align: center;
}
main#sub section:not([class]) ol.card-list li strong:first-of-type::after {
  background: var(--blue);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

/* table */
main#sub section:not([class]) table:not(.no-style) {
  width: 100%;
  margin: 4rem 0;
  border-collapse: separate;
  border-spacing: 0;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
main#sub section:not([class]) table:not(.no-style)::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--blue);
  pointer-events: none;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) table:not(.no-style) {
    margin: 3rem 0;
  }
}
main#sub section:not([class]) table:not(.no-style) tr:last-child th,
main#sub section:not([class]) table:not(.no-style) tr:last-child td {
  border-bottom: none;
}
main#sub section:not([class]) table:not(.no-style) th,
main#sub section:not([class]) table:not(.no-style) td {
  font-size: 1.6rem;
  line-height: 1.7;
  padding: 1em;
  vertical-align: middle;
  border-bottom: 1px solid var(--light-blue01);
}
main#sub section:not([class]) table:not(.no-style) th {
  background: var(--blue-02);
  color: var(--dark-blue);
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) table:not(.no-style) th {
    font-size: 1.3rem;
    width: 30%;
  }
  main#sub section:not([class]) table:not(.no-style) td {
    font-size: 1.3rem;
    width: 70%;
  }
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) table:not(.no-style).sp-break {
    display: block;
  }
  main#sub section:not([class]) table:not(.no-style).sp-break tbody,
  main#sub section:not([class]) table:not(.no-style).sp-break tr,
  main#sub section:not([class]) table:not(.no-style).sp-break th,
  main#sub section:not([class]) table:not(.no-style).sp-break td {
    display: block;
    width: 100%;
  }
  main#sub section:not([class]) table:not(.no-style).sp-break th {
    text-align: center;
    padding: 0.5em 1em;
  }
  main#sub section:not([class]) table:not(.no-style).sp-break td {
    border-bottom: none;
  }
}

@media all and (max-width: 896px) {
  main#sub section:not([class]) table:not(.no-style).sp-break td {
    padding-top: 0.8em;
    padding-bottom: 1.2em;
  }
}

/* table内リスト・診療時間 */
main#sub section:not([class]) table:not(.no-style) td ul.table-list {
  margin: 0;
}
main#sub section:not([class]) table:not(.no-style) td ul.table-list li {
  padding-left: 1.6rem;
  line-height: 1.7;
}
main#sub section:not([class]) table:not(.no-style) td ul.table-list li:before {
  width: 0.6rem;
  height: 0.6rem;
  top: 0.65em;
  left: 0;
}
main#sub section:not([class]) table:not(.no-style) td ul.table-list li + li {
  margin-top: 0.6em;
}
main#sub section:not([class]) table:not(.no-style) td > p {
  margin: 0;
  line-height: 1.7;
}
main#sub section:not([class]) table:not(.no-style) td > p + p {
  margin-top: 0.5em;
}
main#sub section:not([class]) table:not(.no-style) td .table-note {
  margin: 0.8em 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) table:not(.no-style) td .table-note {
    font-size: 1.2rem;
  }
}

/* dl */
main#sub section:not([class]) dl {
  margin-bottom: 5rem;
}
main#sub section:not([class]) dl:not([class]) {
  width: 100%;
  margin: 5rem auto 4rem;
  padding: 40px 50px;
  background: var(--grey);
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) dl:not([class]) {
    margin: 4rem auto 3rem;
    padding: 8vw 6vw;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
main#sub section:not([class]) dl dt {
  font-size: 2rem;
  color: var(--dark-blue);
  font-weight: 500;
  padding-bottom: 2px;
  margin-bottom: 15px;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) dl dt {
    font-size: 1.75rem;
    margin-bottom: 3vw;
  }
}
main#sub section:not([class]) dl dt:nth-child(n+2) {
  margin-top: 50px;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) dl dt:nth-child(n+2) {
    margin-top: 30px;
  }
}
main#sub section:not([class]) dl dd > *:last-child {
  margin-bottom: 0 !important;
}
main#sub section:not([class]) dl hr {
  display: block;
  margin: 30px 0;
  border-top: 1px solid var(--light-blue01);
}

/* dl.question */
main#sub section:not([class]) dl.question dt {
  position: relative;
  padding-left: 1.7em;
  text-indent: -1.7em;
  font-weight: 500;
  margin-top: 2em;
}
main#sub section:not([class]) dl.question dt:first-child {
  margin-top: 0;
}
main#sub section:not([class]) dl.question dt:before {
  content: "Q.";
  color: var(--dark-blue);
  font-weight: bold;
  margin-right: 0.5em;
}
main#sub section:not([class]) dl.question dd {
  margin-bottom: 1em;
  line-height: 2;
}

/* hosoku */
main#sub section:not([class]) .hosoku {
  width: 100%;
  margin: 5rem auto 4rem;
  padding: 40px 50px;
  background: var(--grey);
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) .hosoku {
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin: 4rem auto 3rem;
    padding: 8vw 6vw;
  }
}
main#sub section:not([class]) .hosoku > *:first-child {
  margin-top: 0 !important;
}
main#sub section:not([class]) .hosoku > *:last-child {
  margin-bottom: 0 !important;
}
main#sub section:not([class]) .hosoku + .hosoku {
  margin-top: 0;
}

/* article-author */
main#sub .article-author {
  border: solid 1px var(--blue);
  padding: 6rem;
  border-radius: 20px;
  margin-top: 8rem;
}
@media all and (max-width: 896px) {
  main#sub .article-author {
    padding: 4rem 2.5rem;
    border-radius: 10px;
    margin-top: 5rem;
  }
}
main#sub .article-author .inner {
  align-items: center;
  justify-content: space-between;
}
@media all and (max-width: 896px) {
  main#sub .article-author .inner {
    display: block;
  }
}
main#sub .article-author .txtBox {
  width: 65%;
}
@media all and (max-width: 896px) {
  main#sub .article-author .txtBox {
    width: 100%;
  }
}
main#sub .article-author .txtBox .name {
  font-family: var(--base-font);
  font-size: 2rem;
  border-bottom: 1px solid var(--blue);
  margin-bottom: 2.5rem;
  font-weight: 500;
  color: var(--dark-blue);
}
@media all and (max-width: 896px) {
  main#sub .article-author .txtBox .name {
    font-size: 1.5rem;
  }
}
main#sub .article-author .txtBox .name .large {
  font-size: 1.45em;
  margin-left: 0.5em;
}
@media all and (max-width: 896px) {
  main#sub .article-author .txtBox .name .large {
    display: block;
    margin-top: 0.5em;
    margin-left: 0;
  }
}
main#sub .article-author .txtBox p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--base-color);
}
@media all and (max-width: 896px) {
  main#sub .article-author .txtBox p {
    font-size: 1.4rem;
  }
}
main#sub .article-author .phoBox {
  width: 30%;
}
@media all and (max-width: 896px) {
  main#sub .article-author .phoBox {
    width: 100%;
    margin-top: 3rem;
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
}
main#sub .article-author .phoBox img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* map */
main#sub section:not([class]) .mapBox .map {
  margin: 4rem 0 2rem;
  border-radius: 0.8rem;
  overflow: hidden;
  aspect-ratio: 16/9;
}
@media all and (max-width: 896px) {
  main#sub section:not([class]) .mapBox .map {
    margin: 3rem 0 2rem;
    aspect-ratio: 335/180;
  }
}
main#sub section:not([class]) .mapBox .map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* treatment index */
main#sub section.treatment {
  padding-top: 10rem;
  padding-bottom: 6.5rem;
  background-color: var(--lingt-blue02);
}
main#sub section.treatment .content .pankuzu {
  margin: 0;
  padding: 0 0 4rem;
}
main#sub section.treatment .content .pankuzu ul {
  max-width: none;
  padding: 0;
}
main#sub section.treatment .photo {
  margin-bottom: 0;
}
main#sub section.treatment .photo img {
  width: 100%;
}
main#sub section.treatment h1.headLine01 {
  margin-block: 0 6rem;
}
main#sub section.treatment h1.headLine01 .jp {
  font-family: var(--base-font);
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.4rem;
  line-height: 1.5;
}
main#sub section.treatment h1.headLine01 .en {
  color: var(--light-blue01);
}
main#sub section.treatment .comTreatUl {
  margin-bottom: 8rem;
}
main#sub section.treatment .treatCardUl {
  gap: 3rem;
  margin-bottom: 8rem;
}
main#sub section.treatment .treatCardUl li {
  width: calc(50% - 1.5rem);
}
main#sub section.treatment .treat-card {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background-color: var(--white);
  border: 1px solid var(--blue);
  border-radius: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  overflow: hidden;
  transition: opacity 0.3s;
}
main#sub section.treatment .treat-card:hover {
  opacity: 0.8;
}
main#sub section.treatment .treat-card .side-img {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin: 0;
  height: 100%;
}
main#sub section.treatment .treat-card .content {
  flex: 1;
  width: 100% !important;
  padding: 2.4rem 2.4rem 2rem;
  box-sizing: border-box;
}
main#sub section.treatment .treat-card .content h3 {
  margin-bottom: 1.2rem;
  color: var(--dark-blue);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
main#sub section.treatment .treat-card .content p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
main#sub section.treatment .treat-card .img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
main#sub section.treatment .treat-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
main#sub section.treatment .feeBox {
  margin-top: 11.8rem;
  position: relative;
  z-index: 1;
}
main#sub section.treatment .feeBox .textBox {
  max-width: 110rem;
  padding: 4rem 18rem 3.9rem 7.2rem;
  background-color: var(--blue);
  position: relative;
  z-index: 1;
  border-radius: 0.8rem;
}
main#sub section.treatment .feeBox .textBox::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: multiply;
  pointer-events: none;
  content: "";
  background: url(../img/index/treatment_bg01.webp) no-repeat right bottom/cover;
}
main#sub section.treatment .feeBox .textBox p {
  margin-bottom: 3.5rem;
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.22rem;
  line-height: 1.75;
  margin-bottom: 100px;
}
main#sub section.treatment .feeBox .textBox .comBtn01 {
  margin: 0;
}
main#sub section.treatment .feeBox .photoBox {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: -15%;
  width: 42rem;
}
main#sub section.treatment .feeBox .photoBox img {
  width: 100%;
  display: block;
}
@media all and (max-width: 896px) {
  main#sub section.treatment {
    margin-bottom: -6rem;
    padding-top: 3rem;
    padding-bottom: 0;
    overflow: hidden;
  }
  main#sub section.treatment .photo {
    margin-bottom: 0;
    aspect-ratio: 375/140;
  }
  main#sub section.treatment .photo img {
    height: 100%;
    object-fit: cover;
  }
  main#sub section.treatment h1.headLine01 .jp {
    font-size: 2.4rem;
    letter-spacing: 0.24rem;
  }
  main#sub section.treatment .headLine01,
  main#sub section.treatment h1.headLine01 {
    margin-bottom: 4.8rem;
  }
  main#sub section.treatment .comTreatUl {
    margin-bottom: 4rem;
  }
  main#sub section.treatment .treatCardUl {
    gap: 2rem;
    margin-bottom: 4rem;
  }
  main#sub section.treatment .treatCardUl li {
    width: 100%;
  }
  main#sub section.treatment .treat-card .content {
    padding: 2rem 2rem 1.6rem;
  }
  main#sub section.treatment .treat-card .content h3 {
    font-size: 1.8rem;
  }
  main#sub section.treatment .treat-card .content p {
    font-size: 1.4rem;
  }
  main#sub section.treatment .feeBox {
    display: block;
    position: relative;
    z-index: 2;
    margin: 5.3rem 0 22rem;
  }
  main#sub section.treatment .feeBox .textBox {
    max-width: 100%;
    padding: 3.6rem 2rem 12rem;
  }
  main#sub section.treatment .feeBox .textBox::after {
    background-image: url(../img/index/treatment_bg01_sp.webp);
  }
  main#sub section.treatment .feeBox .textBox p {
    margin-bottom: 3rem;
    font-size: 1.6rem;
    text-align: justify;
    letter-spacing: 0.128rem;
    line-height: 1.4;
  }
  main#sub section.treatment .feeBox .textBox .comBtn01 a {
    padding-left: 0;
    font-size: 2rem;
  }
  main#sub section.treatment .feeBox .photoBox {
    position: absolute;
    top: auto;
    bottom: -11.4rem;
    transform: translateY(0);
    right: -15%;
    width: 18rem;
    margin: 0;
  }
}

/* 症例 */
.case-detail > h2:first-child {
  margin-top: 0;
}

.case-ba {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin: 4rem 0;
}

.case-ba__item {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.case-ba__item h3 {
  margin: 0 0 1.2rem;
}

.case-ba__item img {
  display: block;
  width: 100%;
  height: auto;
}

.case-detail__table {
  width: 100%;
}

.case-detail__content h3 {
  margin-top: 4rem;
}

.case-card-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  margin: 4rem 0 0;
  padding: 0;
  list-style: none;
}

.case-card {
  margin: 0;
}

.case-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.case-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-blue01);
}

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

.case-card__noimage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--dark-blue);
  font-family: var(--en-font);
}

.case-card__body {
  padding-top: 1.6rem;
}

.case-card__title {
  margin: 0 0 0.8rem;
  font-size: 2rem;
  line-height: 1.5;
}

.case-card__text {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--text-color);
}

@media all and (max-width: 896px) {
  .case-ba {
    flex-direction: column;
    gap: 5vw;
    margin: 8vw 0;
  }

  .case-ba__item h3 {
    margin-bottom: 0.8rem;
  }

  .case-card-list {
    grid-template-columns: 1fr;
    gap: 8vw;
    margin-top: 8vw;
  }

  .case-card__title {
    font-size: 1.6rem;
  }

  .case-card__text {
    font-size: 1.3rem;
  }
}
