/* ========================================
   脳ドックLP専用CSS
======================================== */

/*-------------------------------------
変数定義
-------------------------------------*/
:root {
  /* フォント */
  --brain-dock-font-mincho: "Zen Old Mincho", serif;

  /* カラー */
  --brain-dock-color-text: #4F4F4F;
  --brain-dock-color-bg-main: #2A5475;
  --brain-dock-color-bg-dark: #374047;

  /* サイズ */
  --brain-dock-max-width: 1208px;
  --brain-dock-wide-width: 1088px;
  --brain-dock-content-width: 1008px;
}



/*-------------------------------------
基本スタイル
-------------------------------------*/

.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}

.lp-brain-dock {
  text-align: left;
  margin-top: 96px;
  background-color: #fff;
  color: var(--brain-dock-color-text);
  font-size: 16px;
  line-height: 1.6;
}

.lp-brain-dock img {
  display: block;
  object-fit: cover;
}

.lp-brain-inner {
  margin-inline: auto;
  padding: 0 24px;
}
.lp-brain-inner--wide {
  max-width: var(--brain-dock-wide-width);
}
.lp-brain-inner--content {
  max-width: var(--brain-dock-content-width);
}

@media screen and (max-width: 1000px) {
  .lp-brain-dock {
    margin-top: 84px;
  }
}



/*-------------------------------------
セクション共通要素
-------------------------------------*/

/* タイトル */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-sub-title {
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: calc(16 / 16);
  letter-spacing: 0.02em;
  color: var(--brain-dock-color-bg-main);
}

.section-sub-title span {
  display: inline-block;
}

.section-sub-title--line {
  position: relative;
}
.section-sub-title--line::before {
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  content: "";
  width: 12px;
  height: 1px;
  background-color: var(--brain-dock-color-bg-main);
}
.section-sub-title--line::after {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  content: "";
  width: 12px;
  height: 1px;
  background-color: var(--brain-dock-color-bg-main);
}

.section-sub-title__color {
  color: #E28423;
}

.section-title {
  text-align: center;
  font-family: var(--brain-dock-font-mincho);
  font-weight: 500;
  font-size: 30px;
  line-height: calc(30 / 30);
  letter-spacing: 0.02em;
  color: var(--brain-dock-color-bg-main);
}

.section-title span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .section-heading {
    gap: 6px;
  }
  .section-title {
    font-size: min(calc(100vw / 375 * 20), 20px);
    line-height: 1.4;
  }
  .section-sub-title {
    font-size: min(calc(100vw / 375 * 14), 14px);
    line-height: 1.2;
  }
  .section-sub-title--line::before,
  .section-sub-title--line::after {
    display: none;
  }
}

/* 共通CTAボタン */
.section-button-wrap {
  display: flex;
}
.section-button-wrap--center {
  justify-content: center;
}
.section-button-wrap--left {
  justify-content: flex-start;
}
.section-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 346px;
  max-width: 100%;
  min-height: 64px;
  border-radius: 100px;
  background: linear-gradient(225deg, #AF671C 0%, #CD7922 50%, #AF671C 100%);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  position: relative;
  cursor: pointer;
}
.section-button::after {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/brain-dock-lp/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .section-button {
    width: 100%;
    max-width: 327px;
  }
}



/*-------------------------------------
top-band
-------------------------------------*/

.top-band {
  background-color: var(--brain-dock-color-bg-main);
}

.top-band__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-band__location {
  font-weight: 500;
  font-size: 14px;
  line-height: calc(14 / 14);
  letter-spacing: 0.04em;
  color: #ffffff;
  padding: 6px 8px;
  border: 1px solid #ffffff;
  margin-right: 8px;
}

.top-band__text {
  font-weight: 400;
  font-size: 14px;
  line-height: calc(14 / 14);
  letter-spacing: 0em;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .top-band__inner {
    padding: 10px 14px;
  }

  .top-band__location {
    padding: 3px min(calc(100vw / 375 * 8), 8px);
    font-size: min(calc(100vw / 375 * 12), 12px);
  }

  .top-band__text {
    font-size: min(calc(100vw / 375 * 14), 14px);
  }
}



/*-------------------------------------
fv
-------------------------------------*/

.fv {
  position: relative;
  height: 552px;
  background-image: url('../img/brain-dock-lp/fv_bg.webp');
  background-size: cover;
  background-position: center;
}

.fv__inner {
  position: relative;
  max-width: min(calc(100vw / 1200 * 1200), 1200px);
  margin-inline: auto;
  height: 100%;
  z-index: 0;
}

.fv__catch-wrap {
  position: absolute;
  left: min(calc(100vw / 1200 * 100), 100px);
  top: 55px;
  display: flex;
  align-items: center;
  z-index: 10;
}

.fv__catch-line {
  display: block;
  width: 40px;
  height: 1px;
  background-color: #ffffff;
  flex-shrink: 0;
}

.fv__catch {
  margin-left: -6px;
  transform: skewX(-15deg);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.fv__sub-title {
  position: absolute;
  left: min(calc(100vw / 1200 * 90), 90px);
  top: 94px;
  font-size: min(calc(100vw / 1000 * 30), 30px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.fv__title {
  position: absolute;
  left: min(calc(100vw / 1200 * 90), 90px);
  top: 140px;
  font-family: var(--brain-dock-font-mincho);
  font-weight: 600;
  font-size: min(calc(100vw / 1000 * 78), 78px);
  line-height: 1;
  letter-spacing: -0.08em;
  color: #ffffff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6), 0px 0px 7px rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.fv__title-tsu {
  letter-spacing: -0.17em;
}

.fv__vertical {
  position: absolute;
  right: 24px;
  top: 42px;
  writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2em;
  color: #ffffff;
  font-feature-settings: "vert" 1;
  z-index: 10;
}

.fv__vertical-next {
  margin-top: 30px;
}

.fv__vertical-num {
  text-orientation: upright;
  font-size: 18px;
  letter-spacing: 0;
}

.fv__vertical-space {
  letter-spacing: 0;
}

.fv__item:nth-child(2) {
  position: relative;
  z-index: 2;
}

.fv__card {
  position: absolute;
  width: min(calc(100vw / 1000 * 240), 240px);
  height: 144px;
}

.fv__card img {
  border-radius: 32px 0 32px 0;
}
.fv__item:nth-child(1) .fv__card img {
  border-radius: 0 32px 0 32px;
}

.fv__card--c {
  left: min(calc(100vw / 1000 * 493), 493px);
  top: 266px;
  filter: drop-shadow(0px 4px 14px rgba(0, 0, 0, 0.15));
}

.fv__card--b {
  left: min(calc(100vw / 1000 * 293), 293px);
  top: 342px;
  filter: drop-shadow(0px 4px 20px rgba(0, 0, 0, 0.15));
}

.fv__card--a {
  left: min(calc(100vw / 1000 * 105), 105px);
  top: 295px;
}

.fv__badge {
  position: absolute;
  width: 111px;
  height: 111px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.fv__badge-text {
  font-family: var(--brain-dock-font-mincho);
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-align: center;
}

.fv__badge-sm {
  font-size: 12px;
}

.fv__badge-num {
  font-size: 18px;
}

.fv__badge--a {
  left: min(calc(100vw / 1000 * 50), 50px);
  top: 261px;
  background-image: linear-gradient(225deg, rgb(36, 71, 85) 0%, rgb(64, 106, 123) 50%, rgb(36, 71, 85) 100%);
}

.fv__badge--c {
  left: min(calc(100vw / 1000 * 684), 684px);
  top: 246px;
  background-image: linear-gradient(225deg, rgb(20, 53, 67) 0%, rgb(68, 101, 115) 50%, rgb(20, 53, 67) 100%);
}

.fv__badge--b {
  left: min(calc(100vw / 1000 * 477), 477px);
  top: 397px;
  background-image: linear-gradient(225deg, rgb(20, 53, 67) 0%, rgb(24, 100, 132) 50%, rgb(20, 53, 67) 100%);
}

@media screen and (max-width: 767px) {
  .fv {
    padding-top: 24px;
    padding-bottom: 35px;
    height: auto;
    background-image: url('../img/brain-dock-lp/fv_bg_sp.webp');
  }

  .fv__inner {
    max-width: 450px;
  }

  .fv__catch-wrap {
    position: relative;
    justify-content: center;
    left: auto;
    top: auto;
  }

  .fv__catch-line {
    width: 28px;
  }

  .fv__catch {
    font-size: 14px;
  }

  .fv__sub-title {
    margin-top: 16px;
    left: auto;
    top: auto;
    font-size: min(calc(100vw / 375 * 22), 22px);
    letter-spacing: 0.05em;
    position: relative;
    text-align: center;
  }

  .fv__title {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 13px;
    text-align: center;
    font-size: min(calc(100vw / 375 * 58), 58px);
    letter-spacing: -0.06em;
  }

  .fv__vertical {
    right: 17px;
    top: auto;
    bottom: 27px;
    font-size: 10.6px;
  }

  .fv__vertical-next {
    margin-top: 20px;
  }

  .fv__vertical-num {
    font-size: 13.6px;
  }

  .fv__list {
    margin-top: 28px;
    padding-inline: 20px;
    max-width: 345px;
  }

  .fv__item {
    position: relative;
    width: 175px;
  }
  .fv__item:nth-child(2) {
    margin-top: 14px;
    margin-left: 24px;
  }
  .fv__item:nth-child(3) {
    margin-top: 14px;
  }

  .fv__card img {
    border-radius: 23px 0 23px 0;
  }
  .fv__item:nth-child(1) .fv__card img {
    border-radius: 0 23px 0 23px;
  }

  .fv__badge {
    width: 77px;
    height: 77px;
  }
  .fv__badge--a {
    left: -7px;
    top: -17px;
  }
  .fv__badge--b {
    top: 44px;
    left: 124px;
  }
  .fv__badge--c {
    top: -9px;
    left: -18px;
  }

  .fv__card {
    position: relative;
    width: 100%;
    height: auto;
  }
  .fv__card--a,
  .fv__card--b,
  .fv__card--c {
    top: auto;
    left: auto;
  }

  .fv__badge-text {
    font-size: 10px;
  }
  .fv__badge-sm {
    font-size: 10px;
  }
  .fv__badge-num {
    font-size: 12.5px;
  }
}



/*-------------------------------------
problem
-------------------------------------*/

.problem {
  position: relative;
  padding-bottom: 144px;
  z-index: 1;
}
.problem::before {
  position: absolute;
  bottom: 143px;
  left: 0;
  content: "";
  width: 100%;
  height: calc(100% - 143px);
  background-color: #2a5475;
  z-index: -1;
}
.problem::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 144px;
  background: linear-gradient(
    to top,
    #4F86B0 0%,
    #2A5475 100%
  );
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 102px), 50% 100%, 0 calc(100% - 102px));
  z-index: -1;
}

.problem__banner {
  transform: translateY(-15px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #fff;
  border-radius: 4px;
  padding: 12px 32px;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}

.problem__banner::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #fff;
}

.problem__banner-deco {
  display: block;
  width: 13px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}
.problem__banner-deco::before,
.problem__banner-deco::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1.5px;
  border-radius: 9px;
  height: 100%;
  background-color: #2a5475;
  transform-origin: center center;
}
.problem__banner-deco--left::before {
  height: 70%;
  top: auto;
  bottom: -2px;
  left: 3px;
  transform: rotate(-42deg);
  opacity: 0.5;
}
.problem__banner-deco--left::after {
  left: 8px;
  transform: rotate(-30deg);
}
.problem__banner-deco--right::before {
  height: 70%;
  top: auto;
  bottom: -2px;
  right: 3px;
  transform: rotate(42deg);
  opacity: 0.5;
}
.problem__banner-deco--right::after {
  right: 8px;
  transform: rotate(30deg);
}

.problem__banner-text {
  font-size: min(calc(100vw / 375 * 16), 16px);
  font-weight: 500;
  color: #2a5475;
  line-height: 1.6;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.problem__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
}

.problem__title {
  font-family: var(--brain-dock-font-mincho);
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: 36px;
}

.problem__cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.problem__card {
  width: 320px;
  flex-shrink: 0;
}

.problem__card-figure {
  position: relative;
}

.problem__card-text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-top: 17px;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.problem__card-text.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .problem {
    padding-top: 17px;
    padding-bottom: 32px;
  }
  .problem::before {
    bottom: 32px;
    height: calc(100% - 32px);
  }
  .problem::after {
    bottom: 1px;
    height: 32px;
    clip-path: polygon(100% 0, 100% calc(100% - 30px), 50% 100%, 0 calc(100% - 30px), 0 0);
  }
  .problem__banner {
    transform: unset;
    width: min(calc(100vw / 375 * 350), 350px);
  }
  .problem__title {
    font-size: 22px;
    line-height: 1.5;
    margin-top: 20px;
  }
  .problem__cards {
    padding-bottom: 24px;
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
  }
  .problem__card {
    width: 100%;
    max-width: 320px;
  }
  .problem__card-text {
    margin-top: 1px;
    font-size: 12px;
    line-height: 1.6;
    min-height: auto;
  }
  .problem__card-text.sp-only {
    display: flex;
  }
  .problem__card-text.pc-only {
    display: none;
  }
}



/*-------------------------------------
appeal
-------------------------------------*/

.appeal {
  margin-top: 10px;
  padding-block: 48px;
}

.appeal__cards {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.appeal__card {
  flex: 1;
  height: 260px;
  position: relative;
  overflow: hidden;
}

.appeal__card-media {
  display: block;
  position: absolute;
  inset: 0;
}
.appeal__card-media img {
  width: 100%;
  height: 100%;
}

.appeal__card-text {
  position: absolute;
  bottom: 34px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: min(1.6vw, 16px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.appeal__card-text--sm {
  font-size: min(1.3vw, 13px);
  letter-spacing: 0.02em;
  padding-bottom: 6px;
}

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

@media screen and (max-width: 767px) {
  .appeal {
    margin-top: 0;
    padding-block: 40px;
  }
  .appeal__cards {
    margin-top: 22px;
    flex-direction: column;
  }
  .appeal__card {
    flex: none;
    width: 100%;
    height: 96px;
  }
  .appeal__card-text {
    width: 147px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 16px;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
  }
  .appeal__card-text--sm {
    width: 150px;
    right: 13px;
    font-size: 14px;
    line-height: 1.3;
    padding-top: 8px;
  }
  .appeal__card-text--sm span {
    font-size: 12px;
  }
  .appeal__btn-wrap {
    margin-top: 25px;
  }
}



/*-------------------------------------
toc
-------------------------------------*/

.toc {
  padding-block: 56px;
  background: var(--brain-dock-color-bg-dark);
}

.toc__flex {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.toc__head {
  width: 242px;
  padding-inline: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toc__head-text {
  font-weight: 400;
  font-size: 24px;
  line-height: calc(25.92 / 24);
  letter-spacing: 0.06em;
  color: #ffffff;
}

.toc__content {
  flex: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding: 26px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.toc__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.toc__item {
  min-width: 160px;
}

.toc__link {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.toc__link:hover {
  opacity: 0.7;
}

.toc__link-icon {
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  transform: rotate(90deg);
}

.toc__link-text {
  font-weight: 500;
  font-size: 16px;
  line-height: calc(22.4 / 16);
  letter-spacing: 0.64px;
  color: #ffffff;
  font-family: 'Zen Old Mincho', serif;
}

@media screen and (max-width: 1023px) {
  .toc__head {
    width: 170px;
  }
  .toc__item {
    min-width: 220px;
  }
}

@media screen and (max-width: 767px) {
  .toc {
    padding-block: 40px;
  }

  .toc__flex {
    flex-direction: column;
    padding: 20px;
    gap: 24px;
  }

  .toc__head {
    width: 100%;
    padding-inline: 0;
  }

  .toc__head-text {
    font-size: 20px;
  }

  .toc__list {
    padding-inline: 20px;
    justify-content: center;
  }

  .toc__item {
    min-width: 200px;
  }

  .toc__content {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 24px 0 0 0;
  }

  .toc__link-text {
    font-size: 14px;
    letter-spacing: 0.56px;
  }
}

@media screen and (max-width: 599px) {

  .toc__list {
    flex-direction: column;
    gap: 20px;
  }

  .toc__item {
    min-width: auto;
    width: 100%;
  }

}



/*-------------------------------------
about
-------------------------------------*/

.about {
  background-color: #F3F6F8;
}

.about__inner {
  max-width: var(--brain-dock-max-width);
  margin-inline: auto;
}

.about__container {
  display: flex;
}

.about__text-area {
  background-color: #F3F5F8;
  padding-top: 64px;
  padding-bottom: 64px;
  padding-inline: min(calc(100vw / 1200 * 80), 80px);
  flex: 1;
}

.about__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about__content {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.about__lead {
  font-weight: 500;
  font-size: min(calc(100vw / 900 * 22), 22px);
  line-height: calc(35.2 / 22);
  letter-spacing: 0em;
  color: var(--brain-dock-color-text);
  font-family: var(--brain-dock-font-mincho);
  text-align: center;
}

.about__lead span {
  display: inline-block;
}

.about__description {
  font-weight: 500;
  font-size: 16px;
  line-height: calc(25.6 / 16);
  letter-spacing: 0em;
  color: var(--brain-dock-color-text);
}

.about__image {
  width: 358px;
}

.about__image img {
  height: 100%;
}

@media screen and (max-width: 767px) {
  .about__container {
    flex-direction: column;
  }

  .about__text-area {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .about__content {
    margin-top: 32px;
  }

  .about__lead {
    font-size: min(calc(100vw / 375 * 18), 18px);
  }

  .about__description {
    font-size: 15px;
  }

  .about__image {
    width: 100%;
    margin-inline: auto;
  }
  .about__image img {
    height: auto;
    aspect-ratio: 3 / 1.6;
  }
}



/*-------------------------------------
discovery
-------------------------------------*/

.discovery {
  padding-top: 84px;
  padding-bottom: 48px;
}

.discovery__container {
  border-radius: 2px;
  border: 1px solid rgba(42, 84, 117, 0.5);
  padding-bottom: 40px;
  padding-left: 48px;
  padding-right: 48px;
}

.discovery__text-area {
  width: 447px;
  margin-inline: auto;
  transform: translateY(-22px);
  background-color: #fff;
}

.discovery__content {
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.discovery__box {
  margin-top: 4px;
  width: 352px;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  background-color: #406a7b;
  border-radius: 4px;
}

.discovery__box-title {
  text-align: center;
  font-size: 12px;
  line-height: calc(12 / 12);
  letter-spacing: 0.02em;
  color: #ffffff;
}

.discovery__box-list {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 16px;
  padding-inline: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 32px;
}

.discovery__box-list-item {
  width: 130px;
  font-weight: 500;
  font-size: 16px;
  line-height: calc(25.6 / 16);
  letter-spacing: 0em;
  color: #ffffff;
  padding-left: 1em;
  position: relative;
}

.discovery__box-list-item::before {
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
  content: '・';
}

.discovery__text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.discovery__text-paragraph {
  font-weight: 500;
  font-size: 16px;
  line-height: calc(25.6 / 16);
  letter-spacing: 0em;
  color: var(--brain-dock-color-text);
}

@media screen and (max-width: 999px) {
  .discovery__box {
    width: 220px;
  }
}

@media screen and (max-width: 767px) {
  .discovery {
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .discovery__container {
    padding-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .discovery__text-area {
    width: 100%;
    max-width: 350px;
    transform: translateY(-18px);
  }

  .discovery .section-sub-title {
    width: 195px;
  }

  .discovery__content {
    flex-direction: column;
    gap: 24px;
    margin-top: 12px;
  }

  .discovery__box {
    width: 100%;
    margin-top: 0;
    margin-inline: auto;
    max-width: 400px;
    padding: 16px;
  }

  .discovery__box-list {
    margin-top: 12px;
    padding-top: 12px;
    padding-inline: 0;
    gap: 4px 14px;
  }

  .discovery__box-list-item {
    width: calc((100% - 14px) / 2);
    font-size: 14px;
    line-height: calc(22.4 / 14);
  }

  .discovery__text-paragraph {
    font-size: 14px;
    line-height: calc(22.4 / 14);
  }
}

@media screen and (max-width: 374px) {
  .discovery__box-list-item {
    width: 100%;
  }
}



/*-------------------------------------
stroke
-------------------------------------*/

.stroke {
  padding-top: 55px;
  padding-bottom: 64px;
}

.stroke__container {
  border-radius: 2px;
  border: 1px solid rgba(42, 84, 117, 0.5);
  padding-bottom: 40px;
  padding-left: 48px;
  padding-right: 48px;
}

.stroke__text-area {
  width: 578px;
  margin-inline: auto;
  transform: translateY(-23px);
  background-color: #fff;
}

.stroke__content {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.stroke__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stroke__text-paragraph {
  font-weight: 500;
  font-size: 16px;
  line-height: calc(25.6 / 16);
  letter-spacing: 0em;
  color: var(--brain-dock-color-text);
}

.stroke__text-paragraph-underLine {
  background-image: linear-gradient(
    to top,
    rgba(226, 132, 35, 0.2) 5px,
    transparent 5px
  );
  background-size: 100% 100%;
  background-repeat: repeat-x;
}

.stroke__image {
  width: 48%;
  padding-left: 5%;
  padding-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .stroke {
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .stroke__container {
    padding-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .stroke__text-area {
    width: 100%;
    max-width: 420px;
    transform: translateY(-18px);
  }

  .stroke__content {
    flex-direction: column-reverse;
    gap: 24px;
    margin-top: 12px;
  }

  .stroke__text {
    gap: 20px;
  }

  .stroke__text-paragraph {
    font-size: 14px;
    line-height: calc(22.4 / 14);
  }

  .stroke__image {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
    padding-left: 0;
    padding-bottom: 0;
  }
}



/*-------------------------------------
recommend
-------------------------------------*/

.recommend {
  background-color: var(--brain-dock-color-bg-main);
}

.recommend__inner {
  max-width: var(--brain-dock-max-width);
  margin-inline: auto;
}

.recommend__container {
  display: flex;
}

.recommend__image {
  width: min(calc(100vw / 1000 * 358), 358px);
  flex-shrink: 0;
  overflow: hidden;
  margin: 0;
}

.recommend__image img {
  height: 100%;
}

.recommend__text-area {
  flex: 1;
  padding-top: 64px;
  padding-bottom: 56px;
  padding-inline: min(calc(100vw / 1200 * 80), 80px);
}

.recommend__head {
  margin-inline: auto;
  width: 358px;
}

.recommend .section-title,
.recommend .section-sub-title {
  color: #fff;
}

.recommend .section-sub-title--line::before,
.recommend .section-sub-title--line::after {
  background-color: #fff;
}

.recommend__list-wrap {
  margin-top: 40px;
  margin-inline: auto;
  max-width: 584px;
  background-color: #ffffff;
  padding: 24px;
}

.recommend__list {
  margin-inline: auto;
  max-width: 424px;
  list-style-type: decimal;
  padding-left: 1.5em;
}

.recommend__list-item {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--brain-dock-color-text);
}

@media screen and (max-width: 767px) {
  .recommend__container {
    flex-direction: column;
  }

  .recommend__image {
    width: 100%;
    height: 240px;
  }

  .recommend__text-area {
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .recommend__head {
    width: 100%;
  }

  .recommend__list-wrap {
    padding: 16px;
  }

  .recommend__list {
    padding-left: 1.1em;
  }
  .recommend__list-item {
    font-size: 15px;
  }
}



/*-------------------------------------
check
-------------------------------------*/

.check {
  padding-block: 64px;
  text-align: center;
}

.check__body {
  margin-top: 40px;
}

.check__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--brain-dock-color-text);
}

.check__text + .check__text {
  margin-top: 26px;
}

@media screen and (max-width: 767px) {
  .check {
    padding-block: 48px;
  }
  .check__text {
    font-size: 15px;
  }
}



/*-------------------------------------
cta
-------------------------------------*/

.cta {
  background-color: #2a5475;
  padding-block: 56px;
  position: relative;
  z-index: 1;
}
.cta::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/brain-dock-lp/cta_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.cta__heading {
  font-family: var(--brain-dock-font-mincho);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.08;
}

.cta__heading span {
  display: inline-block;
}

.cta__cards {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.cta__card {
  flex: 1;
  background-color: #fff;
  border-radius: 2px;
  padding: 32px min(calc(100vw / 1200 * 32), 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.cta__card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.cta__card-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.cta__card-icon img {
  width: 100%;
  height: 100%;
}

.cta__card-icon--tel {
  background-color: #406a7b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__card-title {
  font-family: var(--brain-dock-font-mincho);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  width: 100%;
}

.cta__card-title--web { color: #c8741e; }
.cta__card-title--line { color: #1ca755; }
.cta__card-title--tel { color: #406a7b; }

.cta__card-desc {
  font-size: min(calc(100vw / 900 * 16), 16px);
  font-weight: 500;
  color: #4f4f4f;
  text-align: center;
  line-height: 1.6;
}

.cta__card-desc span {
  display: inline-block;
}

.cta__card-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.cta__card-phone {
  font-family: var(--brain-dock-font-mincho);
  font-size: min(calc(100vw / 900 * 28), 28px);
  font-weight: 500;
  color: #406a7b;
  line-height: 1.6;
  text-align: center;
  width: 100%;
}

.cta__card-hours {
  margin-top: -2px;
  font-size: 14px;
  font-weight: 500;
  color: #4f4f4f;
  text-align: center;
  line-height: 1.6;
  width: 100%;
}

.cta__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  line-height: 1;
  margin-top: auto;
}

.cta__card-btn--web {
  background: linear-gradient(193deg, #af671c 0%, #cd7922 50%, #af671c 100%);
}

.cta__card-btn--line {
  background-color: #06c755;
}

.cta__card-btn--tel {
  background: linear-gradient(193deg, #143543 0%, #406a7b 50%, #143543 100%);
}

.cta__card-btn-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

.cta__payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background-color: #fff;
  border-radius: 2px;
  padding: 16px 24px;
  margin-top: 40px;
  overflow: hidden;
}

.cta__payment-text {
  font-size: 16px;
  font-weight: 500;
  color: #4f4f4f;
  line-height: 1.6;
}
.cta__payment-text span {
  display: inline-block;
}

.cta__payment-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f3f6f8;
  border-radius: 4px;
  padding: 10px 48px;
  width: 480px;
  justify-content: center;
}

.cta__payment-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .cta {
    padding-block: 40px;
  }
  .cta::before {
    aspect-ratio: 375 / 673;
    background-image: url(../img/brain-dock-lp/cta_bg_sp.webp);
  }
  .cta__heading {
    font-size: 20px;
    line-height: 1.4;
  }
  .cta__cards {
    flex-direction: column;
    margin-top: 24px;
  }
  .cta__card {
    padding: 16px 24px;
    gap: 12px;
  }
  .cta__card-top {
    gap: 8px;
  }
  .cta__card-desc {
    font-size: 15px;
  }
  .cta__card-phone {
    font-size: 28px;
  }
  .cta__card-btn {
    min-height: 60px;
    margin-top: 0;
    max-width: 327px;
  }
  .cta__card-phone
  .cta__payment {
    flex-direction: column;
    gap: 8px;
  }
  .cta__payment-logos {
    width: 100%;
    max-width: 279px;
    padding: 10px 40px;
    flex-wrap: wrap;
  }
  .cta__payment {
    margin-top: 24px;
    flex-direction: column;
    gap: 8px;
  }
  .cta__payment-text {
    text-align: center;
  }
}

@media screen and (max-width: 374px) {
  .cta__payment-logos {
    max-width: 224px;
    padding-inline: 20px;
  }
}



/*-------------------------------------
doctor
-------------------------------------*/

.doctor {
  padding-top: 64px;
  background: linear-gradient(97deg, #f6f4ea 0%, #f7f4ec 100%);
  position: relative;
}

.doctor__layout {
  margin-top: 40px;
}

.doctor__content {
  width: min(calc(100vw / 1200 * 630), 630px);
  padding-bottom: 64px;
}

.doctor__photo {
  position: absolute;
  bottom: 0;
  right: 0;
  width: min(calc(100vw / 1200 * 545), 545px);
}

.doctor__name-block {
  position: absolute;
  top: 47.5%;
  left: 17%;
  width: max-content;
  text-align: right;
  z-index: 1;
}

.doctor__clinic-name {
  font-family: var(--brain-dock-font-mincho);
  font-size: min(calc(100vw / 1200 * 13), 13px);
  font-weight: 500;
  color: #406a7b;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.doctor__name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.doctor__role {
  font-size: min(calc(100vw / 1200 * 12), 12px);
  font-weight: 500;
  color: #406a7b;
  letter-spacing: 0.08em;
}

.doctor__name {
  font-family: var(--brain-dock-font-mincho);
  font-size: min(calc(100vw / 1200 * 20), 20px);
  font-weight: 400;
  color: #406a7b;
  letter-spacing: 0.16em;
}

.doctor__catch-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.doctor__catch {
  font-family: var(--brain-dock-font-mincho);
  font-size: 24px;
  font-weight: 500;
  color: #717071;
  white-space: nowrap;
  line-height: 1.6;
  flex-shrink: 0;
}

.doctor__catch-line {
  flex: 1;
  display: block;
  max-width: 180px;
  height: 1px;
  background-color: #717071;
  margin-bottom: 0.5em;
}

.doctor__catch-period {
  font-family: var(--brain-dock-font-mincho);
  font-size: 16px;
  font-weight: 500;
  color: #717071;
  line-height: 1.6;
  flex-shrink: 0;
}

.doctor__text {
  margin-top: 16px;
}

.doctor__text p {
  font-size: 16px;
  font-weight: 500;
  color: #4f4f4f;
  line-height: 1.6;
}

.doctor__text p:not(:first-child) {
  margin-top: 28px;
}

.doctor__btn-wrap {
  margin-top: 45px;
}

@media screen and (min-width: 1441px)  {
  .doctor {
    padding-top: 120px;
  }
  .doctor__content {
    padding-bottom: 120px;
  }
  .doctor__photo {
    width: 650px;
  }
}

@media screen and (max-width: 767px) {
  .doctor {
    padding-block: 37px;
  }
  .doctor .lp-brain-inner {
    padding-inline: 0;
  }
  .doctor__layout {
    margin-top: 16px;
  }
  .doctor__photo {
    margin-top: -14px;
    width: 93%;
    margin-right: 0;
    position: relative;
    margin-left: auto;
  }
  .doctor__name-block {
    position: absolute;
    top: 28%;
    left: 1.5%;
    margin-bottom: 0;
    z-index: 1;
  }
  .doctor__clinic-name {
    font-size: 13px;
  }
  .doctor__role {
    font-size: 12px;
  }
  .doctor__name {
    font-size: 20px;
  }
  .doctor__content {
    margin-top: 10px;
    width: 100%;
    padding-inline: 24px;
    padding-bottom: 0;
  }
  .doctor__catch {
    font-size: 18px;
  }
  .doctor__catch-period {
    font-size: 13px;
  }
  .doctor__catch-line {
    max-width: 212px;
  }
  .doctor__text p {
    font-size: 15px;
  }
  .doctor__text p:not(:first-child) {
    margin-top: 25px;
  }
  .doctor__btn-wrap {
    margin-top: 17px;
  }
}



/*-------------------------------------
stereotype
-------------------------------------*/

.stereotype {
  background-color: var(--brain-dock-color-bg-dark);
  padding-top: 56px;
  padding-bottom: 56px;
}

.stereotype .section-sub-title,
.stereotype .section-title {
  color: #fff;
}

.stereotype__items {
  margin-top: 58px;
}

.stereotype__item {
  display: flex;
  height: 180px;
  position: relative;
  overflow: hidden;
}

/* 奇数：テキスト左・画像右 */
.stereotype__item--odd {
  flex-direction: row;
}

/* 偶数：テキスト右・画像左（row-reverseで並び反転） */
.stereotype__item--even {
  flex-direction: row-reverse;
}

.stereotype__item-content {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(calc(100vw / 1000 * 24), 24px);
  padding-inline: min(calc(100vw / 1000 * 60), 60px) min(calc(100vw / 1000 * 20), 20px);
  position: relative;
  z-index: 1;
}
.stereotype__item--even .stereotype__item-content {
  padding-inline: min(calc(100vw / 1000 * 20), 20px) min(calc(100vw / 1000 * 60), 60px);
}

.stereotype__item-figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.stereotype__item--even .stereotype__item-figure {
  left: auto;
  right: 0;
}

.stereotype__item-figure img {
  height: 100%;
}

.stereotype__item-bracket {
  font-family: var(--brain-dock-font-mincho);
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  opacity: 0.2;
  line-height: 1.6;
  flex-shrink: 0;
}
.stereotype__item-bracket:nth-child(1) {
  margin-top: -25px;
}

.stereotype__item-text {
  font-family: var(--brain-dock-font-mincho);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  opacity: 0.8;
  line-height: 1.6;
  white-space: nowrap;
}

@media screen and (min-width: 1201px)  {
  .stereotype__item-content {
    padding-left: calc(100vw / 1200 * 60);
  }
  .stereotype__item--even .stereotype__item-content {
    padding-right: calc(100vw / 1200 * 60);
  }
}

@media screen and (max-width: 767px) {
  .stereotype {
    padding-top: 40px;
    padding-bottom: 40px;
    overflow: hidden;
  }
  .stereotype__items {
    margin-top: 30px;
  }
  .stereotype__item {
    height: 110px;
  }
  .stereotype__item-figure {
    width: 600px;
  }
  .stereotype__item--odd .stereotype__item-figure {
    left: auto;
    right: 0;
  }
  .stereotype__item--even .stereotype__item-figure {
    right: auto;
    left: 0;
  }
  .stereotype__item-text {
    font-size: 16px;
  }
  .stereotype__item-bracket {
    font-size: 32px;
  }
  .stereotype__item-bracket:nth-child(1) {
    margin-top: -40px;
  }
  .stereotype__item-bracket:last-child {
    margin-bottom: -30px;
  }
  .stereotype__item-content,
  .stereotype__item--even .stereotype__item-content {
    padding-inline: min(calc(100vw / 375 * 5), 5px);
  }
}



/*-------------------------------------
bridge
-------------------------------------*/

.bridge {
  position: relative;
  text-align: center;
  background-color: #fff;
  padding-bottom: 20px;
}

/* 下向き三角ポリゴン：疑似要素でグラデーション付きclip-path */
.bridge::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 360px;
  background: linear-gradient(
    to top,
    #4F86B0 0%,
    #374047 100%
  );
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.bridge__inner {
  position: relative;
  z-index: 1;
  padding-top: 112px;
  padding-bottom: 152px;
}

.bridge__quote {
  font-family: var(--brain-dock-font-mincho);
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.bridge__desc {
  margin-top: 48px;
}

.bridge__desc p {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 2;
}

.bridge__lower {
  position: relative;
  z-index: 1;
}

.bridge__title {
  font-family: var(--brain-dock-font-mincho);
  font-size: 30px;
  font-weight: 700;
  color: #4e84ae;
  line-height: 1.6;
}

.bridge__sub {
  font-size: 14px;
  font-weight: 500;
  color: #4e84ae;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .bridge {
    padding-bottom: 32px;
  }
  .bridge::before {
    height: 250px;
    clip-path: polygon(0 0, 100% 0, 100% 55%, 50% 82%, 0 55%);
  }
  .bridge__inner {
    margin-top: -12px;
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .bridge__quote {
    font-size: 16px;
  }
  .bridge__desc {
    margin-top: 24px;
  }
  .bridge__title {
    font-size: 21px;
    line-height: 1.4;
  }
  .bridge__title span {
    display: inline-block;
  }
}



/*-------------------------------------
feature
-------------------------------------*/

.feature {
  background: linear-gradient(to bottom, #ffffff 0%, #eaf6f2 50%, #d2dde6 100%);
  padding: 64px 0 148px;
  overflow: hidden;
}

.feature__list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature__item {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.feature__img {
  flex: 1;
  min-width: 0;
  height: 280px;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__content {
  width: 580px;
  flex-shrink: 0;
  position: relative;
}

/* Odd: image left, card right — card overlaps image */
.feature__item--odd .feature__content {
  margin-left: -80px;
  padding-top: 24px;
}

/* Even: card left, image right — image overlaps card */
.feature__item--even .feature__content {
  margin-right: -80px;
  padding-top: 32px;
  z-index: 1;
}
.feature__item--even .feature__img {
  z-index: 2;
}

.feature__card {
  background: #fff;
  border-radius: 2px;
  min-height: 274px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 40px 32px 40px 104px;
}

.feature__item--even .feature__card {
  padding: 40px 104px 40px 32px;
}

.feature__card-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-inline: 4px;
}

.feature__card-sub {
  font-size: 14px;
  font-weight: 400;
  color: #717071;
  letter-spacing: 0.02em;
  line-height: 1;
}

.feature__card-title {
  font-family: var(--brain-dock-font-mincho);
  font-size: 20px;
  font-weight: 500;
  color: var(--brain-dock-color-bg-main);
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: left;
}
.feature__item:nth-child(3) .feature__card-title {
  letter-spacing: 0;
}

.feature__card-title span {
  display: inline-block;
}

.feature__item--even .feature__card-title {
  color: #406a7b;
}

.feature__card-body {
  padding-top: 16px;
  border-top: 0.5px solid #c2bdba;
  font-size: 15px;
  line-height: 1.6;
  color: var(--brain-dock-color-text);
}

.feature__num {
  position: absolute;
  font-size: 104px;
  font-weight: 400;
  line-height: 1;
  color: var(--brain-dock-color-bg-main);
  pointer-events: none;
  z-index: 3;
}

.feature__item--odd .feature__num {
  left: 18px;
  top: 214px;
  transform: translateX(-50%);
}

.feature__item--even .feature__num {
  right: -20px;
  top: 193px;
  color: #406a7b;
}

@media screen and (max-width: 1024px) {
  .feature__item--odd .feature__num {
    left: 24px;
  }
}

@media screen and (max-width: 767px) {
  .feature {
    padding: 48px 0 220px;
  }

  .feature__list {
    margin-top: 24px;
    gap: 24px;
  }

  /* 縦積みレイアウト */
  .feature__item {
    flex-direction: column;
  }

  /* even: column-reverseでimg上・カード下（奇数の左右逆） */
  .feature__item--even {
    flex-direction: column-reverse;
  }

  /* 画像 */
  .feature__img {
    width: 95%;
    height: auto;
  }

  .feature__item--odd .feature__img,
  .feature__item--even .feature__img {
    z-index: 3;
  }

  /* コンテンツ */
  .feature__content {
    width: 100%;
    padding-top: 0;
  }

  .feature__item--odd .feature__content,
  .feature__item--even .feature__content {
    margin-top: -24px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    z-index: 1;
  }

  /* カード */
  .feature__item--odd .feature__card,
  .feature__item--even .feature__card {
    margin-left: 5%;
    width: 95%;
    padding: 46px 20px 24px;
    border-radius: 0 0 2px 2px;
  }
  .feature__item--even .feature__card {
    padding-top: 64px;
  }

  .feature__item--odd .feature__num,
  .feature__item--even .feature__num {
    font-size: 72px;
    top: 39vw;
    right: -20px;
    left: auto;
    transform: unset;
  }

  /* even SP: 奇数の左右逆 — 画像は右寄せ、カードは左寄せ */
  .feature__item--even .feature__img {
    margin-left: 5%;
    width: 95%;
  }

  .feature__item--even .feature__card {
    margin-left: 0;
    width: 95%;
  }

  .feature__item--even .feature__num {
    left: -20px;
    right: auto;
    top: 39vw;
    font-size: 72px;
    transform: unset;
  }

  .feature__card-title {
    font-size: 18px;
  }
}



/*-------------------------------------
concern
-------------------------------------*/

.concern {
  position: relative;
  background: linear-gradient(120.82deg, #F6F4EA 0%, #F7F4EC 100%);
  min-height: 205px;
}

.concern__band {
  position: absolute;
  top: -95px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100vw / 1200 * 960), 960px);
  height: 240px;
  background: var(--brain-dock-color-bg-dark);
  overflow: hidden;
}

.concern__label {
  position: absolute;
  top: 33px;
  left: calc(50% + 21px);
  transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

/* グループ：声 + 括弧 */
.concern__quote {
  position: absolute;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.concern__quote--1 {
  left: 30px;
  top: 80px;
}

.concern__quote--2 {
  right: 30px;
  bottom: 56px;
}

.concern__bracket {
  font-family: var(--brain-dock-font-mincho);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.concern__voice {
  font-family: var(--brain-dock-font-mincho);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transform: translateY(-5px);
}

.concern__illust {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 242px;
}

@media screen and (max-width: 1199px) {
  .concern {
    min-height: 300px;
  }
  .concern__band {
    height: 350px;
  }
  .concern__quote--2 {
    bottom: 170px;
  }
  .concern__illust {
    width: 220px;
  }
}

@media screen and (max-width: 767px) {
  .concern {
    min-height: 140px;
  }

  .concern__band {
    width: calc(100% - 32px);
    max-width: 400px;
    height: 232px;
    top: -132px;
    left: 50%;
    transform: translateX(-50%);
  }

  .concern__label {
    top: 20px;
    left: calc(50% + 8px);
    transform: translateX(-50%);
  }

  .concern__quote {
    gap: 8px;
  }

  .concern__quote--1 {
    left: 0;
    right: auto;
    top: 43px;
    bottom: auto;
  }

  .concern__quote--2 {
    right: 0;
    left: auto;
    top: 84px;
    bottom: auto;
  }

  .concern__bracket {
    font-size: 33px;
  }

  .concern__illust {
    width: 139px;
  }

  .concern__voice {
    font-size: min(calc(100vw / 375 * 16), 16px);
  }
}



/*-------------------------------------
reason
-------------------------------------*/

.reason {
  position: relative;
  background: linear-gradient(99.95deg, #F6F4EA 0%, #F7F4EC 100%);
  padding: 32px 0 88px;
  z-index: 1;
  overflow: hidden;
}
.reason::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 811px;
  max-width: 90%;
  height: auto;
  aspect-ratio: 811 / 426;
  background-image: url(../img/brain-dock-lp/reason_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
}

.reason__inner {
  position: relative;
  z-index: 1;
}

.reason__body {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
}

.reason__block:not(:first-child) {
  margin-top: 1.6em;
}

.reason__text {
  font-size: min(calc(100vw / 900 * 16), 16px);
  line-height: 1.6;
  color: var(--brain-dock-color-text);
  text-align: center;
}

.reason__text:not(:first-child) {
  margin-top: 28px;
}

.reason__bold {
  font-weight: 700;
  color: var(--brain-dock-color-bg-main);
}

.reason__medium {
  font-weight: 500;
}

.reason__mark {
  background-color: rgba(226, 132, 35, 0.15);
}

.reason__gray {
  color: #5a5a5a;
}

@media screen and (max-width: 767px) {
  .reason {
    padding: 17px 0 40px;
    background-image: linear-gradient(92.19deg, #F6F4EA 0%, #F7F4EC 100%);
  }
  .reason__body {
    margin-top: 35px;
  }
  .reason__block:not(:first-child) {
    margin-top: 28px;
  }
  .reason__text {
    text-align: left;
    font-size: 16px;
  }
}

@media screen and (max-width: 499px) {
  .reason::before {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 750 / 852;
    background-image: url(../img/brain-dock-lp/reason_bg_sp.webp);
  }
}



/*-------------------------------------
flow
-------------------------------------*/

.flow {
  background: #fff;
  padding: 64px 0;
}

.flow__body {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.flow__item {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  position: relative;
}
.flow__item:not(:first-child)::before {
  position: absolute;
  top: -41px;
  left: 18%;
  content: "";
  width: 17px;
  height: auto;
  aspect-ratio: 17 / 21;
  background-image: url(../img/brain-dock-lp/flow_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.flow__img {
  width: 37.5%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
  overflow: hidden;
}

.flow__img img {
  width: 100%;
}

.flow__content {
  flex: 1;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  isolation: isolate;
  padding-bottom: 8px;
}

.flow__label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 0 32px;
  margin-bottom: -8px;
  white-space: nowrap;
  line-height: 1;
}

.flow__step {
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--brain-dock-color-bg-main);
  font-weight: 500;
}

.flow__title {
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--brain-dock-color-bg-main);
  font-weight: 500;
}

.flow__box {
  flex: 1;
  width: 100%;
  border: 1px solid rgba(42, 84, 117, 0.5);
  border-radius: 2px;
  padding: 16px min(calc(100vw / 1000 * 40), 40px);
  position: relative;
  z-index: 1;
  margin-bottom: -8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.flow__box--note {
  padding-bottom: 24px;
}

.flow__notes {
  width: 100%;
}

.flow__note {
  font-size: 12px;
  color: #828282;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.flow__caption {
  font-size: 14px;
  line-height: 1.6;
}

.flow__payment {
  background: #f3f6f8;
  border-radius: 4px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.flow__payment img {
  height: 32px;
  width: auto;
}

@media screen and (max-width: 850px) {
  .flow__payment {
    padding-inline: min(calc(100vw / 850 * 90), 90px);
  }
}

@media screen and (max-width: 767px) {
  .flow {
    padding: 40px 0;
  }

  .flow__body {
    margin-top: 32px;
  }

  .flow__item {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .flow__item:not(:first-child)::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .flow__img {
    width: 100%;
    align-self: auto;
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .flow__img--portrait {
    aspect-ratio: unset;
    height: 150px;
  }

  .flow__img--portrait img {
    width: 80px;
  }

  .flow__img--fixed {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .flow__content {
    margin-top: 21px;
    align-self: auto;
    padding-bottom: 0;
  }

  .flow__label {
    padding: 0 min(calc(100vw / 375 * 12), 12px);
  }

  .flow__step {
    font-size: min(calc(100vw / 375 * 13), 13px);
  }

  .flow__title {
    font-size: min(calc(100vw / 375 * 16), 16px);
  }

  .flow__box {
    padding: 24px 16px 16px;
    margin-bottom: 0;
  }

  .flow__box--note {
    padding-bottom: 16px;
  }

  .flow__text {
    font-size: 14px;
  }

  .flow__caption {
    font-size: 12px;
  }

  .flow__payment {
    padding: 10px 16px;
  }

  .flow__payment img {
    height: 24px;
  }
}


/*-------------------------------------
attention
-------------------------------------*/

.attention {
  background: #f3f6f8;
  padding: 64px 0;
}

.attention__title {
  font-family: var(--brain-dock-font-mincho);
  font-size: 30px;
  font-weight: 500;
  color: var(--brain-dock-color-bg-main);
  letter-spacing: 0.6px;
  line-height: 1;
  text-align: center;
  margin: 0;
}

.attention__body {
  margin-top: 48px;
}

.attention__body p {
  font-size: 16px;
  color: var(--brain-dock-color-text);
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .attention {
    padding: 40px 0;
  }

  .attention__title {
    font-size: min(calc(100vw / 375 * 20), 20px);
  }

  .attention__body {
    margin-top: 32px;
  }

  .attention__body p {
    font-size: 15px;
  }
}



/*-------------------------------------
plan
-------------------------------------*/

.plan {
  padding-block: 64px;
  background: linear-gradient(
    to bottom,
    #FFFFFF 0%,
    #EAEFF6 50%,
    #D2DDE6 100%
  );
}

.plan__body {
  margin-top: 53px;
}

.plan__body-scroll {
  overflow-x: auto;
  scrollbar-width: none;
}

.plan__body-scroll::-webkit-scrollbar {
  display: none;
}

.plan-scroll-hint {
  display: none;
}

@media screen and (max-width: 767px) {
  .plan__body-scroll {
    position: relative;
  }

  .plan-scroll-hint {
    display: block;
    position: absolute;
    top: 14px;
    left: 38px;
    width: 184px;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.8s ease;
  }

  .plan-scroll-hint.is-fadeout {
    opacity: 0;
  }
}

.plan-table-wrap {
  border-radius: 2px;
  overflow: hidden;
  width: 100%;
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: 24px;
}

.plan-table {
  width: 100%;
  border-collapse: collapse;
}

.plan-table th,
.plan-table td {
  border: 0.5px solid #2A5475;
  padding: 10px min(calc(100vw / 1000 * 12), 12px);
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  vertical-align: middle;
  color: var(--brain-dock-color-text);
}

.plan-table__col--item {
  width: 110px;
}

.plan-table__col--desc {
  width: 220px;
}

.plan-table th {
  background: var(--brain-dock-color-bg-main);
  color: #fff;
  font-weight: 500;
  font-size: min(calc(100vw / 1000 * 14), 14px);
  border-color: var(--brain-dock-color-bg-main);
}
.plan-table th:first-child {
  width: 214px;
}

.plan-table__row--time {
  background: #f3f6f8;
}

.plan-table__time-num {
  font-size: 14px;
}

.plan-table__time-unit {
  font-size: 12px;
}

.plan-table__row--price {
  background: #c4d4e0;
  height: 48px;
}

.plan-table__row--price td {
  font-weight: 500;
  font-size: 18px;
  text-align: right;
}

.plan-table__row--price td:first-child {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

.plan-table__cell-sp {
  display: none;
}

.plan-table__cell--merged {
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
}

.plan-table__anchor {
  color: var(--brain-dock-color-bg-main);
  text-decoration: underline;
}

.plan-table__anchor:hover {
  text-decoration: none;
}

/* option */
.option {
  background: #fff;
  padding: 64px 0;
}

.option__title {
  font-family: var(--brain-dock-font-mincho);
  font-size: 30px;
  font-weight: 500;
  color: var(--brain-dock-color-bg-main);
  letter-spacing: 0.6px;
  line-height: 1;
  text-align: center;
  margin: 0;
}

.option__list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.option-item {
  border: 1px solid rgba(42, 84, 117, 0.5);
  border-radius: 2px;
}

.option-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px 40px;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  transition: padding-top 0.3s;
}

.option-item.is-active .option-item__header {
  padding-top: 48px;
  padding-bottom: 16px;
}

.option-item__name {
  font-size: 20px;
  font-weight: 500;
  color: #717071;
  letter-spacing: 0.02em;
  line-height: 1;
  padding-left: 4px;
}

.option-item__icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.option-item__icon::before,
.option-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--brain-dock-color-bg-main);
  transition: transform 0.3s, opacity 0.3s;
}

.option-item__icon::before {
  width: 18px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.option-item__icon::after {
  width: 2px;
  height: 18px;
  transform: translate(-50%, -50%);
}

.option-item.is-active .option-item__icon::after {
  opacity: 0;
}

.option-item__body {
  padding: 16px 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.option-item__body::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: calc(100% - 80px);
  height: 0.5px;
  background-color: #c2bdba;
}

.js-option-content {
  display: none;
}

.option-item__cost {
  display: inline-flex;
  align-items: center;
  background: var(--brain-dock-color-bg-main);
  color: #fff;
  gap: 2px;
  padding: 2px 8px;
  white-space: nowrap;
}

.option-item__cost-label {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.option-item__cost-price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
}

.option-item__cost-num {
  font-size: 18px;
  letter-spacing: 0.02em;
}

.option-item__cost-unit {
  font-size: 12px;
  letter-spacing: 0.02em;
}

.option-item__desc {
  margin-top: 8px;
}

.option-item__desc p {
  font-size: 15px;
  color: var(--brain-dock-color-text);
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0;
}

.option-item__note {
  margin-top: 8px !important;
  font-size: 13px !important;
  color: #666 !important;
}

.option-item__link-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.option-item__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid var(--brain-dock-color-bg-main);
  border-radius: 100px;
  padding: 10px 32px;
  color: var(--brain-dock-color-bg-main);
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .plan {
    padding-block: 40px;
  }
  .plan__body {
    margin-top: 36px;
  }
  .option {
    padding: 40px 0;
  }

  .option__title {
    font-size: 22px;
  }

  .option__list {
    margin-top: 32px;
    gap: 12px;
  }

  .option-item__header {
    padding: 16px;
  }
  .option-item.is-active .option-item__header {
    padding-top: 16px;
  }

  .option-item__name {
    font-size: 15px;
  }

  .option-item__body {
    padding: 16px;
  }
  .option-item__body::before {
    width: calc(100% - 32px);
  }

  .option-item__cost-num {
    font-size: 16px;
  }

  .option-item__desc p {
    font-size: 14px;
  }

  .option-item__link {
    font-size: 14px;
    padding: 8px 24px;
  }

  .plan-table-wrap {
    width: 1474px;
    padding-inline: 0;
    overflow: visible;
  }
  .plan-table th,
  .plan-table td {
    font-size: 14px;
    padding-inline: 12px;
  }

  .plan-table__cell-pc {
    display: none;
  }
  .plan-table__cell-sp {
    display: table-cell;
  }

  .plan-table th:first-child {
    width: 154px;
  }
  .plan-table th:not(:first-child) {
    width: 220px;
  }
  .plan-table tbody tr:not(.plan-table__row--time):not(.plan-table__row--price) > td:first-child,
  .plan-table__row--time > td:nth-child(2),
  .plan-table__row--price > td:nth-child(2) {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .plan-table thead th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--brain-dock-color-bg-main);
    transform: translateX(-1px);
  }
  .plan-table tbody tr:not(.plan-table__row--time):not(.plan-table__row--price) > td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #fff;
  }
  .plan-table__row--time > td:nth-child(2) {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #f3f6f8;
  }
  .plan-table__row--price > td:nth-child(2) {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #c4d4e0;
    text-align: center;
  }

  .plan-table thead th:first-child,
  .plan-table tbody tr:not(.plan-table__row--time):not(.plan-table__row--price) > td:first-child,
  .plan-table__row--time > td:nth-child(2),
  .plan-table__row--price > td:nth-child(2) {
    box-shadow: inset -1px 0 0 #2A5475;
  }

  .plan-table__row--time > td:nth-child(3),
  .plan-table__row--price > td:nth-child(3) {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 100'><line x1='100' y1='0' x2='0' y2='100' stroke='%232A5475' stroke-width='1' vector-effect='non-scaling-stroke'/></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .plan-table__row--time > td:nth-child(3) {
    background-color: #f3f6f8;
  }
  .plan-table__row--price > td:nth-child(3) {
    background-color: #c4d4e0;
  }

  .plan-table__cell--merged {
    text-align: left;
  }
}

.plan__cta {
  margin-top: 48px;
}

/* plan__price */
.plan__price {
  margin-top: 58px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.plan-price-item {
  background: #fff;
  border-radius: 2px;
  padding: 45px 40px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "name price"
    "body body";
  column-gap: 32px;
  row-gap: 16px;
  position: relative;
}

.plan-price-item__name {
  text-align: left;
  grid-area: name;
  font-size: 20px;
  font-weight: 500;
  color: #717071;
  letter-spacing: 0.02em;
  line-height: 1;
  align-self: center;
  padding-left: 4px;
  margin: 0;
}

.plan-price-item__name-sub {
  font-size: 1em;
  display: inline-block;
}

.plan-price-item__price-badge {
  grid-area: price;
  display: flex;
  align-items: center;
  border: 0.5px solid #406a7b;
  align-self: center;
  flex-shrink: 0;
}

.plan-price-item__price-label {
  background: #406a7b;
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  padding: 2px 16px;
  align-self: stretch;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.plan-price-item__price-amount {
  padding: 8px 8px 7px 12px;
  font-size: 16px;
  color: var(--brain-dock-color-text);
  white-space: nowrap;
  margin: 0;
}

.plan-price-item__price-num {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
}

.plan-price-item__price-tax {
  margin-left: 4px;
  font-size: 14px;
}

.plan-price-item__body {
  grid-area: body;
  padding-top: 16px;
  border-top: 0.5px solid #c2bdba;
  display: flex;
  flex-direction: column;
}

.plan-price-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plan-price-item__tag {
  background: var(--brain-dock-color-bg-main);
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  padding: 2px 8px;
  white-space: nowrap;
}

.plan-price-item__desc,
.plan-price-item__desc p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--brain-dock-color-text);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.plan-price-item__desc p:not(:first-child) {
  margin-top: 8px;
}

.plan-price-item__recommend {
  margin-top: 16px;
  background: #f3f6f8;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.plan-price-item__recommend-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--brain-dock-color-bg-main);
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0;
}

.plan-price-item__recommend-list {
  font-size: 14px;
  color: var(--brain-dock-color-text);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.plan-price-item__recommend-list li {
  margin: 0;
  position: relative;
  padding-left: 21px;
}
.plan-price-item__recommend-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 3px;
}

.plan-price-highlight-wrap {
  position: relative;
}

.plan-price-item__medal {
  position: absolute;
  left: -80px;
  top: -8px;
  width: 111px;
  height: 111px;
  border-radius: 50%;
  background: linear-gradient(225deg, #143543 0%, #186484 50%, #143543 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--brain-dock-font-mincho);
  font-size: 13px;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0;
}

@media screen and (max-width: 1199px) {
  .plan-price-item:nth-child(3) {
    margin-top: 84px;
  }
  .plan-price-item__medal {
    left: -24px;
    top: -80px;
  }
}

@media screen and (max-width: 767px) {
  .plan__price {
    margin-top: 40px;
    padding-left: 0;
    gap: 24px;
  }

  .plan-price-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px 16px;
  }
  .plan-price-item:nth-child(3) {
    margin-top: 24px;
    padding-top: 0;
  }

  .plan-price-item__name {
    order: 1;
    font-size: 18px;
    align-self: auto;
    padding-left: 0;
  }
  .plan-price-item:nth-child(3) .plan-price-item__name {
    margin-top: -14px;
  }

  .plan-price-item__name-sub {
    font-size: 0.667em;
    line-height: 1.2;
  }

  .plan-price-item__body {
    order: 2;
    padding-top: 14px;
  }

  .plan-price-item__price-badge {
    order: 3;
    width: 100%;
    align-self: auto;
  }

  .plan-price-item__price-label {
    padding: 2px 12px;
  }

  .plan-price-item__medal {
    transform: translateY(-24px);
    position: relative;
    left: auto;
    top: auto;
    width: fit-content;
    margin-inline: auto;
    height: 35px;
    border-radius: 100px;
    padding: 0 min(calc(100vw / 350 * 46), 46px);
    margin-bottom: -12px;
    z-index: 2;
    white-space: nowrap;
  }
  .plan-price-item__medal::before {
    position: absolute;
    bottom: 10px;
    left: 33px;
    content: "";
    width: 1px;
    height: 13px;
    background: #fff;
    border-radius: 9px;
    transform: rotate(-28deg);
  }
  .plan-price-item__medal::after {
    position: absolute;
    bottom: 10px;
    right: 33px;
    content: "";
    width: 1px;
    height: 13px;
    background: #fff;
    border-radius: 9px;
    transform: rotate(28deg);
  }

  .plan-price-item__medal br {
    display: none;
  }

}

@media screen and (max-width: 374px) {
  .plan-price-item__price-badge {
    flex-direction: column;
  }
  .plan-price-item__price-label {
    padding-block: 4px;
    justify-content: center;
  }
}

/* faq */
.faq {
  background: #fff;
  padding: 64px 0 146px;
}

.faq__title {
  font-family: var(--brain-dock-font-mincho);
  font-size: 30px;
  font-weight: 500;
  color: var(--brain-dock-color-bg-main);
  letter-spacing: 0.6px;
  line-height: 1;
  text-align: center;
  margin: 0;
}

.faq__list {
  margin-top: 48px;
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item__question {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: #f3f6f8;
  border-radius: 2px;
  min-height: 64px;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  transition: border-radius 0s;
}

.faq-item.is-active .faq-item__question {
  border-radius: 2px 2px 0 0;
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--brain-dock-color-bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--brain-dock-color-bg-main);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item__question-text {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  color: #717071;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.faq-item__toggle {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--brain-dock-color-bg-main);
  transition: transform 0.3s, opacity 0.3s;
}

.faq-item__toggle::before {
  width: 16px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-item__toggle::after {
  width: 1.5px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.faq-item.is-active .faq-item__toggle::after {
  opacity: 0;
}

.faq-item__answer {
  background: #fff;
  border-radius: 0 0 2px 2px;
}

.faq-item__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
}

.js-faq-content {
  display: none;
}

.faq-item__answer-text {
  flex: 1;
  font-size: 16px;
  color: var(--brain-dock-color-text);
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 40px 0;
  }

  .faq__title {
    font-size: 22px;
  }

  .faq__list {
    margin-top: 32px;
    gap: 12px;
  }

  .faq-item__question {
    min-height: auto;
    padding: 14px 16px;
  }

  .faq-item__icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .faq-item__question-text {
    font-size: 15px;
  }

  .faq-item__answer-inner {
    padding: 14px 16px;
  }

  .faq-item__answer-text {
    font-size: 14px;
  }
}

/* 固定追従CTA */
body:has(.lp-brain-dock) .cv-button.is-web {
  border-radius: 999px;
  background: linear-gradient(
    225deg,
    #AF671C 0%,
    #CD7922 50%,
    #AF671C 100%
  );
  height: 44px;
}
body:has(.lp-brain-dock) .cv-button.is-line {
  border-radius: 999px;
}
body:has(.lp-brain-dock) .cv-button.is-tel .cv-button__tel-row::before {
  background-image: url(../img/brain-dock-lp/cta_tel.svg);
}
body:has(.lp-brain-dock) .cv-button.is-tel .cv-button__hours {
  text-wrap-mode: nowrap;
  font-size: 14px;
  letter-spacing: -0.02em;
}
body:has(.lp-brain-dock) .cv-button__hours-row {
  display: inline-block;
  font-size: 10px;
}
@media screen and (max-width: 767px) {
  body:has(.lp-brain-dock) .cv-button.is-web {
    height: auto;
  }
  body:has(.lp-brain-dock) .cv-button.is-tel {
    border-radius: 999px;
  }
  body:has(.lp-brain-dock) .cv-button.is-tel .cv-button__tel-row {
    font-size: min(calc(100vw / 375 * 11), 11px);
  }
}