@charset "UTF-8";

/* DIN Alternate bold */
@font-face {
  font-family: "DIN Alternate";
  src: url(lp/asset/font/din-alternate-bold.ttf) format("opentype");
}

html {
  font-size: clamp(0px, 2vw, 15px);
}

/* font
--------------------- */

/* color
--------------------- */
/* layout
--------------------- */
:root {
  --color-main: #000;
  --color-sub: #fff;
  --color-annotation: #292929;
  --font-size-content: 1.85rem;
  --font-weight-content: 300;
  --font-size-annotation: 1.2rem;
  --font-weight-annotation: 300;
  --ff-koburina-w0: "Koburina Gothic W0 JIS2004", "こぶりなゴシック W0 JIS2004", sans-serif !important;
  --ff-koburina-w1: "Koburina Gothic W1 JIS2004", "こぶりなゴシック W1 JIS2004", sans-serif !important;
  --ff-koburina-w3: "Koburina Gothic W3 JIS2004", "こぶりなゴシック W3 JIS2004", sans-serif !important;
  --ff-koburina-w6: "Koburina Gothic W6 JIS2004", "こぶりなゴシック W6 JIS2004", sans-serif !important;
  --ff-koburina-w9: "Koburina Gothic W9 JIS2004", "こぶりなゴシック W9 JIS2004", sans-serif !important;
}

.body {
  margin-inline: auto;
  font-family: var(--ff-koburina-w1);
  font-weight: 100;
  width: min(50rem, 100%);
  color: #333;
  background: #000;
}

img {
  width: 100%;
  vertical-align: middle;
  object-fit: cover;
  object-position: top;
  height: auto;
}

a {
  transition: .3s;
}

a:hover {
  transform: scale(1.05);
  transition: .3s;
}

@-webkit-keyframes scaleChange {
  0% {
    scale: 1.05;
  }

  50% {
    scale: 0.95;
  }

  100% {
    scale: 1.05;
  }
}

@keyframes scaleChange {
  0% {
    scale: 1.05;
  }

  50% {
    scale: 0.95;
  }

  100% {
    scale: 1.05;
  }
}

/* ボタン */
.cvBtn {
  display: block;
  margin-inline: auto;
  width: 44rem;
  -webkit-animation: scaleChange 2s infinite;
  animation: scaleChange 2s infinite;
  -webkit-backdrop-filter: unset;
  backdrop-filter: unset;
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}

/* 注釈エリア */
*[data-ahead-double] {
  position: relative;
  padding-left: 2em;
}

*[data-ahead-double]::before {
  position: absolute;
  left: 0;
  top: 0;
  content: attr(data-ahead-double);
  display: inline-block;
  color: inherit;
  font: inherit;
}

*[data-ahead-single] {
  position: relative;
  padding-left: 1.3em;
}

*[data-ahead-single]::before {
  position: absolute;
  left: 0;
  top: 0;
  content: attr(data-ahead-single);
  display: inline-block;
  color: inherit;
  font: inherit;
}

/* フローティングエリア */
.floating {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding-block: 2rem;
  -webkit-backdrop-filter: blur(5rem);
  backdrop-filter: blur(5rem);
  z-index: 999;
}

@media (min-width: 750px) {
  .floating {
    display: none;
  }
}

.floating img {
  max-height: 10rem;
  object-fit: contain
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.67% 3%;
  background: #fff;
}

.header__logo {
  flex-basis: 15rem;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5%;
}

.header__navItem:first-of-type {
  width: 12.5rem;
}

.header__navItem:nth-of-type(2) {
  width: 18rem;
}

.fv {
  position: relative;
}

.fv__copy {
  margin-bottom: 3%;
}









.fv__contents {
  padding: 5% 0 0;
  background: #222A37;
}

.fv__atn {
  margin-inline: auto;
  width: 89.4%;
  padding: 3% 0;
  font-size: 1.25rem;
  color: #fff;
}

.fv__atnItem + .fv__atnItem {
  margin-top: 1rem;
}

/* achievements section */
.achievements {
  background: linear-gradient(309deg, #1A4560 1.87%, #2A6E9D 58.19%, #1A4560 92.57%);
  position: relative;
}

.achievements::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  margin-top: -1px;
  aspect-ratio: 10/1;
  background: #222A37;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}



.achievements__wrap {
  position: absolute;
  transform: translateX(-50%);
  top: 61rem;
  left: 50%;
  width: 100%;
}

.achievements__cases {
  margin: 0 6%;
  padding: 5%;
  position: relative;
  background: #fff;
}

.achievements__case__ttl {
  text-align: center;
  margin-bottom: 3%;
  position: relative;
}

.achievements__case__ttl-img {
  width: 15rem;
}

.achievements__case__arrow {
  width: 90%;
  position: absolute;
  top: 10rem;
  left: 1rem;
}

.achievements__case__figure {
  width: 100%;
  margin-top: -6%;
  padding-bottom: 6%;
}

.achievements__case__count {
  width: 100%;
  margin-bottom: 6%;
}

.achievements__case__annotation {
  text-align: center;
  font-size: var(--font-size-annotation);
  color: #292929;
}

/* medical section */
.medical {
  background: #fff;
}

.medical {
  background-image: url(/lp/asset/image/2025_hige_reconstruct/medical/bg_medical.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.yho .medical__wrap {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.medical__txt {
  padding: 5% 6%;
  font-size: var(--font-size-content);
}

.medical__hikaku__header {
  padding: 0 6% 6%;
  text-align: center;
  color: #1B7ABA;
  font-style: normal;
  font-family: var(--ff-koburina-w6);
  font-weight: 600;
  line-height: 1.2;
}

.medical__hikaku__header__txt1 {
  font-size: 4rem;
}

.medical__hikaku__header__txt2 {
  font-size: 6.8rem;
}

.medical__hikaku__header__txt2 small {
  font-size: 4rem;
}

.medical__hikaku__figure {
  padding: 0 6%;
}

.medical__hikaku__anotation {
  padding: 1% 6% 6% 0;
  text-align: right;
  font-size: 1.7rem;
  color: var(--color-annotation);
  font-weight: var(--font-weight-annotation);
}

/* machine section */
.machine {
  background-image: url(/lp/asset/image/2025_hige_reconstruct/vissel/machine/bg_machine.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.machine__machine-info {
  padding: 3% 6% 0;
  text-align: center;
}

.machine__machine-info__subttl {
  font-size: 2.3rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  letter-spacing: -1.4px;
  color: #333;
}

.machine__machine-info__ttl {
  padding-top: 1%;
}

.machine__machine-info__img {
  width: 60%;
  display: block;
  margin: 0 auto;
}

.machine__points {
  padding: 7% 5% 5%;
}

.machine__point-item {
  margin-bottom: 8%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.machine__catch{
  margin-top: -4.6rem;
  position: relative;
  z-index: 2;
}

.point-item__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1%;
}

.point-item__header span {
  flex: 0 15rem;
  text-align: center;
  font-family: "DIN 2014";
  font-size: 2.6rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #222A37;
}

.point-item__header::before,
.point-item__header::after {
  content: "";
  display: block;
  flex: 1;
  width: 100%;
  height: 1px;
  border-bottom: 2px solid #222A37;
}

.point-item__ttl {
  text-align: center;
  font-size: 4rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  line-height: 1.3;
}

.point-item__ttl__txt1 {
  color: #1B7ABA;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5%;
  font-size: 4rem;
}

.point-item__ttl__txt1 strong {
  font-size: 6rem;
  font-family: "DIN 2014", sans-serif;
  font-weight: 400;
  line-height: 0;
}
.point-item__ttl__txt1 small {
  font-size: 3rem;
}
.point-item__ttl__txt1 small.small--black {
  color: #292929;
}
:is(.point-item__ttl__txt1, .point-item__ttl__txt2) small.small--red {
  color: #B4003F;
}

.point-item__ttl__txt2 {
  font-size: 3.33333333rem;
  color: #292929;
}

.point-item__ttl__txt2--small{
  font-size:2.6rem;
}

.point-item__txt {
  font-size: var(--font-size-content);
  font-weight: var(--font-weight-content);
  letter-spacing: -0.02rem;
}

.point-item__txt strong {
  background-color: #FFED89;
}

.point-item__annotation{
  font-size: 1.46666667rem;
}

























/* reason section */

.reason {
  background-image: url(/lp/asset/image/2025_hige_reconstruct/reason/reason_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
    position: relative;
    margin-top: -4.6rem;
    z-index: 1;
  padding-top: calc(4.86666667rem + 4.6rem)
}
.reason--zenshin-sports{
  padding-top: 4.86666667rem;
}

.reason__header__subttl {
  padding: 1% 4%;
  margin: 0 auto;
  width: fit-content;
  background-color: #1B7ABA;
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
}

.reason__header__subttl small {
  font-size: 2.6rem;
}

.reason__header__ttl {
  font-size: 7.5rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #1B7ABA;
  width: fit-content;
  margin: 0 auto;
}

.reason__contents {
  display: flex;
  flex-direction: column;
  gap: 10%;
  padding-bottom: 12%;
}

.reason__content-item {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}

.reason__content-item__ttl {
  display: flex;
  flex-direction: row;
  font-size: 4.2rem;
  position: relative;
}

.reason__content-item__ttl:first-of-type {
  padding-top: 6rem;
}

.reason__content-item:nth-of-type(even) .reason__content-item__ttl {
  flex-direction: row-reverse;
}

.reason__content-item__ttl__txt1-wrap {
  position: absolute;
  bottom: 7.3rem;
  left: 2rem;
  line-height: 4.5rem;
  background: #FFF265;
  filter: drop-shadow(2px 2px 0 #FFF);
  z-index: 1;
}

.reason__content-item__ttl__txt1-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 99.9%;
  left: 20%;
  width: 1rem;
  height: 0.8rem;
  background-color: #FFF265;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  filter: drop-shadow(2px 2px 0 #FFF);
}

.reason__content-item__ttl__txt1 {
  position: relative;
  color: #1B7ABA;
  padding: 0.2rem 1.2rem 0.15rem;
  font-size: 3.2rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
}

.reason__content-item__ttl__txt1 small {
  font-size: 2.6rem;
}


.reason__content-item__ttl__txt2 {
  color: #fff;
  background: linear-gradient(305deg, #286792 -0.44%, #222A37 90.45%);
  font-size: 3.8rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  padding: 1.2rem 6rem 1.2rem 4.5rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 2.5rem) 100%, 0 100%);
  letter-spacing: 2px;
}

.reason__content-item__ttl__txt2 small {
  font-size: 2.6rem;
}

.reason__content-item:nth-of-type(even) .reason__content-item__ttl__txt2 {
  padding: 1.2rem 3.5rem 1.2rem 7rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 2.5rem 100%);
}

.reason__content-item__figure-wrap {
  position: relative;
  padding: 0 6%;
}

.reason__content-item__mudage {
  position: absolute;
  width: 8.5rem;
  top: -5.6rem;
  right: 4.7rem;
}

.reason__content-item__txt {
  padding: 0 6%;
  font-size: var(--font-size-content);
  font-weight: var(--font-weight-content);
}

.reason__content-item__txt strong {
  background-color: #FFED89;
}

.reason__content-item__piture-prefix {
  padding-bottom: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--font-size-content);
  font-weight: var(--font-weight-content);
}

.reason__content-item__piture-prefix span {
  padding: 0 1%;
}

/* no-add-fee section */

.no-add-fee{
  position: relative;
  z-index: 2;
}
.no-add-fee__ttl {
  margin-top: -7%;
}

.no-add-fee__content-wrap {
  background: linear-gradient(305deg, #286792 -0.44%, #222A37 90.45%);
  padding: 25px 0;
}

.no-add-fee__content-wrap__prefix {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.no-add-fee__content-wrap__prefix::before {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  background-color: #E1D0B6;
}

.no-add-fee__content-wrap__prefix::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #E1D0B6;
}

.no-add-fee__content-wrap__suffix {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.no-add-fee__content-wrap__suffix::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #E1D0B6;
}

.no-add-fee__content-wrap__suffix::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  background-color: #E1D0B6;
}

.no-add-fee__content__txt {
  padding: 4% 0;
  text-align: center;
  font-size: var(--font-size-content);
  font-weight: var(--font-weight-content);
  color: #fff;
}

.no-add-fee__content__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 2.2rem 2rem;
}

.no-add-fee__content__list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: calc((100% - 2.1rem * 2) / 3);
  aspect-ratio: 1/1;
  padding: 1.5rem 0 1rem;
  gap: 2%;
}

.no-add-fee__content__list__item__img {
  flex: 1;
  width: 7.2rem;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.no-add-fee__content__list__item__ttl {
  flex: 0 0 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #222A37;
  text-align: center;
}

.no-add-fee__content__list__item__ttl small {
  font-size: 1rem;
}

.no-add-fee__content__list__item__ttl sup {
  vertical-align: super;
  font-size: 1rem;
}

/* cost-performance section */

.cost-performance {
  background-color: #F2F2F2;
  position: relative;
}

.cost-performance__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.cost-performance__ttl {
  padding: 5rem 0 10rem;
  background: linear-gradient(237deg, #222A37 0.49%, #286792 105.14%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.cost-performance__ttl__txt1 {
  padding: 1% 4%;
  margin: 0 auto;
  width: fit-content;
  background-color: #fff;
  color: #004271;
  font-size: 3rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  letter-spacing: 0.2rem;
}

.cost-performance__ttl__txt1 small {
  font-size: 2.4rem;
}

.cost-performance__ttl__txt2 {
  font-size: 5.6rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #fff;
  width: fit-content;
  margin: 0 auto;
}

.cost-performance__ttl__txt2 small {
  font-size: 4.3rem;
  padding-left: 0.5rem;
}

.cost-performance__bg__deco1 {
  display: block;
  height: 26rem;
  width: 100%;
  background-color: #C4C4C4;
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 70%);
  margin-bottom: 13rem;
}

.cost-performance__bg__deco2 {
  position: relative;
  z-index: 1;
  display: block;
  height: 31rem;
  width: 100%;
  background: linear-gradient(122deg, #222A37 5.58%, #286792 115.37%);
  clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
}

.cost-performance__bg__deco3 {
  display: block;
  height: 31rem;
  width: 100%;
  background-color: #C4C4C4;
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 70%);
  margin-top: -10rem;
}

.cost-performance__contents {
  position: relative;
  z-index: 2;
  padding-top: 19rem;
}

.cost-performance__contents__face-img {
  padding: 0 6rem;
}

.cost-performance__face-parts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  padding: 0 2.4rem 2rem;
  margin-top: -3.7rem;
}

.cost-performance__face-part {
  color: #FFF;
  background: linear-gradient(153deg, #64B4EB -151%, #286792 191.42%);
  text-align: center;
  font-size: 2.2rem;
  padding: 0.5rem 0;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
}

.cost-performance__plan1 {
  background: linear-gradient(172deg, #D0B080 -39.32%, #BE9D6A 39.03%, #987E58 115.22%);
  color: #fff;
  padding: 4% 0 3%;
  margin: 0 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4%;
}

.cost-performance__plan1__txt1 {
  font-size: 3.76rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #fff;
  text-align: center;
  line-height: 1.1;
}

.cost-performance__plan1__txt2 {
  font-size: 2.4rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #fff;
  text-align: center;
  border: solid 2px #fff;
  border-radius: 60px;
  padding: 3px 12px;
}

.cost-performance__plan1__wrap.right {
  padding: 2% 3% 1.5%;
  border: 0.2rem solid #fff;
  display: flex;
  align-items: flex-end;
  font-size: 3.76rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  line-height: 1;
  gap: 0.3rem;
}

.cost-performance__plan1__wrap.right strong {
  font-size: 5.8rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  line-height: 0.8;
  padding-bottom: 0.2rem;
}







.cost-performance__plan2 {
  background: #292929;
  color: #fff;
  font-size: 1.8rem;
  padding: 2% 0;
  margin: 0 2.4rem;
  display: flex;
  justify-content: center;
  gap: 2%;
  line-height: 1.3;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
}

.cost-performance__plan2__img {
  margin-top: 0.2rem;
  height: 1em;
  width: auto;
}

.cost-performance__plan3 {
  background: #fff;
  color: #292929;
  padding: 5%;
  margin: 0 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4%;
}

.cost-performance__plan3__img {
  width: 85%;
  display: block;
  margin: 0 auto;
}



.cost-performance__plan3__cta__wrap {
  width: 72.5%;
  font-size: 2rem;
  font-weight: var(--font-weight-content);
  text-align: center;
}

.cost-performance__plan3__cta {
  background: linear-gradient(305deg, #222A37 -0.44%, #286792 90.45%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
  color: #fff;
  width: 100%;
  border-radius: 100rem;
  padding: 2%;
  margin-top: 3rem;
}

.cost-performance__plan3__cta::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(/lp/asset/image/2025_hige_reconstruct/no_add_fee/arrow_plan3-cta_cost-performance.webp);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  height: 25%;
  width: 5%;
}

.cost-performance__plan3__cta__txt1 {
  border-bottom: 1px solid #fff;
}

.cost-performance__plan3__cta__txt1 strong {
  font-size: 2.3rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
}

.cost-performance__annotation {
  margin: 0 2.4rem;
  padding: 3% 0 3%;
  font-size: var(--font-size-annotation);
  font-weight: var(--font-weight-annotation);
  color: #292929;
}

/* pain section */

.pain {
  background: linear-gradient(180deg, #F2F2F2 0%, #E2E2E2 100%);
  padding-top: 6rem;
  margin-top: -1px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pain__header {
  position: relative;
  margin: 0 2.4rem;
}

.pain__header::before {
  content: "";
  display: block;
  position: absolute;
  top: 6.3rem;
  left: 1.9rem;
  width: 5rem;
  aspect-ratio: 6 / 5;
  background-image: url(/lp/asset/image/2025_hige_reconstruct/pain/img_pain_ttl_prefix.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.pain__header__txt {
  font-size: 2.5rem;
  width: fit-content;
  margin: 0 auto;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #fff;
  background: linear-gradient(90deg, #3D4E6A 0%, #093253 100%);
  padding: 0.7rem 2.7rem;
  letter-spacing: 0.3rem;
}

.pain__header__img {
  padding-top: 2.2rem;
  display: block;
  width: 68%;
  margin: 0 auto;
}

.pain__header__float-mudage {
  position: absolute;
  bottom: -7.5rem;
  right: -0.5rem;
  width: 8rem;
  z-index: 10;
}

.pain__points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 2.4rem;
}

.pain__points__1 {
  background: #fff;
  margin-top: 2rem;
  padding-bottom: 3rem;
  filter: drop-shadow(8px 12px 0 #DBDDE1);
}

.c-point1__header {
  margin-top: -1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.c-point1__header__left {
  display: flex;
  align-items: center;
  padding: 1.1rem;
  width: 10rem;
  aspect-ratio: 1/1;
  background: linear-gradient(180deg, #3D4E6A 0%, #093253 100%);
  flex-shrink: 0;
}

.c-point1__header__left__num {
  flex: 1;
  align-self: flex-end;
  font-size: 4.3rem;
  font-weight: 500;
  color: #fff;
  font-family: "DIN 2014";
  line-height: 1;
}

.c-point1__header__left__img {
  flex: 1;
  align-self: flex-start;
  height: 4.7rem;
  margin: 0 auto;
  object-fit: contain;
  object-position: right;
}

.c-point1__header__right {
  flex: 1;
  align-self: flex-end;
  padding-bottom: 0.6rem;
  font-size: 3.1rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #1B7ABA;
  letter-spacing: 0.2rem;
}

.c-point1__header__right sup {
  font-size: 1rem;
}

.pain__points__2,
.pain__points__3 {
  background: #fff;
  margin-top: 1.2rem;
  margin-left: 2rem;
  padding: 1.7rem 0;
  filter: drop-shadow(8px 12px 0 #DBDDE1);
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.c-point2__left,
.c-point3__left {
  display: flex;
  align-items: center;
  padding: 1.1rem;
  margin-left: -2rem;
  width: 10rem;
  aspect-ratio: 1/1;
  background: linear-gradient(180deg, #3D4E6A 0%, #093253 100%);
  flex-shrink: 0;
}

.c-point2__left__num,
.c-point3__left__num {
  flex: 1;
  align-self: flex-end;
  font-size: 4.3rem;
  font-weight: 500;
  color: #fff;
  font-family: "DIN 2014";
  line-height: 1;
}

.c-point2__left__img,
.c-point3__left__img {
  flex: 1;
  align-self: flex-start;
  margin: 0 auto;
  object-fit: contain;
  object-position: right;
}

.c-point2__left__img {
  height: 3.8rem;
}

.c-point3__left__img {
  height: 2.8rem;
  margin-left: -0.7rem;
}

.c-point2__right,
.c-point3__right {
  flex: 1;
  padding: 0;
}

.c-point2__right__txtwrap,
.c-point3__right__txtwrap {
  display: flex;
  align-items: center;
  height: 100%;
}

.c-point2__right__txt,
.c-point3__right__txt {
  font-size: 2.3rem;
  font-weight: var(--font-weight-content);
  color: #222A37;
  line-height: 1.5;
  letter-spacing: 0.05rem
}

.c-point2__right__txt strong,
.c-point3__right__txt strong {
  font-size: 3.1rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #1B7ABA;
  letter-spacing: 0.2rem;
}

.c-point1__imgwrap {
  margin: 2rem 0;
  position: relative;
}

.c-point1__img {
  padding: 0 2rem;
  width: 100%;
  height: auto;
}

.c-point1__contents {
  padding: 0;
}

.c-point1__contents__lines {
  padding: 1.8rem 3.2rem 1.4rem;
  position: relative;
  width: fit-content;
  margin: 0 auto 2.2rem;
}

.c-point1__contents__lines::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  aspect-ratio: 2/3;
  border-left: 2px solid #292929;
  border-top: 2px solid #292929;
}

.c-point1__contents__lines::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 50%;
  aspect-ratio: 2/3;
  border-right: 2px solid #292929;
  border-bottom: 2px solid #292929;
}

.c-point1__contents__lines__txt {
  font-size: 1.9rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #1B7ABA;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1rem;
}

.c-point1__contents__txt {
  font-size: var(--font-size-content);
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 300;
}

.c-point1__contents__txt strong {
  background-color: #FFE971;
}

.c-point1__contents__anotation {
  font-size: var(--font-size-annotation);
  font-weight: var(--font-weight-annotation);
  text-align: center;
  display: block;
  color: var(--color-annotation);
}

.pain__after {
  position: relative;
  background: #fff;
  margin: 2rem 2.4rem;
  padding: 1.7rem;
  filter: drop-shadow(8px 12px 0 #DBDDE1);
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.pain__after__floatimg {
  position: absolute;
  top: -0.7rem;
  left: 3rem;
  width: 10rem;
  z-index: 2;
}

.pain__after__wrap {
  position: relative;
  z-index: 1;
  border: 0.2rem solid #1B7ABA;
}

.pain__after__header {
  padding-top: 3rem;
  font-size: 3rem;
  font-weight: 300;
  color: #292929;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.pain__after__header strong {
  font-size: 3.6rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #1B7ABA;
  letter-spacing: 0.2rem;
  background: linear-gradient(180deg, transparent 0%, transparent 75%, #FFED89 75%, #FFED89 100%);
}

.pain__after__content {
  padding: 0 2.5rem;
  border-radius: 1rem;
}

.pain__after__content__txtwrap {
  background: #f8f8f8;
  padding: 2.5rem;
}

.yho .pain__after__content__txtwrap {
  padding: 2.5rem 0;
}

.pain__after__content__subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #222A37;
  text-align: center;
  padding-bottom: 0.5rem;
  margin: 0 auto 2rem;
  border-bottom: 0.15rem solid black;
  width: fit-content;
}

.pain__after__content__txtlist {
  list-style: none;
  padding: 0;
}

.pain__after__content__txtlist li {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  line-height: 1.4;
  margin-bottom: 1.2rem;
  padding-left: 2rem;
  position: relative;
}

.pain__after__content__txtlist li:last-child {
  margin-bottom: 0;
}

.pain__after__content__txtlist li strong {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #286792;
  letter-spacing: 0.1rem;
}

.pain__after__content__txtlist li:first-of-type strong {
  padding-left: 0.5rem;
}

.pain__after__content__txtlist li::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: .2rem;
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(/lp/asset/image/2025_hige_reconstruct/pain/icon_pain_after.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  display: inline-block;
}

.pain__after__content__txt {
  font-size: 1.6rem;
  color: #333;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  line-height: 1.7;
  text-align: center;
}

.pain__after__content__txt strong {
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #286792;
}

.pain__after__content__line {
  text-align: center;
  font-size: var(--font-size-content);
  font-weight: var(--font-weight-content);
  padding: 1rem 0 0.5rem;
}

.pain__after__content__line span {
  padding: 0 1rem;
}

.pain__after__content__img {
  width: 100%;
  height: auto;
}

/* plan section */

.plan__header {
  /* plan header styles */
  position: relative;
}

.plan__header__img {
  /* plan header image styles */
  margin-top: -1px;
}

.plan__tab-btn-area {
  /* plan tab button area styles */
  position: absolute;
  bottom: -1px;
  z-index: 1;
  width: 100%;
  height: 6rem;
  display: flex;
  gap: 1rem;
}

.plan__tab-btn {
  /* plan tab button styles */
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #abc9de;
  color: #292929;
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
  clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 1rem, 100% 100%, 0 100%);
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
}

.plan__tab-btn.active {
  background-color: #222A37;
  color: #fff;
}
.plan__tab-btn:hover {
  cursor: pointer;
}

.plan__tab-area {
  /* plan tab area styles */
  position: relative;
  z-index: 2;
}

.plan__tab-content {
  /* plan tab content styles */
  display: none;
  background-color: #222A37;
  padding: 4rem 0 0;
}

.plan__tab-content-inner{
  padding: 0 2.4rem;
  background-color: #222A37;
}

.plan__tab-content.active {
  /* plan tab content active styles */
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* 「hige&face」ではないボタンが「active」クラスを持っている場合 */
.plan:has(.plan__tab-btn.active:not([data-target="hige&face"])) .plan__tab-content.active {
    padding-bottom: 4rem;
}

.c-plan-item {
  /* plan item styles */
  padding: 2rem;
  background-color: #fff;
  margin-bottom: 0.5rem;
}

.c-plan-item__wrapper2 {
  /* plan item wrapper styles */
  display: flex;
  gap: 1rem;
}

.c-plan-item__main-img-area {
  /* plan item main image area styles */
  flex: 0 14rem;
  align-self: center;
  position: relative;
}

.c-plan-item__main-img {
  /* plan item main image styles */
  max-width: 14rem;
  max-height: 14rem;
  object-fit: contain;
}

.c-plan-item__content {
  /* plan item content styles */
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.c-plan-item__content__title {
  /* plan item content title styles */
  display: flex;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  font-size: 2.3rem;
  letter-spacing: 0.1rem;
  flex-direction: column;
  width: fit-content;
  line-height: 1.5;
  align-items: flex-start;
}

.c-plan-item__content__title span {
  font-size: 1rem;
  color: #fff;
  padding: 0.35rem 0.9rem 0.2rem;
  letter-spacing: normal;
  border-radius: 10rem;
  background-color: #1B7ABA;
}

.c-plan-modal-icon {
  width: 2rem;
  position: absolute;
  bottom: 0.1rem;
  right: 1rem;
}

.c-plan-modal-header {
  background: #333;
}

.c-plan-modal-title {
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  border: 0.1rem solid #fff;
  margin: .6rem;
  padding: 1.5rem 0 1.4rem;
  line-height: 1;
}

.c-plan-modal-content {
  padding: 2.5rem;
}

.c-plan-modal-txt {
  margin-top: .6rem;
  text-align: right;
  font-size: 1rem;
}

/* 個別対応：ヒゲ・頭タブ　選べる部位 */
.c-plan-item__wrapper:nth-of-type(2) .c-plan-item__content__title span {
  background-color: #004271;
}

#zenshin.plan__tab-content .c-plan-item__wrapper:first-of-type .c-plan-item__content__title small {
  font-size: 1.4rem;
  align-self: flex-end;
  letter-spacing: 0rem;
}

.c-plan-item__cta {
  /* plan item cta styles */
  display: block;
  position: relative;
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 10rem;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  background: linear-gradient(305deg, #222A37 -0.44%, #286792 90.45%);
}

.c-plan-item__cta::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translate(-50%, -50%);
  height: 1.6rem;
  aspect-ratio: 1 / 2;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.c-plan-item__anotation {
  font-size: 1.15rem;
  padding-top: 0.2rem;
  font-weight: var(--font-weight-annotation);
  color: #fff;
}

.plan__transfer {
  padding-bottom: 4rem;
  background: #222A37;
  overflow: hidden;
  font-family: var(--ff-koburina-w6);
  position: relative;
  margin-top: -1px;
}

/* 1. .plan の中にある「data-target="hige&face"」かつ「activeクラス」を持つボタンを探す
  2. 条件に合うボタンが存在する場合、その親の .plan を基点として処理を開始する
  3. .plan の子孫要素である .plan__transfer を経由し、
     さらにその中にある .plan__transfer__inner の擬似要素(::before)にスタイルを適用する
*/
.plan:has(.plan__tab-btn.active[data-target="hige&face"]) .plan__transfer::before {
    content: "";
    position: absolute;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    width: 100%;
    height: 356px;
    left: 0;
    top: 0;
    background: #1B7ABA;
}

.plan__transfer__inner {
  width: 90%;
  margin: auto;
  padding: 3rem 2rem;
  background: #fff;
  position: relative;
}

.plan__transfer__inner::before,
.plan__transfer__inner::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4rem 4rem 0 4rem;
  border-color: #222A37 transparent transparent transparent;
}

/* 
「ヒゲ･顔」タブがアクティブな状態のとき、
.plan__transferの中にある.plan__transfer__innerの疑似要素にスタイルを適用
※配色の優先度を変えないでください
*/
.plan:has(.plan__tab-btn.active[data-target="hige&face"]) .plan__transfer .plan__transfer__inner::before{
  border-color: #1B7ABA transparent transparent transparent;
} 

.plan__transfer__inner::before {
  top: -1rem;
  left: -3rem;
  transform: rotate(140deg);
}

.plan__transfer__inner::after {
  bottom: -1rem;
  right: -3rem;
  transform: rotate(-40deg);
}

.plan__transfer__ttl {
  text-align: center;
  color: #0075C4;
  font-size: 5rem;
}

.plan__transfer__ttlBox {
  display: block;
  width: 74%;
  margin: auto;
  padding-top: 0.2rem;
  font-size: 2rem;
  border: 0.2rem solid #0075C4;
}

.plan__transfer__ttlSmall {
  font-size: 3.4rem;
  margin-left: 0.5rem;
}

.plan__transfer__ttlImg {
  display: block;
  width: 37rem;
  margin: auto;
}

.plan__transfer__ttl.directly {
  font-size: 4rem;
  color: #292929;
}

.plan__transfer__baloon {
  width: 85%;
  margin: 2rem auto 0;
  padding: 1.8rem;
  position: relative;
  text-align: center;
  background: #222A37;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}

.plan__transfer__baloon::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.5rem;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2rem 1rem 0 1rem;
  border-color: #222A37 transparent transparent transparent;
}

.plan__transfer__baloon.directly {
  background: #1B7ABA;
}

.plan__transfer__baloon.directly::before {
  border-color: #1B7ABA transparent transparent transparent;
}

.plan__transfer__box {
  margin: 2.5rem 1rem 0;
  padding: 2.5rem 4rem;
  border: .2rem solid #000;
  box-shadow: .3rem .4rem #bdbfc3;
}

.plan__transfer__box.directly {
  border: .2rem solid #1B7ABA;
}

.plan__transfer__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.plan__transfer__list + .plan__transfer__list {
  margin-top: 1.5rem;
}

.plan__transfer__icon {
  width: 4rem;
}

.plan__transfer__txt {
  font-size: 1.6rem;
  font-weight: 500;
}

.plan__transfer__txtBlue {
  color: #0075C4;
}

.plan__transfer__bring {
  width: 96%;
  margin: 3rem auto 0;
  text-align: center;
}

.plan__transfer__subttl {
  display: inline-block;
  padding-bottom: .6rem;
  text-align: center;
  font-size: 2rem;
  border-bottom: 2px solid #000;
  font-weight: 500;
}

.plan__transfer__bottom {
  margin: 2rem auto 0;
  text-align: left;
  font-size: 1.7rem;
  font-weight: 500;
}

.plan__transfer__bottom .plan__transfer__txtBlue {
  display: block;
  padding-bottom: 1.5rem;
  font-size: 1.8rem;
}

.plan__transfer__annotation {
  margin-top: 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-family: var(--ff-koburina-w3);
}

.plan__qanda {
  /* plan qanda section styles */
  margin-top: -1px;
  background-color: #222A37;
  padding: 3rem 2.4rem 12rem;
}

.plan__qanda__wrapper {
  /* plan qanda wrapper styles */
  background: #fff;
  position: relative;
}

.plan__qanda__header {
  /* plan qanda header styles */
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/lp/asset/image/2025_hige_reconstruct/plan/bg_plan_qanda.webp);
  background-size: cover;
  padding: 1.8rem;
  gap: 0.8rem;
}

.plan__qanda__header__img {
  /* plan qanda header image styles */
  flex: 0;
  width: 3rem;
}

.plan__qanda__header__txt {
  /* plan qanda header text styles */
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
}

.plan__qanda__content {
  /* plan qanda content styles */
  padding: 1.8rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.plan__qanda__content__subtitle {
  /* plan qanda content subtitle styles */
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  line-height: 0.9;
}

.plan__qanda__content__subtitle small {
  /* plan qanda content subtitle styles */
  font-size: 1.5rem;
}

.plan__qanda__content__txt {
  /* plan qanda content text styles */
  font-size: 1.6rem;
  font-weight: 300;
}

.plan__qanda__content__txt small {
  /* plan qanda content text styles */
  font-size: 1.2rem;
  line-height: 2
}

/* gakusei section */

.gakusei {
  margin-top: -9rem;
  z-index: 2;
  position: relative;
}

.gakusei__figure-area {
  position: relative;
  z-index: 1;
  margin-top: -12.4rem;
}

.gakusei__figure-area__acc-btn {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5383A3;
  padding: 3rem;
  font-size: 2.6rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  color: #fff;
  letter-spacing: 0.2rem;
}

.gakusei__figure-area__acc-btn::after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  font-weight: 300;
  font-size: 3.5rem;
}

.gakusei__figure-area__acc-btn.active::after {
  content: "ー"
}

.gakusei__figure-area__acc-body {
  background-color: #5383A3;
  padding: 2rem 2.4rem;
  display: none;
}

.gakusei__figure-area__acc-btn.active+.gakusei__figure-area__acc-body {
  display: block;
}

.gakusei__figure-area__acc-body__price-image {
  padding: 0 0 2rem;
}
.gakusei__figure-area__acc-body__price-note{
  margin-top: 10px;
  color: #fff;
  font-size: 1.2rem;
}



















/* qa section */

.qanda {
  background-color: #fff;
}

.qanda__header {
  background-image: url(/lp/asset/image/2025_hige_reconstruct/qa/bg_header_qa.webp);
  background-size: cover;
  padding: 1.8rem;
}

.qanda__header__txt {
  font-family: var(--ff-koburina-w6);
  font-weight: 600;
  font-size: 4rem;
  color: #fff;
  text-align: center;
}

.qanda__contents {
  background-image: url(/lp/asset/image/2025_hige_reconstruct/qa/bg_qa.webp);
  background-size: cover;
  padding: 4rem 2.8rem 6.66rem;
  display: flex;
  flex-direction: column;
  gap: 6.66rem;
}

.qa-item {
  display: flex;
  flex-direction: column;
  gap: 2.66rem;
}

.qa-item__head {
  background-color: #A8A8A8;
  border-radius: 0.7rem;
  color: #fff;
  font-size: 2rem;
  padding: 0.6rem 2.66rem;
  width: fit-content;
  margin: 0 auto;
  line-height: 1;
}

.qa-item__q-area {
  display: flex;
  align-items: center;
  gap: 2.66rem;
}

.qa-item__q-area__txt {
  position: relative;
  font-size: 1.8rem;
  font-weight: 300;
  flex: 1;
  background: #fff;
  filter: drop-shadow(4px 4px 2px rgba(38, 107, 155, 0.30));
  width: 100%;
  padding: 1.33rem 2.66rem;
  border-radius: 0.33rem;
  letter-spacing: 0.1rem;
}

.qa-item__q-area__txt strong {
  font-family: var(--ff-koburina-w6);
  font-weight: 600;
}

.qa-item__q-area__txt::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.65rem;
  height: 1.4rem;
  background: #fff;
  transform: translateX(100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);

}

.qa-item__q-area__img,
.qa-item__a-area__img {
  width: 14.6rem;
  height: 14.6rem;
}

.qa-item__a-area {
  display: flex;
  gap: 2.66rem;
}

.qa-item__a-area__txt {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
  flex: 1;
  background: #255F88;
  filter: drop-shadow(4px 4px 2px rgba(38, 107, 155, 0.30));
  color: #fff;
  width: 100%;
  padding: 1.33rem 2.5rem;
  border-radius: 0.33rem;
  min-height: 14.6rem;
  letter-spacing: 0.1rem;
}

.qa-item__a-area__txt strong {
  color: #292929;
  background: #EFE491;
  padding: 0.1rem 0;
}

.qa-item__a-area__txt sup {
  vertical-align: super;
  font-size: 1rem;
}



.qa-item__a-area__txt::before {
  content: "";
  position: absolute;
  top: 12rem;
  left: 0;
  width: 1.65rem;
  height: 1.4rem;
  background: #255F88;
  transform: translateX(-100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.flow {
  position: relative;
}

.flow__ttl-img {
  position: absolute;
  width: 47.5rem;
  top: 4.4rem;
}

/* intro section */






.introSec04 {
  position: relative;
  background: #222A37;
  margin-top: -3rem;
}

.introSec04__parts {
  margin-bottom: -2px;
}

.introSec04Point {
  position: absolute;
  text-align: center;
  width: 100%;
  top: 28.5%;
  font-size: 2.1rem;
  font-weight: 500;
  color: #292929;
}

.introSec04PointStrong {
  font-size: 3.8rem;
}

.introSec04 .splide {
  position: absolute;
  transform: translateX(-50%);
  top: 44.5%;
  left: 50%;
  width: 84.7%;
  z-index: 2;
}

.introSec03 .splide__track,
.introSec04 .splide__track {
  padding-left: 10.35% !important;
  padding-right: 10.35% !important;
}

/* aboutMachine section */






/* feature section */












































.planArea {
  margin-bottom: -1%;
  position: relative;
  z-index: 5;
}









.planSec02__student {
  margin-top: -15%
}

.planSec02__student-menu {
  display: block;
  padding: 5% 2.5% 7%;
  background: #838383;
  z-index: 10;
  position: relative;
}





/* flow section */
.flow {
  position: relative;
}



.flow .splide {
  position: absolute;
  top: 26%;
}

.flow .splide__slideImg {
  display: block;
  width: 42rem !important;
}





















/* faq section */
.faq {
  background: #FFF;
}

/* attention section */
.attention {
  margin-bottom: -1px;
  font-size: 1.7rem;
  color: #fff;
  background: #222A37;
}

.attention p,
.attention li {
  font-weight: 300;
}

.attention__inner {
  margin: 0 auto;
  width: 89.4%;
}

.attention__head {
  text-align: center;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
}

.attention__subhead {
  margin-block: 1.1em 0.5em;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
}

.attention__subhead:first-of-type {
  margin-top: 1.3em;
}

.attention__txt small {
  display: block;
  font-size: 1.4rem;
}

.attention__txt small:first-of-type {
  margin-top: 2.5em;
}

.attention .cvBtn {
  margin-top: 15%;
}

@media (max-width: 750px) {
  .attention .cvBtn {
    display: none;
  }
}

/* clinic section */
.clinic {
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
}

.clinicAcd__stateName {
  position: relative;
  text-align: center;
  font-size: 2.5rem;
  line-height: 3.6em;
  color: #fff;
  border-bottom: 1px solid #fff;
  background: #222A37;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
}

.clinicAcd__stateName::before,
.clinicAcd__stateName::after {
  position: absolute;
  top: 50%;
  right: 1.2em;
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.085em;
  background: #fff;
}

.clinicAcd__stateName::before {
  transform: rotate(90deg) translate(-5%, 240%);
  transition: 0.3s;
}

.clinicAcd__stateName::after {
  transform: translate(-0.23em, -50%);
}

.clinicAcd__stateName.active::before {
  transform: rotate(0) translate(-28%, 0);
  opacity: 0;
}

.clinicAcd__clinicContainer {
  height: 0;
  overflow: hidden;
  transition: 0.25s;
}

.clinicAcd__clinicList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5%;
  padding: 7% 5.3% 4%;
  background: #f5f5f5;
}

.clinicAcd__clinicListItem {
  flex-shrink: 0;
  width: 48.5%;
}

.clinicAcd__clinicListName {
  margin-bottom: 5.5%;
  padding-block: 5%;
  width: 100.5%;
  text-align: center;
  font-size: 2.3rem;
  color: #222A37;
  background: transparent;
  border: 2px solid #222A37;
  transition: 0.2s;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--ff-koburina-w6);
}

.clinicAcd__clinicListName small {
  display: block;
  font-size: 0.6em;
  font-weight: lighter;
  letter-spacing: 0.05em;
  color: #222A37;
  font-family: var(--ff-koburina-w3);
  font-weight: 300;
}

.clinicAcd__clinicListName.active {
  color: #fff;
  background: #286792;
  border: 2px solid #286792;
}

.clinicAcd__clinicListName.active small {
  color: #fff;
}

.clinicAcd__clinicListItem.kokura .clinicAcd__clinicListName.active {
  margin-bottom: 15.5%;
}

.clinicAcd__clinicListItem.ikebukuro-higashiguchi .clinicAcd__clinicListName.active {
  margin-bottom: 15.5%;
}

.clinicAcd__clinicInfo {
  width: 44.8rem;
  height: 0;
  overflow-y: hidden;
}

.clinicAcd__clinicInfoInner {
  margin-bottom: 6%;
  padding: 2% 5% 7%;
  border: 2px solid #286792;
  background: #fff;
}

.clinicAcd__clinicInfoLabel {
  margin-bottom: 2%;
  display: flex;
  align-items: stretch;
  gap: 1.6em;
}

.clinicAcd__clinicInfoLabel.no01 {
  margin-top: 4%;
}

.clinicAcd__clinicNotice {
  margin-top: 5.4%;
  padding: 3rem;
  border: 2px solid #1d81f9;
}

.clinicAcd__clinicNoticeInner {
  color: #2A648D;
  font-size: 2rem;
  text-align: center;
  font-family: var(--ff-koburina-w6);
  font-weight: 600;
}

.clinicAcd__clinicNoticeDetail {
  margin-top: 2rem;
  font-size: 1.8rem;
  color: #222A37;
  text-align: left;
}

.clinicAcd__clinicNotice--specific .clinicAcd__clinicNoticeInner {
  color: #E52C2C;
}

.clinicAcd__clinicNoticeLinks {
    display: flex;
    flex-direction: column;
}

.clinicAcd__clinicNoticeLink {
  width: fit-content;
  margin-top: 1rem;
  font-size: 1.6rem;
  color: #286792;
  text-decoration: underline;
  transition: 0.2s all ease;
}

.clinicAcd__clinicNoticeLink:hover {
  transform: none;
  opacity:0.8;
}

.clinicAcd__clinicNoticeLink + .clinicAcd__clinicNoticeLink {
  margin-top: 0.5rem;
}

.clinicAcd__clinicNoticeImg {
  margin-top: 2rem;
}

.clinicAcd__clinicInfoSummay {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 23.9%;
  min-height: 2.8em;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  background: #EBDDC3;
  color: #222A37;
}

.clinicAcd__clinicInfoDetail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 300;
  font-size: 1.9rem;
  color: #292929;
}

.clinicAcd__clinicInfoCv {
  position: relative;
  display: block;
  margin-block: 1.2em;
  width: 100%;
  text-align: center;
  font-size: 2.1rem;
  line-height: 2.8em;
  border-radius: 2em;
  color: #fff;
  background: linear-gradient(to right, #286792, #222A37);
  z-index: 1;
}

.clinicAcd__clinicInfoNotice {
  text-align: center;
  display: block;
  margin-top: -10px;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.clinicAcd__clinicInfoMap {
  margin-bottom: 4.5%;
  aspect-ratio: 2/1;
}

.clinicAcd__doctorInfo {
  padding-inline: 3.3%;
}

.clinicAcd__doctorName {
  display: flex;
  align-items: end;
  margin-bottom: 2.3em;
}

.clinicAcd__doctorName span {
  flex-shrink: 0;
  margin-right: 1.7em;
  font-size: 2.2rem;
  line-height: 2.2em;
}

.clinicAcd__doctorName img {
  flex-shrink: 0;
  width: 70%;
  pointer-events: none;
}

.clinicAcd__doctorHistory dl {
  display: flex;
  gap: 0.5em;
  font-weight: 300;
  font-size: 1.6rem;
  color: #000;
}

.clinicAcd__doctorHistory dt {
  white-space: nowrap;
}

.clinicAcd__doctorHistory dd {
  letter-spacing: 0.02em;
}

.line__bnr {
  margin-inline: auto;
  width: 46rem;
  margin-bottom: 10%;
}

.clinic__president {
  padding-block: 7% 11%;
  background: #222A37;
}

.clinic__presidentSubttl {
  display: block;
  text-align: center;
  font-size: 2.4rem;
  line-height: 2.6em;
  background: #D9D9D9;
}

.clinic__presidentInner {
  margin-inline: auto;
  margin: 0 2.3rem;
  background: #fff;
  overflow: hidden;
}

.clinic__presidentInfo {
  margin: 5% auto;
  width: 80%;
}

.clinic__presidentName {
  display: flex;
  align-items: end;
  gap: 2em;
  margin-bottom: 1em;
  font-size: 2.3rem;
}

.clinic__presidentName span {
  line-height: 2.2em;
  white-space: nowrap;
}

.clinic__presidentName img {
  width: 55%;
}

.clinic__presidentCareer {
  display: flex;
  gap: 0.5em;
  font-size: 1.6rem;
}

.clinic__presidentCareer dt {
  white-space: nowrap;
}

.clinicAcd__clinicList .clinicAcd__clinicListItem:nth-child(2n) .clinicAcd__clinicInfo {
  transform: translateX(-51.4%);
}




/* JavaScript animation classes */
.js_fadein__left {
  transition: 0.6s 0.125s;
}

.js_fadein__left.inactive {
  opacity: 0;
  transform: translateX(-5%);
}

.js_fadein__right {
  transition: 0.6s 0.125s;
}

.js_fadein__right.inactive {
  opacity: 0;
  transform: translateX(5%);
}

.js_fadein__bottom {
  transition: 0.6s 0.125s;
}

.js_fadein__bottom.inactive {
  opacity: 0;
  transform: translateY(5%);
}





.js_balloon.is-active {
  -webkit-animation: balloon 0.7s linear;
  animation: balloon 0.7s linear;
}

@-webkit-keyframes balloon {

  0%,
  40%,
  100% {
    transform: scale(1);
  }

  50%,
  90% {
    transform: scale(1.3);
  }
}

@keyframes balloon {

  0%,
  40%,
  100% {
    transform: scale(1);
  }

  50%,
  90% {
    transform: scale(1.3);
  }
}



@-webkit-keyframes swaying {
  0% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes swaying {
  0% {
    transform: rotate(5deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}







@-webkit-keyframes shine {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }

  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }

  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }

  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }

  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes shine {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }

  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }

  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }

  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }

  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}





@-webkit-keyframes slideinLeft {
  0% {
    transform: translateX(-250px) translateY(50px);
  }

  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes slideinLeft {
  0% {
    transform: translateX(-250px) translateY(50px);
  }

  100% {
    transform: translateX(0) translateY(0);
  }
}



@-webkit-keyframes jump {
  0% {
    transform: translate(0%, 5%) rotateY(20deg);
  }

  40% {
    transform: translate(0%, 0%);
  }

  60% {
    transform: translate(0%, 5%) rotateY(20deg);
  }

  100% {
    transform: translate(0%, 0%);
  }
}

@keyframes jump {
  0% {
    transform: translate(0%, 5%) rotateY(20deg);
  }

  40% {
    transform: translate(0%, 0%);
  }

  60% {
    transform: translate(0%, 5%) rotateY(20deg);
  }

  100% {
    transform: translate(0%, 0%);
  }
}

/* Splide slider styles */
.splide__track {
  padding-left: 7.35% !important;
}

.splide__slide {
  flex-shrink: 0;
}

.splide__slide.is-next,
.splide__slide.is-prev {
  -webkit-filter: brightness(0.7);
  filter: brightness(0.7);
}

.splide__slideImg {
  display: block;
  width: 40rem !important;
}

.splide__arrows {
  display: none;
}

.splide__pagination {
  bottom: -5.5%;
  gap: 4%;
}

.flow .splide__pagination {
  bottom: -9.5%;
  gap: 2.5%;
}

.splide__pagination__page {
  margin: 0 0.2em;
  width: 1.2rem;
  height: 1.2rem;
  background: #D5CFCF;
}

.splide__pagination__page.is-active {
  background: #000000;
  transform: unset;
}








.footer {
  margin-bottom: -15px;
  padding-block: 3rem 6rem;
  text-align: center;
  font-size: 1.6rem;
  background: #222A37;
}

.line .footer {
  padding-block: 3rem 16rem;
}

@media (max-width: 750px) {
  .footer {
    padding-block: 3em 9.5em;
  }
}

.footer__link {
  display: block;
  margin-bottom: 1em;
  color: #fff;
}

.footer__copy {
  display: block;
  line-height: 3em;
  color: #333;
  background: #D9D9D9;
}



/***************************************
 *  院情報詳細へのリンク用
 ***************************************/

 .clinicAcd__clinicDetailLink-wrap{
  margin: auto;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
}

.clinicAcd__clinicDetailLink {
  width: 100%;
  padding: 8px 0;
  max-width: 493px;
  font-size: 14px;
  color: #2c2c2c;
  margin: auto;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 38px;
  justify-content: center;
  display: flex;
  cursor: pointer;
}
.clinicAcd__clinicDetailLink:hover ,
.clinicAcd__clinicDetailLink:active {
  opacity: 0.8;
  transition: 0.3s;
}

@media screen and (max-width:750px) {
  .clinicAcd__clinicDetailLink {
    font-size: 1.2rem;
  }
}

/******************************* | 
「ヒゲ・顔」タブ専用のサブコンテンツ追加
*******************************/ 
.p-option-menu{
  padding-top: 23px;
  color: #FFF;
}

.p-option-menu__inner{
  background-color: #1B7ABA;
  position: relative;
  padding: 60px 2.4rem;
}

  .p-option-menu__icon {
    height: 80px;
    width: 80px;
    position: absolute;
    left: 50%;
    top: -23px;
    transform: translateX(-50%);
    background-color: #1B7ABA;
    border-radius: 50%;
  }

  .p-option-menu__icon::before,
  .p-option-menu__icon::after{
    content: "";
    background-color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .p-option-menu__icon::before {
    width: 40px; /* 棒の幅 */
    height: 5px; /* 棒の高さ */
  }
  .p-option-menu__icon::after {
    width: 5px; /* 棒の幅 */
    height: 40px; /* 棒の高さ */
  }

  .p-option-menu__ttl {
    font-size: 2.4rem;
    text-align: center ;
    margin-bottom: 30px;
  }

  .p-option-menu__item:not(:last-child) {
    margin-bottom: 40px;
  }
  
  .p-option-menu__img-wrap{
    position: relative;
  }

  .c-plan-item__cta-area--option-menu {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 590px;
    width: calc(100% - 2rem);
    padding: 0 10px;
  }
  
  @media screen and (max-width:760px) {
    .c-plan-item__cta-area--option-menu {
      bottom: 20px;
    }
  }

  .p-option-menu__anotation {
    font-size: 1.33rem;
    margin-top: 10px;
  }

  

  .plan__qanda--triangle{
    position: relative;
  }
  
    .plan:has(.plan__tab-btn.active[data-target="hige&face"]) .plan__qanda--triangle::before {
      content: "";
      position: absolute;
      clip-path: polygon(0 100%, 100% 0, 0 0);
      width: 100%;
      height: 343px;
      left: 0;
      top: 0;
      background: #1B7ABA;
  }
  :root {
    --v-bg1: #020202;
    --v-bg2: #333;
}

.vissel.body {
    background: var(--v-bg2);
}

.vissel .fv__contents {
    position: relative;
    background: var(--v-bg1);
    z-index: 1;
    margin-top: -2px;
}

.vissel .achievements::before {
    background: var(--v-bg1);
}

/* medical section */

.vissel .medical__hikaku__header {
    color: #9C022C;
}

.vissel .machine {
    background-image: url(/lp/asset/image/2025_hige_reconstruct/vissel/machine/bg_machine.webp);
}

.vissel .point-item__ttl__txt1 {
    color: #B4003F;
}



















.vissel .reason__header__subttl {
    background: #111;
}

.vissel .reason__header__ttl {
    color: #111;
}

.vissel .reason__content-item__ttl__txt2 {
    background: linear-gradient(275deg, #9C022C -4.33%, #9C022C 46.38%, #6C001E 90.68%, #7B0021 110.41%);
}

.vissel .reason__content-item__ttl__txt1 {
    color: #9C022C;
}

.vissel .no-add-fee__content-wrap {
    background: #020202;
}

.vissel .cost-performance__ttl {
    background: linear-gradient(263deg, #96022A -4.29%, #9C022C 44.92%, #6C001E 87.88%, #7B0021 107.03%);
}
.vissel .cost-performance__ttl__txt1 {
    color: #9C022C;
}

.vissel .cost-performance__face-part {
    background: #000000;
}

.vissel .cost-performance__plan2 {
    background:  #020202;
    color: #fff;
}

.vissel .cost-performance__bg__deco2 {
    background: #E7D4DA;
}

.vissel .cost-performance__plan3__cta {
    background: #9C022C;
}

.vissel .pain__header::before {
    background-image: url(/lp/asset/image/2025_hige_reconstruct/vissel/pain/img_pain_ttl_prefix.webp)
}

.vissel .pain__header__txt {
    background: #000000;
}

.vissel .c-point1__header__left {
    background: #000000;
}

.vissel .c-point1__header__right {
    color: #B4003F;
}

.vissel .c-point1__contents__lines__txt {
    color: #B4003F;
}

.vissel .c-point1__header__right {
    color: #B4003F;
}

.vissel .c-point2__left,
.vissel .c-point3__left {
    background: #000000;
}

.vissel .c-point2__right__txt strong,
.vissel .c-point3__right__txt strong {
    color: #B4003F;
}

.vissel .pain__after__wrap {
    border-color: #B4003F;
}

.vissel .pain__after__header strong {
    color: #B4003F;
}

.vissel .pain__after__content__txtlist li strong {
    color: #B4003F;
}

.vissel .pain__after__content__txt strong {
    color: #B4003F;
}

.vissel .pain__after__content__txtlist li::before {
    background-image: url(/lp/asset/image/2025_hige_reconstruct/vissel/pain/icon_pain_after.webp);
}

.vissel .plan__tab-btn {
    background: #D9D9D9;
}

.vissel .plan__tab-btn.active {
    background: #020202;
}

.vissel .plan__tab-content {
    background: #020202;
}

.vissel .plan__qanda__header {
    background-image: none;
    background: linear-gradient(148deg, #9C022C -31.15%, #9C022C 25.81%, #6C001E 75.55%, #7B0021 97.72%);
}

.vissel .c-plan-item__cta {
    background: #9C022C;
}

.vissel .plan__transfer {
    background: #020202;
}

.vissel .plan__transfer__inner::before,
.vissel .plan__transfer__inner::after {
    border-color: #020202 transparent transparent transparent;
}

.vissel .plan__transfer__txtRed {
    color: #B60032;
}

.vissel .plan__transfer__ttl {
    color: #B60032;
}

.vissel .plan__transfer__ttl.directly {
    color: #292929;
}

.vissel .plan__transfer__ttlBox {
    border: 0.2rem solid #B60032;
}

.vissel .plan__transfer__baloon {
    background: #000;
}

.vissel .plan__transfer__baloon::before {
    border-color: #000 transparent transparent transparent;
}

.vissel .plan__transfer__baloon.directly {
    background: #B60032;
}

.vissel .plan__transfer__baloon.directly::before {
    border-color: #B60032 transparent transparent transparent;
}

.vissel .plan__transfer__box {
    border: .2rem solid #292929;
}

.vissel .plan__transfer__box.directly {
    border: .2rem solid #B60032;
}

.plan__transfer__bottom .plan__transfer__txtRed {
  display: block;
  padding-bottom: 1.5rem;
  font-size: 1.8rem;
}

.vissel .plan__qanda {
    background: #020202;
}

.vissel .gakusei__figure-area__acc-btn {
    background: #020202;
}

.vissel .gakusei__figure-area__acc-body {
    background: #020202;
}

.vissel .clinicAcd__stateName {
    background: #020202;
}

.vissel .clinicAcd__clinicNoticeInner {
    color: #9C022C;
}

.vissel .clinicAcd__clinicInfoInner {
    border-color: #9C022C;
}

.vissel .clinicAcd__clinicNotice {
    border-color: #9C022C;
}

.vissel .clinicAcd__clinicNotice--specific .clinicAcd__clinicNoticeInner {
    color: #E52C2C;
}

.vissel .clinicAcd__clinicNotice--specific .clinicAcd__clinicNoticeLink {
    color: #9C022C;
}

.vissel .clinicAcd__clinicListName.active {
  background: #9C022C;
  border-color: #9C022C;
}

.vissel .clinicAcd__clinicInfoSummay {
  background: #020202;
  color: #fff;
}

.vissel .clinicAcd__clinicInfoCv {
  background: #003E9E;
}

.vissel .clinic__president {
  background: #020202;
}

.vissel .attention {
  background: #020202;
}

.vissel .footer {
  background: #020202;
}

.vissel .introSec04 {
    background: #020202;
}

.vissel .introSec04__parts {
    margin-top: 5rem;
}

.vissel .introSec04Point {
  top: 30.4%;
}

.vissel .flow__ttl-img {
    transform: translateX(-50%);
    left: 50%;
    top: 3rem;
}

.vissel .introSec04 .splide {
    width: 89.1%;
    top: 45.5%;
}





/******************************* | 
「ヒゲ・顔」タブ専用のサブコンテンツ追加
*******************************/ 

.vissel .plan__tab-content-inner {
    background: #020202;
}

.vissel .p-option-menu__inner{
    background-color: #D3183D;
}

/* 1. .plan の中にある「data-target="hige&face"」かつ「activeクラス」を持つボタンを探す
  2. 条件に合うボタンが存在する場合、その親の .plan を基点として処理を開始する
  3. .plan の子孫要素である .plan__transfer を経由し、
     さらにその中にある .plan__transfer__inner の擬似要素(::before)にスタイルを適用する
*/
.vissel .plan:has(.plan__tab-btn.active[data-target="hige&face"]) .plan__transfer::before {
    background: #D3183D;
}
/* 
「ヒゲ･顔」タブがアクティブな状態のとき、
.plan__transferの中にある.plan__transfer__innerの疑似要素にスタイルを適用
※配色の優先度を変えないでください
*/
.plan:has(.plan__tab-btn.active[data-target="hige&face"]) .plan__transfer .plan__transfer__inner::before{
    border-color: #D3183D transparent transparent transparent;
  } 
  
  .vissel .p-option-menu__icon {
    background-color: #d3183d;
  }

.vissel .plan:has(.plan__tab-btn.active[data-target="hige&face"]) .plan__qanda--triangle::before {
    background: #D3183D;
}
