@charset "UTF-8";

/* ========================================
   Common front-page utilities
   ======================================== */
.front-page .text-orange { color: var(--color-orange); font-weight: 500; }
.front-page .text-green  { color: var(--color-green);  font-weight: 500; }

/* Section title with dotted underline (handwriting-style) */
.sec-title-line {
  position: relative;
  font-family: var(--font-kosugi);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  margin: 0 0 32px;
  padding-bottom: 12px;
  line-height: 1.2;
}

.sec-title-line::after {
  content: '';
  display: block;
  width: 80%;
  max-width: 600px;
  height: 6px;
  margin: 12px auto 0;
  background-image: radial-gradient(circle, var(--color-text) 1px, transparent 1.5px);
  background-size: 8px 6px;
  background-repeat: repeat-x;
  background-position: center;
}

.sec-title-line .sec-title-accent { color: var(--color-orange); }

@media screen and (min-width: 768px) {
  .sec-title-line { font-size: 36px; }
}
@media screen and (min-width: 992px) {
  .sec-title-line { font-size: 42px; margin-bottom: 48px; }
}

/* Anchor button with circle arrow on the left */
.btn-anchor {
  display: inline-flex;
  align-items: center;
  gap: 21px;
  padding: 7px 36px 7px 11px;
  border-radius: 999px;
  font-family: var(--font-kosugi);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.btn-anchor:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-anchor .btn-anchor-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-white);
  position: relative;
  flex-shrink: 0;
}
.btn-anchor .btn-anchor-arrow::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../images/pc/btn-anchor-arrow-green.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.btn-anchor.btn-anchor-blue .btn-anchor-arrow::before {
  background-image: url("../images/btn-anchor-arrow-blue.webp");
}

.btn-anchor-green  { background-color: var(--color-green); }
.btn-anchor-green  .btn-anchor-arrow { color: var(--color-green); }
.btn-anchor-orange { background-color: var(--color-orange); }
.btn-anchor-orange .btn-anchor-arrow { color: var(--color-orange); }
.btn-anchor-orange .btn-anchor-arrow::before {
  background-image: url(../images/btn-anchor-arrow-orange.webp);
}
.btn-anchor-blue   { background-color: var(--color-blue); }
.btn-anchor-blue   .btn-anchor-arrow { color: var(--color-blue); }
.btn-anchor-yellow { background-color: var(--color-yellow); color: var(--color-white); }
.btn-anchor-yellow .btn-anchor-arrow { color: var(--color-yellow); }

.btn-anchor-yellow .btn-anchor-arrow::before {
  background-image: url(../images/btn-anchor-arrow-yellow.png);
}

/* ========================================
   FV Section
   ======================================== */
.fv-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-bg-beige);
  isolation: isolate;
}


.fv-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  /*max-width: 1440px;*/
  margin: 0 auto;
}

.fv-section::after {
  content: '';
  position: absolute;
  right: auto;
  bottom: -1px;
  left: 0;
  z-index: -1;
  /*height: clamp(96px, 15vw, 215px);*/
  background-color: #fff;
  background-image: url('../images/wave_up_bg_beige.png');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  width: 100%;
  pointer-events: none;
  height: calc(100% / 1908 * 625);
}

.fv-slider {
  position: relative;
}

.fv-image,
.fv-image img {
  display: block;
}

.fv-image img {
  width: 90%;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
}

.fv-slide {
  margin-top: 15px;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.fv-slide + .fv-slide {
  position: absolute;
  inset: 0;
}

.fv-slide.is-active {
  opacity: 1;
}

.fv-copy {
  position: absolute;
  top: 18%;
  left: 17.5%;
  right: auto;
  max-width: 60%;
  z-index: 2;
}

.fv-catch {
  font-family: var(--font-kosugi);
  margin: 0 0 20px;
  line-height: 1.3;
  color: var(--color-text);
}

.fv-catch-handwriting {
  display: inline-block;
  font-family: var(--font-handwriting);
  font-size: clamp(36px, 6vw, 88px);
  background-color: rgb(255 255 255 / 80%);
  padding: 13px 0px 0px;
  line-height: 1;
  border-radius: 2px;
  color: var(--color-orange);
  font-weight: 500;
  box-shadow: 0 0 5px 5px rgb(255 255 255 / 80%);
  letter-spacing: -3px;
  margin-right: 15px;
}

.fv-catch-handwriting .text-dots {
  display: inline-flex;
  align-items: baseline;
  gap: 0.04em;
  letter-spacing: -10px;
}

.fv-catch-handwriting .text-dots span {
  position: relative;
  display: inline-block;
}

.fv-catch-handwriting .text-dots span::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: currentColor;
  /*transform: translateX(-50%);*/
}

.fv-catch-handwriting .text-small-no {
  display: inline-block;
  margin: 0 0.04em 0 0.08em;
  font-size: 0.58em;
  line-height: 1;
  vertical-align: 0.06em;
  letter-spacing: 0;
}

.fv-catch-tail {
  font-size: clamp(20px, 2.4vw, 36px);
  font-family: var(--font-kosugi);
}

.fv-catch-line2 {
  display: block;
  font-family: var(--font-kosugi);
  font-size: clamp(28px, 4vw, 60px);
  text-align: right;
  margin-top: 18px;
  font-weight: normal;
}

.fv-sub {
  font-family: var(--font-kosugi);
  font-size: 31px;
  color: var(--color-text);
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.fv-sub div {
  border-radius: 1px;
  line-height: 1;
  padding: 1px;
  background-color: rgb(255 255 255 / 80%);
  box-shadow: 0 0 5px 5px rgb(255 255 255 / 80%);
}

.fv-deco-birds {
  position: absolute;
  top: 0%;
  left: 11%;
  width: 145px;
  pointer-events: none;
  transform: scaleX(-1);
}

.fv-deco-bird-bottom {
  position: absolute;
  right: 7.3%;
  top: -14.4%;
  z-index: 3;
  width: clamp(45px, 6.25vw, 90px);
  transform: rotate(-14deg);
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .fv-copy {
    top: 21%;
    left: 14.5%;
    max-width: 90%;
  }
  .fv-deco-birds {
    width: 54px;
    top: 1.5%;
    right: 7%;
    left: auto;
    bottom: auto;
    z-index: 3;
    transform: none;
  }
  .fv-section::after {
    height: 50px;
    background-image: url("../images/wave_up_bg2.png");
    background-size: auto 118px;
    background-position: left top;
  }
  .fv-deco-bird-bottom {
    right: 7%;
    bottom: 4.5%;
    width: 42px;
  }

    .fv-catch-handwriting .text-dots span::before {
      top: -5px;
      width: 4px;
      height: 4px;
    }
}

/* ========================================
   News Section
   ======================================== */
.news-section {
  position: relative;
  background-color: #fff;
  padding: 60px 0;
}

.news-container {
  position: relative;
}

.news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.news-title {
  position: relative;
  font-family: var(--font-kosugi);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
  padding-bottom: 0px;
  padding-top: 18px;
  border-bottom: 3px dashed var(--color-text);
}

.news-more {
  font-family: var(--font-kosugi);
  font-size: 18px;
  color: var(--color-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

a.news-more:hover {
  color: var(--color-text) !important;
}

.news-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.news-more-arrow {
  color: var(--color-text);
  font-size: 14px;
}

.news-list {
  width: 84%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-more-box {
  text-align: right;
  margin-top: 30px;
  padding-right: 36px;
}

.news-item + .news-item { border-top: none; }
.news-link {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px 36px;
  border-bottom: 1px solid rgb(158 193 28 / 60%);
  text-decoration: none;
  color: var(--color-text);
  font-size: 14px;
  transition: opacity 0.3s ease;
}
.news-link:hover { opacity: 0.7; }

.news-date {
  font-weight: 700;
  color: var(--color-green);
  font-size: 14px;
  white-space: nowrap;
}

.news-cat {
  font-family: var(--font-kosugi);
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 500;
}
.news-cat.is-cat-1 { background-color: #F5EFC1; color: var(--color-text); }
.news-cat.is-cat-2 { background-color: rgb(132 206 192 / 25%); color: var(--color-text); }

.news-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  margin-left: 40px;
}
.news-arrow { color: var(--color-green); font-size: 12px; }

@media screen and (max-width: 767px) {
  .news-link {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 6px;
    padding: 16px 4px;
  }
  .news-date { grid-column: 1; grid-row: 1; }
  .news-cat  { grid-column: 2; grid-row: 1; }
  .news-arrow { grid-column: 3; grid-row: 1 / span 2; align-self: center; }
  .news-text { grid-column: 1 / span 2; grid-row: 2; }
}

/* ========================================
   オンライン診療の現状
   ======================================== */
.online-status-section {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.online-status-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.online-status-text p { margin: 0 0 16px; line-height: 1.8; }

.online-status-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  line-height: 2;
}
.online-status-list li::before { content: '・'; }

.online-status-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

.online-status-extra p { margin: 0 0 16px; line-height: 1.8; }
.online-status-extra .text-orange { color: var(--color-orange); font-weight: 500; }

.online-status-wave {
  display: block;
  width: 80%;
  max-width: 800px;
  margin: -100px auto 0;
}

@media screen and (min-width: 768px) {
  .online-status-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
  .online-status-text { flex: 1; }
  .online-status-image { flex: 1; }
}

.feature-card-title { font-size: 20px; }

/* ========================================
   オンライン診療で解決できる地域医療の課題
   ======================================== */

#online-issues {
  padding-top: 0;
}

.online-issues-section {
  background-color: #fff;
}

.issues-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.issue-card {
  display: flex;
  flex-direction: column;
  gap: 49px;
  align-items: center;
}

.issue-image {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 330px;
}
.issue-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
  position: relative;
  z-index: 2;
}
.issue-deco {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  z-index: 1;
}
.issue-deco-green { background-color: rgb(158 193 28 / 25%); bottom: -10px; right: -10px; }
.issue-deco-pink  { background-color: rgb(255 171 169 / 35%); bottom: -10px; left: -10px; }
.issue-deco-blue  { background-color: rgb(132 206 192 / 30%); top: -10px; right: -10px; }

.issue-text {
  position: relative;
  z-index: 2;
  flex: 1;
}

.issue-title {
  font-family: var(--font-kosugi);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}
.issue-title-green { color: var(--color-green); }
.issue-title-pink  { color: var(--color-pink); }
.issue-title-blue  { color: var(--color-blue); }

.issue-text p { line-height: 1.9; margin: 0; }

.issue-image::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 72%;
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.issue-card:nth-child(1) .issue-image::before {
  background-image: url("../images/pc/deco-ellipse_green.webp");
}

.issue-card:nth-child(2) .issue-image::before {
  background-image: url("../images/pc/deco-ellipse_pink.webp");
}

.issue-card:nth-child(3) .issue-image::before {
  background-image: url("../images/pc/deco-ellipse_blue2.webp");
}

@media screen and (min-width: 768px) {
  .faq-section {
    padding-top: 200px;
  }

  .issue-card {
    flex-direction: row;
  }
  .issue-card.is-image-right { flex-direction: row-reverse; }

  .issue-card:nth-child(1) .issue-image::before {
    right: -26%;
    bottom: -28%;
  }

  .issue-card:nth-child(2) .issue-image::before {
    left: -26%;
    bottom: -30%;
  }

  .issue-card:nth-child(3) .issue-image::before {
    right: -28%;
    bottom: -28%;
  }
}

/* ========================================
   みんなのふるさと診療所とは
   ======================================== */
.about-section {
  background-color: var(--color-bg-beige);
  padding: 0;
}

.about-sky {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding: 120px 0 180px;
  color: var(--color-text);
  position: relative;
}

.about-title {
  color: var(--color-white);
  margin-bottom: 28px;
}
.about-title.sec-title-line .sec-title-accent { color: var(--color-white); }
.about-title.sec-title-line::after {
  background-image: radial-gradient(circle, rgb(255 255 255 / 80%) 1px, transparent 1.5px);
}

.sec-title-line.about-title {
  margin: 0 auto;
  padding-bottom: 50px !important;
}

.about-lead {
  text-align: center;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 40px;
  font-family: var(--font-kosugi);
}

.about-quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: none;
  margin: 60px 0 60px;
  padding: 0;
}

.about-quote {
  background-color: var(--color-white);
  border-radius: 18px;
  padding: 30px 16px 30px;
  box-shadow: 5px 5px 0px rgb(228 228 228 / 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.about-quote-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.about-quote-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-quote-text {
  font-family: var(--font-kosugi);
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text);
  position: relative;
  padding-top: 8px;
}
.about-quote-text::before {
  content: '';
  display: block;
  width: 60%;
  height: 0;
  margin: 0 auto 15px;
  border-top: 3px dashed rgb(80 68 52 / 60%);
}

.about-vision {
  text-align: center;
  font-size: 15px;
  line-height: 2;
}
.about-vision p { margin: 0 0 8px; }
.about-vision-quote {
  font-family: var(--font-kosugi);
  font-size: clamp(20px, 2.6vw, 30px);
  margin: 16px 0 !important;
  font-weight: 500;
}

.about-detail {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: var(--color-white);
}
.about-detail-text { flex: 1; }
.about-detail-text p { margin: 0 0 14px; line-height: 1.9; }
.about-detail-highlight {
  font-family: var(--font-kosugi);
  font-size: 20px;
  margin: 16px 0 24px !important;
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.deco-back-box {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.deco-back-box::before {
  content: '';
  position: absolute;
  inset: -12px -100px;
  background-image: url(../images/pc/deco-ellips_beige.webp);
  background-repeat: no-repeat;
  background-position: left 20px top 0px;
  background-size: contain;
  z-index: -1;
}

.about-detail-image { flex: 1; max-width: 480px; }
.about-detail-image img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .about-quotes { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .about-detail { flex-direction: row; gap: 64px; align-items: center; }
}

/* ========================================
   当診療所のオンライン診療の特徴
   ======================================== */
.features-section {
  background-color: var(--color-bg-beige);
  position: relative;
  padding-bottom: 0px;
}

.sec-title-line.feature-title {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 90px;
}

.features-birds {
  position: absolute;
  width: 70px;
  top: 24px;
  left: 24px;
  pointer-events: none;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.feature-card {
  background-color: var(--color-white);
  border-radius: 29px;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px dashed #c1c1c1;
}

.feature-card-image {
  width: 100%;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}
.feature-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.feature-card-title {
  font-family: var(--font-kosugi);
  font-size: 20px;
  font-weight: 500;
  margin: 20px 20px 0;
  line-height: 1.5;
  min-height: 3em;
}
.feature-title-green  { color: var(--color-green); }
.feature-title-pink   { color: var(--color-pink); }
.feature-title-blue   { color: var(--color-blue); }
.feature-title-orange { color: var(--color-orange); }

.feature-card-desc {
  font-size: 13px;
  line-height: 1.7;
  margin: 16px 20px 24px;
}

.features-note {
  font-size: 14px;
  text-align: left;
  color: var(--color-text);
  margin-top: 46px;
  line-height: 1.6;
  margin-left: 5px;
}

@media screen and (min-width: 768px) {
  .features-list { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .feature-card-desc { font-size: 15px; }
}

/* ========================================
   オンライン診療の流れ
   ======================================== */
.flow-section {
  background-color: #EFF5DB;
  position: relative;
}

.sec-title-line.flow-title {
  margin-left: auto;
  margin-right: auto;
}

.flow-lead {
  text-align: center;
  font-size: 18px;
  line-height: 1.9;
  margin: -16px 0 32px;
}

.flow-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.flow-step {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
  width: 100%;
  max-width: 360px;
}

.flow-step-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
}
.flow-step-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.flow-step-num {
  font-family: var(--font-kosugi);
  font-size: 18px;
  color: var(--color-orange);
  font-weight: 700;
}

.flow-step-text {
  font-family: var(--font-kosugi);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.flow-step + .flow-step::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border-right: 4px solid var(--color-orange);
  border-bottom: 4px solid var(--color-orange);
  transform: rotate(90deg);
  position: absolute;
  top: -28px;
  left: 70px;
}

.flow-button { text-align: center; }

.flow-button .btn-anchor {
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .flow-list {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }
  .flow-step {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: none;
    width: calc(25% - 32px);
  }
  .flow-step-image { width: 100%; height: auto; aspect-ratio: 1 / 1; margin: 0 auto; }
  .flow-step + .flow-step::before {
    top: 0;
    margin-top: calc(50% - 12px);
    left: -28px;
    border: 0;
    background-image: url("../images/sp/deco-arrow.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: rotate(-90deg);
  }
}

/* ========================================
   SP design adjustments
   ======================================== */
@media screen and (max-width: 767px) {
  :root {
    --container-padding: 24px;
  }

  .front-page {
    overflow: hidden;
    font-size: 13px;
    line-height: 1.95;
  }

  .front-page .section {
    padding-top: 88px;
    padding-bottom: 58px;
  }

  .front-page .container {
    max-width: 390px;
  }

  .front-page .sec-title-line {
    display: table;
    width: auto;
    margin: 0 auto 28px;
    padding-bottom: 10px;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0;
  }

  .front-page .sec-title-line::after {
    width: 100%;
    height: 0;
    margin-top: 8px;
    background-image: none;
    border-bottom: 2px dashed currentColor;
  }

  .btn-anchor {
    gap: 14px;
    min-width: 152px;
    min-height: 42px;
    padding: 4px 23px 4px 9px;
    font-size: 18px;
    justify-content: flex-start;
  }

  .btn-anchor .btn-anchor-arrow {
    width: 27px;
    height: 27px;
  }

  .btn-anchor .btn-anchor-arrow::before {
    width: 14px;
    height: 14px;
  }

  .fv-section {
    background-color: var(--color-bg-beige);
    padding-bottom: 18px;
  }

  .fv-inner {
    max-width: 390px;
    padding-top: 8px;
    padding-bottom: 80px;
  }

  .fv-section::after {
    height: 618px;
    background-image: url(../images/wave_up_bg2.png);
    background-size: 100% auto;
    bottom: -531px;
    background-position: left top;
    transform: scaleX(-1);
    width: 120%;
  }

  .fv-image img {
    width: 98%;
    padding-bottom: 0;
  }

  .fv-slide {
    margin-top: 8px;
  }

  .fv-catch {
    margin-bottom: 31px;
    line-height: 1.25;
  }

  .fv-catch-handwriting {
    margin-right: 4px;
    padding: 6px 0 0;
    font-size: 38px;
    letter-spacing: -1px;
    box-shadow: 0 0 4px 4px rgb(255 255 255 / 78%);
  }

  .fv-catch-handwriting .text-dots {
    letter-spacing: -4px;
  }

  .fv-catch-tail {
    font-size: 15px;
  }

  .fv-catch-line2 {
    margin-top: 8px;
    font-size: 23px;
    text-align: left;
  }

  .fv-sub {
    gap: 15px;
    margin-top: 0;
    font-size: 14px;
  }

  .fv-sub div {
    padding: 0;
    line-height: 1;
    box-shadow: 0 0 4px 3px rgb(255 255 255 / 78%);
  }

  .fv-sub div:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }

  .fv-sub div:nth-child(2) span {
    padding: 0;
    background-color: rgb(255 255 255 / 80%);
    box-shadow: 0 0 4px 3px rgb(255 255 255 / 78%);
  }

  .fv-deco-birds {
    width: 64px;
    top: 3.5%;
    right: 5%;
    bottom: auto;
  }

  .news-section {
    padding: 0px 0 54px !important;
  }

  .fv-deco-bird-bottom {
    display: none;
  }

  .news-container {
    max-width: 390px;
  }

  .news-box {
    display: block;
  }

  .news-head {
    margin-bottom: 12px;
  }

  .news-title {
    padding-top: 0;
    padding-bottom: 5px;
    font-size: 18px;
    border-bottom-width: 2px;
  }

  .news-list {
    width: 100%;
  }

  .news-link {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 5px 10px;
    padding: 13px 0 12px;
    font-size: 11px;
    border-bottom-color: rgb(158 193 28 / 75%);
  }

  .news-date,
  .news-text {
    font-size: 11px;
  }

  .news-date,
  .news-cat {
    text-align: left;
  }

  .news-text {
    flex: 0 0 100%;
    margin-left: 0;
    padding-right: 18px;
    line-height: 1.65;
  }

  .news-cat {
    padding: 2px 11px;
    font-size: 10px;
    width: fit-content;
  }

  .news-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
  }

  .news-more-box {
    position: absolute;
    top: 5px;
    right: 24px;
    margin-top: 0;
    padding-right: 0;
  }

  .news-more {
    gap: 8px;
    font-size: 11px;
  }

  .online-status-section {
    padding-top: 54px;
  }

  .online-status-section .sec-title-line {
    margin-left: 0;
    text-align: left;
    font-size: 22px;
  }

  .online-status-title {
    display: block;
  }

  .online-status-title::after {
    display: none;
  }

  .online-status-title .sec-title-line-part {
    display: inline-block;
    border-bottom: 2px dashed currentColor;
    line-height: 1;
    padding-bottom: 7px;
    padding-top: 6px;
  }

  .online-status-title br.pc-none + .sec-title-line-part {
    margin-top: 4px;
  }

  .online-status-content {
    gap: 22px;
    margin-bottom: 22px;
  }

  .online-status-text p,
  .online-status-extra p,
  .issue-text p,
  .about-detail-text p,
  .feature-card-desc,
  .features-note,
  .doctor-bio p {
    font-size: 16px;
    line-height: 1.95;
  }

  .online-status-text p {
    margin-bottom: 14px;
  }

  .online-status-list {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.9;
  }

  .online-status-image img {
    border-radius: 8px;
  }

  .online-status-wave {
    width: 100vw;
    max-width: none;
    margin: 0px 0 0 calc(50% - 50vw);
  }

  #online-issues {
  }

  .online-issues-title::after {
    display: none;
  }

  .online-issues-title .sec-title-line-part {
    display: inline-block;
    border-bottom: 2px dashed currentColor;
    line-height: 1;
    padding-bottom: 7px;
    padding-top: 6px;
  }

  .online-issues-title br.pc-none + .sec-title-line-part {
    margin-top: 4px;
  }

  .issues-list {
    gap: 42px;
  }

  .issue-card {
    gap: 14px;
    align-items: stretch;
  }

  .issue-image::before {
    width: 54%;
  }

  .issue-card:nth-child(1) .issue-image::before {
    left: -26%;
    bottom: -118%;
    transform: rotate(25deg);
  }

  .issue-card:nth-child(2) .issue-image::before {
    right: -26%;
    bottom: -120%;
    transform: rotate(-125deg);
  }

  .issue-card:nth-child(3) .issue-image::before {
    left: -28%;
    bottom: -116%;
    transform: rotate(15deg);
  }

  .issue-image {
    max-width: none;
  }

  .issue-image picture {
    display: block;
  }

  .issue-image img {
    border-radius: 8px;
  }

  .issue-title {
    margin-bottom: 8px;
    font-size: 23px;
    line-height: 1.6;
    text-align: center;
  }

  .about-sky {
    padding: 64px 0 23%;
    background-image: url("../images/sp/sec-about_bg.webp") !important;
    background-size: auto 135% !important;
    background-position: left 22% bottom -4px !important;
  }

  .sec-title-line.about-title {
    padding-bottom: 10px !important;
    margin-bottom: 18px;
    color: var(--color-white);
    line-height: 1;
  }

  .about-title.sec-title-line .sec-title-accent {
    color: var(--color-text);
  }

  .about-title.sec-title-line::after {
    border-bottom-color: var(--color-text);
    background-image: none;
  }

  .about-lead,
  .about-vision {
  }

  .about-vision {
    font-family: var(--font-kosugi);
  }

  .about-lead {
    margin-bottom: 28px;
    text-align: left;
  }

  .about-quotes {
    gap: 24px;
    margin: 32px auto 34px;
  }

  .about-quote {
    gap: 10px;
    padding: 20px 26px 28px;
    border-radius: 13px;
    box-shadow: 3px 3px 0px rgb(228 228 228 / 100%);
  }

  .about-quote-image {
    aspect-ratio: 528 / 290;
    border-radius: 7px;
  }

  .about-quote-image picture,
  .feature-card-image picture,
  .online-status-image picture,
  .about-detail-image picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .about-quote-text {
    width: 100%;
    padding-top: 0;
    font-size: 15px;
  }

  .about-quote-text::before {
    display: block;
    width: 80%;
    height: 0;
    margin: 10px auto 18px;
    border-top: 2px dashed rgb(80 68 52 / 40%);
    background-image: none;
  }

  .about-vision-quote {
    margin: 13px 0 !important;
  }

  .about-detail {
    gap: 22px;
    max-width: 390px;
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .about-detail-text {
    display: contents;
    width: 100%;
  }

  .about-detail-text > p {
    order: 1;
    width: 100%;
  }

  .deco-back-box {
    order: 2;
    width: 100%;
  }

  .deco-back-box::before {
    z-index: 0;
  }

  .deco-back-box p {
    position: relative;
    z-index: 1;
  }

  .about-detail-highlight {
    display: block;
    margin: 10px 0 18px !important;
    font-size: 16px;
  }

  .about-detail-highlight .text-orange {
    font-size: 25px !important;
  }

  .about-detail-image {
    order: 3;
    max-width: 210px;
    margin: 2px 0 0 auto;
  }

  .about-detail .btn-anchor {
    order: 4;
    margin: 20px auto 0;
    display: flex;
    width: fit-content;
  }

  .front-page .text-orange {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: var(--color-white);
    line-height: 1.5;
    margin-bottom: 9px;
  }

  .features-section {
    padding-top: 56px;
    background-color: var(--color-bg-beige);
    padding-bottom: 0 !important;
  }

  .sec-title-line.feature-title {
    margin-bottom: 32px;
  }

  .features-birds {
    width: 78px;
    top: 18px;
    left: 18px;
  }

  .features-list {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 310px;
    margin: 0 auto 24px;
  }

  .feature-card {
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    overflow: hidden;
  }

  .feature-card-image {
    aspect-ratio: 630 / 281;
    border-radius: 8px 8px 0 0;
  }

  .feature-card-title {
    min-height: 0;
    margin: 14px 18px 0;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
  }

  .feature-card-desc {
    margin: 8px 18px 20px;
    font-size: 14px;
  }

  .features-note {
    max-width: 310px;
    margin: 18px auto 0;
    font-size: 12px;
  }

  .flow-section {
    overflow: hidden;
    padding-top: 120px !important;
    padding-bottom: 64px;
  }

  .flow-section::before {
    top: -21px !important;
    width: 180% !important;
    height: 118px;
    pointer-events: none;
    background-image: url("../images/wave_down_bg_light_green.png");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% auto;
    background-color: var(--color-bg-beige)
  }

  .flow-section > .container {
    position: relative;
    z-index: 1;
  }

  .flow-lead {
    margin: -8px 0 26px;
    font-size: 16px;
    line-height: 1.95;
  }

  .flow-list {
    gap: 58px;
    max-width: 330px;
    margin: 0 auto 60px;
    align-items: center;
  }

  .flow-step {
    grid-template-columns: 142px 1fr;
    grid-template-rows: 1fr auto auto 1fr;
    column-gap: 30px;
    row-gap: 0;
    max-width: none;
    width: min(100%, 330px);
    max-width: 100%;
    min-height: 142px;
  }

  .flow-step-image {
    grid-column: 1;
    grid-row: 1 / -1;
    width: 142px;
    height: 142px;
    border: 3px solid var(--color-green);
    box-shadow: none;
  }

  .flow-step-num {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    margin: 0 0 2px;
    font-size: 18px;
    line-height: 1.3;
  }

  .flow-step-text {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    padding-top: 0;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
  }

  .flow-step + .flow-step::before {
    top: -44px;
    left: 50%;
    width: 15px;
    height: 28px;
    border: 0;
    background-image: url("../images/sp/deco-arrow.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateX(-50%);
  }

  .point-section {
    padding-top: 60px;
    padding-bottom: 0px !important;
    background-color: var(--color-white);
  }

  .point-list {
    gap: 26px 24px;
    max-width: 306px;
  }

  .point-list .point-item:nth-child(5) {
    grid-column: 1 / -1;
    width: 48%;
    justify-self: center;
  }

  .point-text {
    line-height: 1.65;
  }

  .point-birds {
    display: none;
  }

  .faq-section {
    padding-top: 103px !important;
    padding-bottom: 60px;
  }

  .faq-list {
    gap: 18px;
    max-width: 318px;
    margin-bottom: 32px;
  }

  .faq-accordion-item {
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
  }

  .faq-question {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 18px 16px 12px;
    font-size: 11px;
    line-height: 1.65;
  }

  .faq-q-icon {
    font-size: 21px;
  }

  .faq-a-icon {
    font-size: 19px;
    margin-top: 12px;
  }

  .faq-q-toggle {
    width: 12px;
    height: 12px;
  }

  .faq-q-toggle::before,
  .faq-q-toggle::after {
    height: 1px;
  }

  .faq-answer,
  .faq-accordion-item.is-open .faq-answer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    margin: 0 16px;
    padding: 12px 0 18px;
    border-top: 1px dashed rgb(80 68 52 / 25%);
    width: calc(100% - 32px);
    box-sizing: border-box;
    overflow: hidden;
    opacity: 1;
    transition: height 0.35s ease, padding 0.35s ease, border-color 0.35s ease, opacity 0.2s ease;
    will-change: height;
  }

  .faq-accordion-item:not(.is-open) .faq-answer {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top-color: transparent;
    opacity: 0;
  }

  .faq-accordion-item.is-open .faq-q-toggle::after {
    transform: rotate(0);
  }

  .faq-a-icon {
    padding-top: 0;
  }

  .faq-a-text {
    margin: 0;
    font-size: 10px;
    line-height: 1.85;
  }

  .faq-button .btn-anchor {
    margin: 0 auto;
    display: flex;
    width: fit-content;
  }

  .doctor-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .doctor-birds {
    width: 84px;
    transform: scaleX(-1);
  }

  .doctor-content {
    gap: 24px;
    margin-bottom: 0;
  }

  .doctor-image {
    max-width: 188px;
    margin: 0 auto;
  }

  .doctor-button {
    margin-top: 24px;
  }

  .doctor-card {
    width: 100%;
    max-width: 318px;
    padding: 22px 18px;
    border-width: 1px;
    border-radius: 8px;
    box-shadow: none;
  }

  .doctor-role {
    font-size: 15px;
    text-align: center;
  }

  .doctor-name {
    margin-bottom: 14px;
    font-size: 16px;
    text-align: center;
  }
}

/* ========================================
   このような方におすすめ
   ======================================== */
.point-section {
  background-color: var(--color-bg-beige);
  position: relative;
  overflow: hidden;
}

.sec-title-line.point-title {
  margin-left: auto;
  margin-right: auto;
  margin-top: 42px;
}

.point-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 16px;
}

.point-item {
  text-align: center;
}

.point-image {
  width: 100%;
  margin: 0 auto 12px;
  aspect-ratio: 1 / 0.95;
  position: relative;
}
.point-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* organic blob shape */
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 99%, transparent 100%);
          mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 99%, transparent 100%);
  filter: drop-shadow(0 4px 14px rgb(226 194 85 / 5%));
}

.point-text {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.point-birds {
  position: absolute;
  width: 70px;
  bottom: 24px;
  left: 32px;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .point-list { grid-template-columns: repeat(3, 1fr); gap: 48px 24px; }
  .point-list .point-item:nth-child(4) { grid-column: 1 / span 1; transform: translateX(50%); }
  .point-list .point-item:nth-child(5) { grid-column: 2 / span 1; transform: translateX(50%); }
  .point-text { font-size: 18px; }
}

/* ========================================
   よくある質問
   ======================================== */
.faq-section {
  background-color: var(--color-bg-beige);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.section.faq-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 228px;
  pointer-events: none;
  background-image: url("../images/wave_up_bg_white.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.section.faq-section > .container {
  position: relative;
  z-index: 1;
}

.sec-title-line.faq-title {
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  list-style: none;
  margin: 0 0 72px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: auto;
  margin-right: auto;
}

.faq-accordion-item {
  padding: 10px 20px;
  background-color: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgb(0 0 0 / 5%);
  overflow: hidden;
}

.faq-question {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 24px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-kosugi);
  font-size: 19px;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  margin-bottom: 0;
}
.faq-q-icon {
  font-family: var(--font-kosugi);
  color: var(--color-orange);
  font-size: 27px;
  font-weight: 500;
}
.faq-q-text { line-height: 1.5; }
.faq-q-toggle {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-q-toggle::before,
.faq-q-toggle::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-orange);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.faq-q-toggle::after { transform: rotate(90deg); }
.is-open .faq-q-toggle::after { transform: rotate(0); }

.faq-answer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 0 0px 22px 0;
  border-top: 3px dashed rgb(80 68 52 / 25%);
  margin: 0 64px 0 24px;
}
.faq-a-icon {
  font-family: var(--font-kosugi);
  color: var(--color-green);
  font-size: 20px;
  font-weight: 500;
  padding-top: 16px;
}
.faq-a-text {
  font-size: 14px;
  line-height: 1.9;
  margin: 16px 0 0;
}

@media screen and (max-width: 767px) {
  /* SP: 初期は折り畳み */
  .faq-section .faq-answer {
    display: block;
    height: 0;
    overflow: hidden;
    padding: 0 18px;
    margin: 0 18px;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  }
  .faq-section .faq-accordion-item.is-open .faq-answer {
    opacity: 1;
    padding: 0px;
  }
  .faq-question { padding: 18px 18px; font-size: 15px; }
}

.faq-button { text-align: center; }

/* ========================================
   代表医師紹介
   ======================================== */
.doctor-section {
  background-color: var(--color-white);
  position: relative;
}

.sec-title-line.doctor-title {
  margin-left: auto;
  margin-right: auto;
}

.doctor-title { margin-bottom: 32px; }

.doctor-birds {
  display: block;
  width: 80px;
  margin: -16px auto 24px;
}

.doctor-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.doctor-image {
  width: 100%;
  max-width: 360px;
  position: relative;
}
.doctor-image img {
  width: 100%;
  display: block;
}

.doctor-card {
  flex: 1;
  background-color: var(--color-white);
  border: 2px solid var(--color-blue);
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 5%);
}

.doctor-role {
  font-family: var(--font-kosugi);
  color: var(--color-blue);
  font-size: 18px;
  margin: 0 0 6px;
}
.doctor-name {
  font-family: var(--font-kosugi);
  font-size: 27px;
  font-weight: 500;
  margin: 0 0 16px;
}
.doctor-bio p {
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}

.doctor-button {
  text-align: center;
  margin-top: 59px;
}

.flow-section::before,
.point-section::before,
.doctor-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 118px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.point-section::before {
  background-image: url(../images/wave_up_bg_light_green.png);
  height: 625px;
  top: -51px;
}

.doctor-section::before {
  background-image: url(../images/wave_up_bg_beige.png);
  height: 625px;
  background-size: 110% 100%;
  top: -11px;
}

@media screen and (min-width: 768px) {
  .doctor-content { flex-direction: row; gap: 40px; align-items: center; }
  .doctor-image { max-width: 380px; }
  .doctor-bio p { font-size: 16px; }
  .faq-q-toggle {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .front-page .sec-title-line {
    display: table;
    width: auto;
    /*padding-bottom: 84px;*/
  }

  .front-page .sec-title-line::after {
    width: 100%;
    max-width: none;
    height: 0;
    margin-top: 12px;
    background-image: none;
    border-bottom: 3px dashed currentColor;
  }

  .online-status-section .sec-title-line {
    margin-left: 0;
    text-align: left;
  }

  .online-status-content {
    gap: 56px;
  }

  .online-status-text,
  .online-status-extra {
    font-size: 19px;
    font-weight: 500;
  }

  .online-status-text .small-text {
    font-size: 16px;
    margin-top: 40px;
  }

  .online-status-image {
    flex: 0 0 38%;
  }

  .online-status-image img {
    max-width: 360px;
    margin-left: auto;
  }

  .online-status-wave {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .issue-card {
    gap: 49px;
  }

  .issue-image {
  }

  .issue-title {
    font-size: 29px;
  }

  .issue-text p {
    font-size: 18px;
    line-height: 2;
  }

  .about-title.sec-title-line .sec-title-accent {
    color: var(--color-text);
  }

  .about-title.sec-title-line::after {
    border-bottom-color: var(--color-text);
  }

  .about-lead,
  .about-vision {
    font-size: 27px;
  }

  .about-quote-text {
    font-size: 16px;
  }

  .about-detail-highlight {
    margin-top: 24px !important;
  }

  .about-detail-highlight .text-orange {
    font-size: 40px;
    margin-right: 10px;
    background-color: var(--color-white);
    line-height: 1;
    padding: 10px 5px;
    background-color: var(--color-white);
  }

  .about-detail-text {
    font-size: 19px;
  }

  .about-detail-text .btn-anchor {
    margin-top: 50px;

  }

  .features-birds {
    top: 48px;
    left: 10%;
    width: 126px;
  }

  .flow-section,
  .point-section,
  .doctor-section {
    overflow: hidden;
  }

  .flow-section,
  .point-section {
    padding-top: 190px;
  }

  .doctor-section {
    padding-top: 270px;
    padding-bottom: 0;
  }

  .flow-section::before {
    background-image: url("../images/wave_up_bg2.png");
    width: 100%;
    height: 228px;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
  }

  .flow-section {
    padding-bottom: 0;
  }

  .point-section {
    background-color: var(--color-white);
    padding-bottom: 90px;
  }

  .flow-section > .container,
  .point-section > .container,
  .doctor-section > .container {
    position: relative;
    z-index: 1;
  }

  .point-birds {
    left: 13%;
    bottom: -66px;
    /* left: auto; */
    width: 136px;
  }

  .doctor-title {
    position: relative;
  }

  .doctor-birds {
    position: absolute;
    top: -40px;
    right: 28%;
    width: 142px;
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .point-section {
    padding-top: 60px;
    padding-bottom: 64px;
    background-color: var(--color-white);
  }

  .point-list {
    gap: 26px 24px;
    max-width: 306px;
  }

  .point-list .point-item:nth-child(4),
  .point-list .point-item:nth-child(5) {
    transform: none;
  }

  .point-list .point-item:nth-child(5) {
    grid-column: 1 / -1;
    width: 48%;
    justify-self: center;
  }

  .point-image {
    margin-bottom: 0px;
  }

  .point-text {
    font-size: 11px;
    line-height: 1.65;
  }

  .point-birds {
    display: none;
  }

  .faq-section {
    padding-top: 58px;
    padding-bottom: 60px;
  }

  .faq-list {
    gap: 18px;
    max-width: 318px;
    margin-bottom: 32px;
  }

  .faq-accordion-item {
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
  }

  .faq-question {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    padding: 18px 16px 12px;
    font-size: 14px;
    line-height: 1.65;
  }

  .faq-q-toggle {
    width: 12px;
    height: 12px;
  }

  .faq-q-toggle::before,
  .faq-q-toggle::after {
    height: 1px;
  }

  .faq-answer,
  .faq-accordion-item.is-open .faq-answer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    margin: 0 16px;
    padding: 12px 0 18px;
    border-top: 1px dashed rgb(80 68 52 / 25%);
    width: calc(100% - 32px);
    box-sizing: border-box;
    overflow: hidden;
    opacity: 1;
    transition: height 0.35s ease, padding 0.35s ease, border-color 0.35s ease, opacity 0.2s ease;
    will-change: height;
  }

  .faq-accordion-item:not(.is-open) .faq-answer {
    height: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-top-color: transparent;
    opacity: 0;
  }

  .faq-accordion-item.is-open .faq-q-toggle::after {
    transform: rotate(0);
  }

  .faq-a-icon {
    padding-top: 0;
  }

  .faq-a-text {
    margin: 0;
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.85;
  }

  .faq-button .btn-anchor {
    display: flex;
    width: fit-content;
    margin: 0 auto;
  }

  .doctor-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .doctor-section .container {
    position: relative;
  }

  .doctor-birds {
    position: absolute;
    top: -52px;
    left: 26px;
    width: 84px;
    margin: 0;
    transform: scaleX(-1);
  }

  .doctor-content {
    gap: 24px;
    margin-bottom: 0;
  }

  .doctor-content > div {
    display: contents;
  }

  .doctor-image {
    max-width: 188px;
    margin: 0 auto;
  }

  .doctor-button {
    order: 5;
    margin-top: 0;
  }

  .doctor-card {
    display: contents;
  }

  .doctor-role {
    order: 2;
    width: 100%;
    margin: 0 0 -27px;
    font-size: 14px;
    text-align: center;
  }

  .doctor-name {
    order: 3;
    width: 100%;
    margin: 0 0 -4px;
    font-size: 16px;
    text-align: center;
  }

  .doctor-bio {
    order: 4;
    width: 100%;
    max-width: 318px;
    padding: 22px 18px;
    border: 1px solid var(--color-blue);
    border-width: 1px;
    border-radius: 8px;
    box-shadow: none;
  }

  .sec-title-line.doctor-title {
    line-height: 1;
  }

  .point-section::before {
    top: -11px;
    background-size: 100% auto;
    transform: scaleX(-1);
  }

  .section.faq-section::before {
    width: 160%;
  }

  .doctor-section::before {
    background-size: 110% auto;
    transform: scaleX(-1);
  }
}
