@charset "UTF-8";

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

/* font
--------------------- */
html {
  font-size: clamp(0px, 2vw, 15px);
  font-family: 'Noto Sans JP', sans-serif;
}

/* color
--------------------- */
/* layout
--------------------- */
:root {
  --color-main: #000;
  --color-sub: #fff;
  --font-size-annotation: 1.33rem;
  --font-weight-annotation: 400;
}

.body {
  margin-inline: auto;
  font-weight: 100;
  width: min(50rem, 100%);
  color: #333;
  background: #fff;
}

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: 1rem;
  -webkit-backdrop-filter: blur(8rem);
  backdrop-filter: blur(8rem);
  z-index: 999;
}

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

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

/*  くの字の矢印 */

.c-arrow {
    position: relative;
    z-index: 2;    
  }
  .c-arrow::before,
  .c-arrow::after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      width: 1rem;
      height: 0.27rem;
      background-color: #000;
      transform-origin: calc(100% - 0.13rem) 50%;
  }
  .c-arrow::before { transform: translateY(-50%) rotate(47deg); }
  .c-arrow::after  { transform: translateY(-50%) rotate(-47deg); }



 /* 文字のレイアウト（「＼〇〇〇〇／」） */
 /* 左右の斜め線（ \ まずは / の装飾） */
.c-preface {
    position: relative;
  }
  .c-preface::before,
  .c-preface::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 0.27rem;
      height: 100%;
      background-color: #000;
      display: inline-block;
}

.c-preface::before {
    right: 107%;
    transform: translateY(-50%) rotate(-25deg);
}

.c-preface::after {
    left: 107%;
    transform: translateY(-50%) rotate(25deg);
}

  
/*  header エリア */

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

.header__logo {
  flex-basis: 15rem;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5%;
}
.header__navItem a:hover{
  opacity: 0.85;
}

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

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

.fv {
  position: relative;
}

.fv__copy {
  margin-bottom: 3%;
}

.fv__text {
  position: absolute;
  top: 43.8rem;
  max-width: 750px;
  width: 100%;
  z-index: 2;
  font-weight: 700;
}

.fv__text_ttl {
  font-optical-sizing: auto;
  color: #F7F7F7;
  text-align: center;
  line-height: 1.1;
}

.fv__text_ttl_main {
  font-size: 7.33rem;
  margin-bottom: 0.1em;
  
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.4);
  display: inline-block;
  letter-spacing: 2.2px;
}

.fv__text_ttl_sub {
  font-size: 3.33rem;
  
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(0, 0, 0, 0.4);
  display: inline-block;
  letter-spacing: 0.02em;

  small {
    display: inline-block;
    margin-inline: -0.1em -0.2em;
  }
}

.fv__contents {
  padding: 2.67rem 5% 6rem;
  background: #000000;
}

.fv__atn {
  margin-inline: auto;
  font-size: 1.33rem;
  font-weight: 500;
  color: #fff;
  padding-bottom: 3.07rem;
}
.fv__atnItem:first-of-type{
  font-weight: 800;
}

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

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

.achievements__img {
  width: 100%;
}

.achievements__wrap {
  background-image:url(../image/2025_hige_reconstruct/achievements/achievements_bg.webp);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
  padding-bottom: 6.67rem;
}

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

.achievements__case__ttl {
  background: var(--Linear, linear-gradient(91deg, #221714 6.85%, #787878 99.77%));
  text-align: center;
  margin-bottom: 3%;
  color: #FFF;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.75);
  
  font-size: 6rem;
  
  font-weight: 700;
  line-height: normal;
  letter-spacing: 6px;
}

.achievements__case__contents{
  padding: 5%;
}
.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-weight: 400;
  font-size: 1.33rem;
  color: #292929;
}

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

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

.medical__haeder{
  padding: 7.73rem 5% 2rem;
    position: relative;
  z-index: 2;
  text-align: center;
}
.medical__haeder-inner{
  display: inline-block;
}
.medical__haeder-txt:nth-of-type(1){
color: #FFF;

font-size: 3.33rem;

font-weight: 700;
letter-spacing: 0.07rem;
background-color: #000;
    line-height: 1;
}

.medical__haeder-txt:nth-of-type(2){
  color: #000;

  font-size: 2.67rem;

  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05rem;
      line-height: 1;
}

.medical__haeder-txt:nth-of-type(3){

font-size: 8rem;

font-weight: 700;
line-height: normal;
letter-spacing: 0.16rem;
background: var(--Style, linear-gradient(181deg, #AE1919 -21.09%, #E80404 99.26%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.medical__haeder-txt:nth-of-type(4){
color: #000;

font-size: 4rem;

font-weight: 700;
line-height: normal;
letter-spacing: 0.08rem;
    line-height: 1;
}

.medical__haeder-txt:nth-of-type(5){
  color: #000;

  font-size: 5.33rem;

  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.11rem;
      line-height: 1;
}


.medical__wrap{
  padding-bottom: 30rem;
}

.medical__txt {
  padding: 5% 6%;
  font-size: 1.87rem;
  font-weight: 500;
}

.medical__hikaku{

}

.medical__hikaku-header {
  position: relative;
  z-index: 2;
  text-align: right;
}

.medical__hikaku-header-inner{
  display: inline-block;
  text-align: left;
  padding-right: 5%;
}

.medical__hikaku-header-txt:nth-of-type(1){
  color: #E30000;

  font-size: 4rem;

  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.08rem;
}
.medical__hikaku-header-txt:nth-of-type(2){
    color: #000;

    font-size: 5rem;

    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.1rem;
}
.medical__hikaku-header-txt:nth-of-type(3){
    color: #000;

    font-size: 2.67rem;

    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.05rem;
}
.medical__hikaku-header-txt:nth-of-type(4){
    color: #000;

    font-size: 4.33rem;

    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.09rem;
  }

.medical__hikaku-img {
  padding: 0 6%;
  position: relative;
  z-index: 1;
}
.medical__hikaku-img::before{
    content: "";
    height: 22.07rem;
    width: 21.6rem;
    background-image: url(/lp-new-202605/asset/image/2025_hige_reconstruct/medical/medical-hikaku_person.webp);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 5%;
    z-index: -1;
    bottom: 79%;

  }


.medical__hikaku__anotation {
  padding: 1% 6% 6% 0;
  text-align: right;
  font-size: 1.33rem;
  font-weight: 400;
}

/* machine section */
.machine {
    padding: 45% 0 12.27rem;
    margin-top: -46%;
    z-index: 1;
    position: relative;
}
/* 186px == 三角の高さ　後で変数にしたい */
.machine__inner{
  background-color: #221714;
  position: relative;
  padding-inline: 4%;
}
.machine__inner::before,
.machine__inner::after{
  content: "";
  position: absolute;
  width: 100%;
  background: #221714;
  z-index: -1;
  height: 12.4rem;
}
.machine__inner::before{
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  left: 0;
  bottom: calc(100% - 0.07rem);
}
.machine__inner::after{
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  right: 0;
  top: calc(100% - 0.07rem);
}
.machine__head-catch{
  color: #000;

  font-size: 2.4rem;

  font-weight: 700;
  line-height: 1.4;
    /* 変数にする01 */
transform: rotate(-14deg) skewX(-12deg);
  transform-origin: left center;
  position: absolute;
  bottom: calc( 100% + 1.87rem);
  left: 5%;
  z-index: 2;
}

.machine__head-name{
  color: #FFF;

  font-size: 4.4rem;

  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.13rem;
  /* 変数にする01 */
  transform: rotate(-14deg) skewX(-12deg);
  transform-origin: left center;
  position: absolute;
  top: 0;
  left: 5%;
  display: block;
}

.machine__head-name::after{
  content: "";
  height: 0.4rem;
  width: 140%;
  background-color: #fff;
  position: absolute;
  bottom: 0.2rem;
  left: 0;
}

.machine__img{
    position: absolute;
    width: 20.67rem;
    height: 38.4rem;
    right: -1%;
    top: -26rem;
}

.machine__list{
  padding-top: 30%;
}

.machine__item{
  text-align: center;
}
.machine__item:nth-child(1){
  margin-bottom: 9.47rem;
}
.machine__item:nth-child(2){
  margin-bottom: 10.2rem;
}
.machine__item:nth-child(3){
  margin-bottom: 2.4rem;
}

.machine__ttl{
  display: inline-block;
  position: relative;
}
.machine__item:nth-child(1){
  .machine__ttl{
    margin-bottom: 2rem;
  }
}

.machine__number{
    -webkit-text-stroke-width: 3px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.60);
    color: #221714;
    font-family: "DIN Alternate";
    font-size: 11.33rem;
    font-style: italic;
    font-weight: 600;
    line-height: normal;
    position: absolute;
    line-height: 1;
    z-index: 1;
    bottom: calc(100% - 3.67rem);
}

.machine__item:nth-child(odd){
.machine__number {
    left: 0;
  }
}
.machine__item:nth-child(even){
.machine__number {
    right: 0;
  }
}
.machine__item:nth-child(3){
  .machine__number {
        left: -21%;
        bottom: calc(100% - 4.87rem);
  }
}

.machine__ttl-contents{
  position: relative;
  z-index: 2;
  color: #FFF;
  text-align: center;

  font-weight: 700;
  letter-spacing: 0.07rem;
  font-size: 3.33rem;
}


.machine__ttl-marker{
      color: #E30000;
      font-weight: 700;
      letter-spacing: 0.07rem;
      line-height: 1;
      position: relative;
   text-decoration: underline; /* 下線 */
  text-decoration-thickness: 1.1em; /* 線の太さ */
  text-decoration-color: rgba(255,255,255,1); /* 線の色 */
  text-underline-offset: -0.95em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}



.machine__item:nth-child(1){

    .machine__ttl-lg{
      font-size: 4.67rem;
      letter-spacing: 0.19rem;
    }

    .machine__ttl-marker{
        font-size: 3.33rem;
    }

}

.machine__item:nth-child(n+2){

    .machine__ttl-marker{
      font-size: 3.33rem;
    }

    .machine__ttl-lg{
      font-size: 5.33rem;
    }
}

.machine__ttl-xlg{
  font-size: 6.33rem;
}

.machine__detail{
  text-align: left;
  color: #FFF;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 2.67rem;
}
.machine__detail-md{
  font-size: 1.87rem;
  letter-spacing: 0.037rem;
}
.machine__detail-sm{
  margin-top: 2rem;
  font-size: 1.47rem;
  letter-spacing: 0.029rem;
}

.machine__detail-marker{
  background-color: #E30000;
}

.machine__conclusion{
  position: relative;
  padding-bottom: 26.67rem;
}

.machine__conclusion-text{
  color: #FFF;
  text-align: center;
  font-size: 4.67rem;
  font-weight: 700;
  letter-spacing: 0.09rem;
  line-height: 1.3;
      /* 変数にする01 */
transform: rotate(-14deg) skewX(-12deg);
  transform-origin: left center;
  padding-bottom: 4.47rem;
      position: absolute;
      bottom: -12.4rem;
}

.machine__namely {
  font-size: 2.53rem;
  font-weight: 800;
}
.machine__namely.c-preface::before,
.machine__namely.c-preface::after{
  background-color: #fff;
  top: 60%;
}
.machine__namely-wrap{
  margin-bottom: 2rem;
  display: block;
}


.machine__conclusion-marker{
  font-size: 5.33rem;
  background-color: #E30000;
}
.machine__conclusion-lg{
  font-size: 6.67rem;
}

.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 Alternate";
  font-size: 2.6rem;
  font-weight: 600;
  
  color: #000;
}

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

.point-item__ttl {
  text-align: center;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.3;
}

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

.point-item__ttl__txt1 strong {
  font-size: 9rem;
  font-family: "DIN Alternate", sans-serif;
  font-weight: 400;
  line-height: 0;
}

.point-item__ttl__txt2 {
  color: #292929;
}

.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__waves-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
}

.point-item__wave-item {
  position: relative;
  padding: 3% 5%;
  border: 0.3rem solid #2C9AE5;
  background-color: #fff;
}

.point-item__wave-item::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  height: 30%;
  aspect-ratio: 1/1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background-color: #2C9AE5;
}

.point-item__wave-item:nth-of-type(2) {
  border-color: #1A7ABA;
}

.point-item__wave-item:nth-of-type(2)::before {
  background-color: #1A7ABA;
}

.point-item__wave-item:nth-of-type(3) {
  border-color: #3D4E6A;
}

.point-item__wave-item:nth-of-type(3)::before {
  background-color: #3D4E6A;
}

.wave-item__name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2C9AE5;
}

.point-item__wave-item:nth-of-type(2) .wave-item__name {
  color: #1A7ABA;

}

.point-item__wave-item:nth-of-type(3) .wave-item__name {
  color: #3D4E6A;
}

.wave-item__txt {
  font-size: 1.6rem;
  font-weight: 600;
  
}

.point-item__anotation {
  width: 72%;
  margin: 0 0 0 auto;
  padding-top: 1%;
  font-size: var(--font-size-annotation);
  font-weight: var(--font-weight-annotation);
  color: var(--color-annotation);
}

/* reason section */

.reason.nomal--machin-section-next {
  padding-top: 190px;
  margin-top: -190px;
}

.reason {
  background-image: url(../image/2025_hige_reconstruct/reason/reason_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.reason__header {
  padding: 9% 0 8.53rem;
}

.reason__header-subttl {
  padding: 1% 4%;
  margin: 0 auto;
  width: fit-content;
  color: #000;
  font-size: 3rem;
  font-weight: 600;
  
}

.reason__header-subttl small {
  font-size: 2.6rem;
}

.reason__header-ttl {
  font-size: 7.5rem;
  font-weight: 600;
background: var(--Style, linear-gradient(181deg, #AE1919 -21.09%, #E80404 99.26%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
  width: fit-content;
  margin: 0 auto;
}

.reason__list {
  padding-bottom: 12%;
  padding-inline: 5%;
}
.reason__item{
  display: inline-block;
  box-shadow: 2px 2px 11px 0 rgba(0, 0, 0, 0.15);
}
.reason__item:not(:last-child){
  margin-bottom: 4rem;
}
.reason__ttl{
  text-align: center;
  position: relative;
  z-index: 2;
}

.reason__ttl--mudage::before{
  content: "";
  background-image:url(../image/2025_hige_reconstruct/reason/reason_character_img.webp);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  position: absolute;
  bottom: calc(100% - 2.53rem);
  right: 2.4rem;
  width: 8.53rem;
  height: 11.07rem;
  z-index: -1;
}

.reason__ttl-sm{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 0.67rem);
  color: #000;
  font-size: 2.67rem;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0.11rem;
  margin-bottom: 0.67rem;
}
.reason__ttl-sm.c-preface.c-preface::before,
.reason__ttl-sm.c-preface.c-preface::after{
  height: 2.67rem;
  top: 50%;
}
.reason__ttl-sm.c-preface.c-preface::before{
  right: 110%;
}
.reason__ttl-sm.c-preface.c-preface::after{
  left: 110%;
}

.reason__ttl-main{
  color: #FFF;

    font-size: 4rem;

    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.16rem;
    background: #000;
    padding: 1rem 5% 1.2rem;
    display: block;
}

.reason__detail{
  background: #F4F4F4;

  padding-block: 2rem 4rem;
  padding-inline: 4rem;
}
.reason__detail-preface{
  margin-bottom: 1.33rem;
  color: #333;
  text-align: center;

  font-size: 1.87rem;

  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.075rem;
}

.reason__detail-text{
  margin-top: 2.67rem;
  color: #292929;

  font-size: 1.87rem;

  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.037rem;
}

.reason__detail-marker{
  color: #E30000;

  font-size: 1.87rem;

  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.037rem;
}









/* no-add-fee section */

.no-add-fee__ttl {

}

.no-add-fee__content-wrap {
  background-color: #E2E2E2;
}


.no-add-fee__content__txt {
  padding: 4% 0;
  text-align: center;
  font-size: 1.86rem;
  color: #000;
  font-weight: 700;
}

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

.no-add-fee__content__list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--Linear, linear-gradient(136deg, #000 0%, #414141 97.79%));
  box-shadow: 2px 2px 2px 0 rgba(127, 127, 127, 0.7);
  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;
  
  color: #fff;
  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;
}

.no-add-fee__content__annotation {
  padding: 0 2.6rem 4%;
  font-size: var(--font-size-annotation);
  font-weight: var(--font-weight-annotation);
  color: #000;
  font-weight: 500;
}

/* cost-performance section */

.cost-performance {
  position: relative;
  background-image:url(../image/2025_hige_reconstruct/no_add_fee/cost-performance_bg.webp);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
  background-size: cover;
}

.cost-performance__ttl {
  padding: 2.67rem 0 4rem;
}

.cost-performance__ttl__txt1 {
  padding: 1% 4%;
  margin: 0 auto;
  width: fit-content;
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  
  letter-spacing: 0.2rem;
}

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

.cost-performance__ttl__txt2 {
  font-size: 5.6rem;
  font-weight: 600;
  
  color: #fff;
  width: fit-content;
  margin: 0 auto;
}

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

/* 変数にしたい */
.cost-performance__ttl__txt2 em{
   text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.4em; /* 線の太さ */
  text-decoration-color: rgba(227,0,0,1); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}


.cost-performance__contents {
  position: relative;
  z-index: 2;
  padding-inline: 5%;
}

.cost-performance__content__face-block {
  background-image:url(../image/2025_hige_reconstruct/no_add_fee/cost-performance_face-bg.webp);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
  text-align: center;
  padding: 2rem 2.33rem 2.33rem;
  margin-bottom: 2.67rem;
}

.cost-performance__contents__face-img {
  max-width: 36rem;
  display: inline-block;
}


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

.cost-performance__face-part {
  color: #FFF;
  background-color:  #E30000;
  text-align: center;
  font-size: 2.2rem;
  padding: 0.5rem 0;
  font-weight: 600;
  
}

.cost-performance__plan1 {
  color: #fff;
  padding: 4% 0 3%;
  margin: 0 2.4rem;
}

.cost-performance{
  .c-arrow::before,
  .c-arrow::after {
    right: -15%;
  }
}

.cost-performance__plan1__txt1 {
  text-align: center;
  color: #FFF;
  text-shadow: 5px 4px 4px rgba(0, 0, 0, 0.50);

  font-size: 4.67rem;

  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.19rem;
  display: block;
  width: 100%;
  border-bottom: solid #fff 0.13rem;
  margin-bottom: 0.67rem;
}

.cost-performance__plan1__txt2 {
  text-align: center;
  padding: 0.2rem 0.8rem;
  color: #FFF;
  text-shadow: 5px 4px 4px rgba(0, 0, 0, 0.50);

  font-size: 2.33rem;

  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.09rem;
}


.zenshine .cost-performance__plan1__method {
  font-size: 0.5em;
}

.cost-performance__plan3 {
  color: #292929;
  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 {
    border-top:    0.07rem solid #608A00;
    border-right:  0.07rem solid #608A00;
    border-bottom: 0.47rem solid #608A00;
    border-left:   0.07rem solid #608A00;
    background: linear-gradient(95deg, #B4FF0B 27.49%, #8CE900 85.87%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  width: 100%;
  border-radius: 100rem;
  padding: 2% 1%;
  margin-top: 3rem;
}

.cost-performance__plan3__cta__txt1,
.cost-performance__plan3__cta__txt2{
  font-weight: 600;
  font-size: 2.27rem;
}
.cost-performance__plan3__cta__txt1 {
    strong {
    font-size: 2.93rem;
    font-weight: 800;
  }
}


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

/* pain section */

.pain {
  background-image:url(../image/2025_hige_reconstruct/pain/pain_bg.webp);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
  background-size: cover;
  container-type: inline-size;
  overflow: hidden;
}

.pain__inner{
  padding-block: 6rem 6.67rem;
  padding-inline: 5%;
}

.pain__header{
  text-align: center;
  margin: 0 auto;
}

.pain__preface{
  max-width: 32.73rem;
  width: 100%;
  display: inline-block;
  position: relative;
  margin-bottom: 3.33rem;
}
.pain__preface::after{
  content: "";
  height: 1.73rem;
  width: 100%;
  background-image:url(../image/2025_hige_reconstruct/pain/pain_text-line.webp);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  background-size: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* lp/asset/image/2025_hige_reconstruct/pain/pain_header-deco.webp */
}
.pain__preface-text{
  display: block;
  color: #000;
  font-weight: 700;
}
.pain__preface-text:nth-of-type(1){
  font-size: 2.13rem;
  letter-spacing: 0.19rem;
}
.pain__preface-text:nth-of-type(2){
font-size: 3.13rem;
letter-spacing: 0.13rem;
line-height: 1;
margin-bottom: 0.67rem;
}

.pain__header-main{
  color: #000;
  display: inline-block;
  position: relative;
  z-index: 2;
  margin-bottom: 4rem;
}

.pain__header-text{
  font-size: 2.67rem;
  font-weight: 700;
  letter-spacing: -0.13rem;
  line-height: 1;
}
.pain__header-text-sm{
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
}
.pain__header-ttl{
  font-size: 8.67rem;
  font-weight: 900;
  letter-spacing: 0.52rem;
  display: block;
  line-height: 1.2;
  position: relative;
}
.pain__header-ttl--red{
   background: var(--Style, linear-gradient(181deg, #AE1919 -21.09%, #E80404 99.26%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
 }
.pain__header-ttl::after{
  content: "";
  height: 6.67rem;
  width: 5.47rem;
  background-image:url(../image/2025_hige_reconstruct/pain/pain_header-deco.webp);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  position: absolute;
  left: 100%;
  top: -20%;
}

.pain__item{
  text-align: center;
  padding-top: 1.33rem;
  position: relative;
}
.pain__item:nth-of-type(1){
  margin-bottom: 3.47rem;
}
.pain__item:nth-of-type(2){
  margin-bottom: 6.67rem;
}
.pain__item:nth-of-type(3){
  margin-bottom: 6.67rem;
}

.pain__item::before{
  content: "";
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;
  position: absolute;
}

.pain__item:nth-of-type(1)::before{
  background-image:url(../image/2025_hige_reconstruct/pain/pain_deco-icon_1.webp);
  width: 11.5rem;
  height: 20.27rem;
  left: -1%;
  top: -1%;
}
.pain__item:nth-of-type(2)::before{
  background-image:url(../image/2025_hige_reconstruct/pain/pain_deco-icon_2.webp);
width: 18.73rem;
height: 20.53rem;
    right: -8%;
    top: -20%;
}
.pain__item:nth-of-type(3)::before{
  background-image:url(../image/2025_hige_reconstruct/pain/pain_deco-icon_3.webp);
  width: 22.3rem;
  height: 14.87rem;
    left: -12%;
    top: -4%;
}

.pain__number{
    color: #FFF;
    font-family: "DIN Alternate";
    font-size: 4.67rem;
    font-weight: 600;
    letter-spacing: -0.09rem;
    position: relative;
    z-index: 2;
    display: inline-block;
    margin-bottom: 2.8rem;
  }
  .pain__number::before{
    content: "";
    width: 8.4rem;
    height: 8.4rem;
    background-color: #000;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  
}

.pain__ttl{
  color: #000;

  position: relative;
  z-index: 2;
  small{
    font-size: 1.33rem;
  }
}
.pain__ttl-first{
  display: block;
}
.pain__ttl-red{
  color: #E30000;
}

.pain__item:nth-of-type(1){
  .pain__ttl{
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
  }
  .pain__ttl-first{
    letter-spacing: -0.12rem;
  }
  .pain__ttl-red{
    letter-spacing: 0.16rem;
  }
  small{
    letter-spacing: 0.053rem;
  }
}
.pain__item:nth-of-type(1n+2){
  .pain__ttl{
      font-size: 3.33rem;
      font-weight: 600;
      letter-spacing: 0.07rem;
  }
  .pain__ttl-red{
    font-size: 4rem;
  }
}

.pain__anesthesia-img{
    margin-inline: calc(50% - 50cqw);
    margin-bottom: 2.67rem;
    position: relative;
    z-index: 2;
}

.pain__detail{
  color: #000;
  
  font-weight: 500;
  line-height: 1.5;
}
.pain__detail-lg{
  font-size: 1.87rem;
  letter-spacing: 0.037rem;
  text-align: center;
  margin-bottom: 2rem;
  em{
    color: #fff;
       text-decoration: underline; /* 下線 */
        text-decoration-thickness: 1.2em; /* 線の太さ */
        text-decoration-color: rgba(227,0,0,1); /* 線の色 */
        text-underline-offset: -1em; /* 線の位置。テキストに重なるようにやや上部にする */
        text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
  }
}
.pain__detail-sm{
  text-align: left;
  font-size: 1.33rem;
  letter-spacing: 0.027rem;
}














.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 Alternate";
  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;
  
  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 Alternate";
  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: #000;
  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;
  
  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;
  
  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;
  
  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;
  
  color: #000;
  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;
  
  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;
  
  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-new-202605/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;
  
  line-height: 1.7;
  text-align: center;
}

.pain__after__content__txt strong {
  font-size: 2rem;
  font-weight: 600;
  
  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 {
  /* plan header styles */
  position: relative;
  background-color: #000;
}

.plan__header{
  margin-inline: 3.6rem;
      position: absolute;
      top: 6rem;
      z-index: 1;
}
.plan__header-ttl-en{
  color: #fff;
  font-size: 8rem;
  font-family: "DIN Alternate";
  text-align: center;
  margin-bottom: 0.67rem;
  font-weight: bold;
  line-height: 1;
}
.plan__header-ttl-ja{
color: #fff;
  font-size: 2.67rem;
  font-weight: bold;
  text-align: right;
}

.plan__tab-wrapper{
  margin-top: -37%;
}

.plan__tab-btn-area {
  /* plan tab button area styles */
  z-index: 1;
  width: 100%;
  height: 6rem;
  display: flex;
  gap: 1rem;
  margin-bottom: 2.67rem;
  padding-inline: 4rem;
}

.plan__tab-btn {
  /* plan tab button styles */
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
  
  border-radius: 7.33rem;
  border-right: 0.07rem solid #AAA;
  border-bottom: 0.27rem solid #AAA;
  border-left: 0.07rem solid #AAA;
  background: linear-gradient(94deg, #ECECEC 11.45%, #D3D3D3 89.1%, #CFCFCF 101.18%);
}

.plan__tab-btn.active {
  background-color: #000;
  color: #fff;
  border-right: 0.07rem solid #A50000;
  border-bottom: 0.27rem solid #A50000;
  border-left: 0.07rem solid #A50000;
  background: #E30000;
}
.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;
  padding: 0;
}

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

.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 */
  margin-bottom: 0.5rem;
}


.c-plan-item--option-menu{
  .c-plan-item__anotation{
    margin-top: 0.67rem;
  }
}
.c-plan-item:not(:last-of-type),
.c-plan-item--option-menu:not(:last-of-type){
  margin-bottom: 2.67rem;
}

.c-plan-item__cta-area.c-arrow::after,
.c-plan-item__cta-area.c-arrow::before{
  background-color: #fff;
    z-index: 2;
    right: 6.67rem;
}

.c-plan-item__inner {
  /* plan item wrapper styles */
  overflow: hidden;
  background-color: #fff;
  padding-top: 1.33rem;
  padding-inline: 1.33rem;
}

.c-plan-item__main-img-area {
  /* plan item main image area styles */
  flex: 0.5 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 */
    display: flex;
    margin-bottom: 1.73rem;
    justify-content: center;
    align-items: stretch;
}

.c-plan-item__parts{
  min-width: 50%;
  align-self: center;
}

.c-plan-item__parts__title {
  /* plan item content title styles */
  display: flex;
  flex-direction: column;
  width: fit-content;
  align-items: flex-start;
  color: #292929;
  font-size: 3.07rem;
  font-weight: 700;
  letter-spacing: 0.061rem;
  position: relative;
  margin-bottom: 0.13rem;
}
.c-plan-item__parts__title::after{
  content: "";
  height: 0.13rem;
  width: 500%;
  background-color: #000;
  position: absolute;
  top: 100%;
  left: 0;
}

.c-plan-item__parts__select{
  margin: 0.67rem 0 1rem 0.67rem;
  color: #000;
  font-size: 1.47rem;
  font-weight: 700;
  letter-spacing: 0.029rem;
}
.c-plan-item__parts__list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0.33rem;
  }
.c-plan-item__parts__item{
    text-align: center;
    color: #000;
    font-size: 1.33rem;
    font-weight: 700;
    letter-spacing: 0.027rem;
    background-color: #EFEFEF;
    line-height: 1;
    padding: 0.67rem;
  }

.c-plan-item__content__price{
    margin-bottom: 2.53rem;
    margin-inline: 2.47rem;
}

.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__list:nth-of-type(2) .c-plan-item__content__title span {
  background-color: #004271;
}

#zenshin.plan__tab-content .c-plan-item__list: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;
  text-align: center;
  color: #fff;
  border-bottom: 0.33rem solid #A50000;
  background: #E30000;
  padding: 2%;
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
}

.c-plan-item__cta:hover{
    animation: none;
    transform: none;
    opacity: 0.7;
}

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

/* ======================= */

.transfer{
  position: relative;
}
.transfer__contents{
  padding-top: 3.47rem;
  padding-inline: 5%;
  background-image:url(../image/2025_hige_reconstruct/plan/transfer/transfer_bg.webp);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
  background-size: cover;
}
.transfer__preface{
    color: #fff;
    text-align: center;
    display: block;
    font-size: 2.53rem;
    font-weight: 700;
background-color: #221714;
padding: 1.27rem 5% 1.2rem;
}

.transfer__header{
  padding-bottom: 3.33rem;
  text-align: center;
  span{
    display: block;
  }
}

.transfer__header-txt:nth-of-type(1){
  color: #000;
  font-size: 2.67rem;
  font-weight: 700;
  letter-spacing: -0.13rem;
  small{
    font-size: 2rem;
    letter-spacing: 0.04rem;
  }
}
.transfer__header-txt:nth-of-type(2){
    color: #000;
    font-size: 3.33rem;
    font-weight: 800;
    em{
      color: #FFF;
      font-size: 5.33rem;
      font-weight: 900;
      letter-spacing: 0.11rem;

        text-decoration: underline; /* 下線 */
        text-decoration-thickness: 1.2em; /* 線の太さ */
        text-decoration-color: rgba(227,0,0,1);
        text-underline-offset: -1em;
 /* 線の位置。テキストに重なるようにやや上部にする */
        text-decoration-skip-ink: none;
        display: inline-block;
        padding-inline: 0.33rem;
    }
}

.transfer__header-img{
  margin-top: 3.33rem;
  max-width: 38.53rem;
  width: 100%;
  display: inline-block;
}

.transfer__ctatch{
  text-align: center;
  margin-bottom: 2rem;
}
.transfer__ctatch-txt{
  display: inline-block;
  color: #000;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04rem;
  position: relative;
  em{
    background: var(--corporate-color, linear-gradient(108deg, #E30000 14.51%, #FF2727 62.52%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    letter-spacing: 0.04rem;
  }
}

.transfer__merit-list{
  margin-bottom: 3.33rem;
}

.transfer__merit-item{
  border-radius: 0.67rem;
  background: var(--Linear, linear-gradient(136deg, #000 0%, #414141 97.79%));
  box-shadow: 2px 4px 2px 0 rgba(108, 108, 108, 0.40);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 2rem;
  padding: 1.53rem 2rem;
  margin-inline: 5%;
}
.transfer__merit-item:not(:last-child){
  margin-bottom: 0.67rem;
}

.transfer__merit-img{
  max-width: 5.67rem;
}

.transfer__merit-txt{
  color: #FFF;
  font-size: 1.87rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.037rem;
}

.transfer__bring{
  margin-bottom: 3.33rem;
  text-align: center;
  overflow: hidden;
}

.transfer__bring-ttl{
  color: #000;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.044rem;
}

.transfer__bring-ttl{
  color: #000;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.044rem;
  display: inline-block;
  position: relative;
  margin-bottom: 2rem;
}

.transfer__bring-ttl::before,
.transfer__bring-ttl::after{
  content: "";
  height: 0.2rem;
  width: 35%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
}
.transfer__bring-ttl:before{
  right: calc( 100% + 0.47rem);
}
.transfer__bring-ttl::after{
  left: calc( 100% + 0.47rem);
}

.transfer__bring-detail{
  text-align: center;
  color: #000;
  line-height: 1.5;
}
.transfer__bring-detail-lg{
text-align: center;
font-size: 2.67rem;
font-weight: 800;
letter-spacing: 0.053rem;
margin-bottom: 2rem;
   text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.4em; /* 線の太さ */
  text-decoration-color: rgba(227,0,0,1); /* 線の色 */
  text-underline-offset: -0.1em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}
.transfer__bring-detail-md{
font-size: 1.6rem;
font-weight: 600;
letter-spacing: 0.027rem;
margin-bottom: 1.33rem;
}
.transfer__bring-detail-sm{
  font-size: 1.33rem;
  font-weight: 400;
  letter-spacing: 0.027rem;
  text-align: left;
  padding-inline: 5%;
}

/* ======================= */

.plan__transfer {
  padding-bottom: 4rem;
  background: #000;
  overflow: hidden;
  
  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: 23.73rem;
    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: #000 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: #000;
  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: #000 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: 0.13rem 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;
  
}

.plan__qanda {
  /* plan qanda section styles */
}

.plan__qanda__wrapper {
  /* plan qanda wrapper styles */
  background: #fff;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  padding: 2.67rem 4rem;
  margin-bottom: 6.67rem;
}

.plan__qanda__header {
  /* plan qanda header styles */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.53rem;
}

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

.plan__qanda__header__txt {
  /* plan qanda header text styles */
  color: #E30000;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  font-weight: 600;
  
  text-align: left;
  margin-left: 0.33rem;
  margin-bottom: 0.67rem;
}

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

.plan__qanda__content__subtitle {
  /* plan qanda content subtitle styles */
  text-align: left;
  font-size: 2.4rem;
  font-weight: 600;
  color: #000;
  
  line-height: 1.4;
  margin-bottom: 2rem;
  font-weight: 800;
}

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

.plan__qanda__content__txt {
  /* plan qanda content text styles */
    color: #292929;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.032rem;
}
.plan__qanda__content__txt:not(:last-child){
  padding-bottom: 0.67rem;
}

.plan__qanda__content__txt small {
  /* plan qanda content text styles */
color: #000;
font-size: 1.33rem;
letter-spacing: 0.027rem;
}

.plan__qanda__content__anotation{
  margin-top: 0.67rem;
}

/* gakusei section */

.gakusei {
  z-index: 2;
  position: relative;
}

.gakusei__figure-area {
  position: relative;
  z-index: 1;
  margin-top: -14.4rem;
  text-align: center;
}

.gakusei__figure-area__acc-btn {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 3.33rem;
  font-weight: 500;
  
  color: #fff;
  letter-spacing: 0.2rem;
  border-radius: 8.67rem;
  border-right: 0.07rem solid #A50101;
  border-bottom: 0.47rem solid #A50101;
  border-left: 0.07rem solid #A50101;
  background: #E30000;
  max-width: 44rem;
  width: 100%;
  padding: 3.07rem 0.67rem;
  text-align: center;
  margin-bottom: 4rem;
}

.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: #fff;
  padding: 0 2.4rem 2rem ;
  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: #000;
  font-size: 1.2rem;
  text-align: left;
}

.gakusei__figure-area__acc-body__figure {
  width: 100%;
  table-layout: fixed;
}

.gakusei__figure-area__acc-body__figure {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 2px;
}

.gakusei__figure-area__acc-body__figure th,
.gakusei__figure-area__acc-body__figure td {
  background-color: #000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  
  letter-spacing: 0.1rem;
  text-align: center;
  padding: 0.2rem;
  width: 25%;
  height: 6rem;
  box-sizing: border-box;
  vertical-align: middle;
  letter-spacing: normal;
  line-height: 1.2;
}

.gakusei__figure-area__acc-body__figure thead th:first-child {
  background-color: transparent;
}

.gakusei__figure-area__acc-body__figure tbody td {
  background-color: transparent;
  color: #000;
  font-weight: 400;
}

.gakusei__figure-area__acc-body__figure tbody td:nth-child(1) {
  background-color: transparent;
}

.gakusei__figure-area__acc-body__figure tbody td:nth-child(2) {
  background-color: #fff;
}

.gakusei__figure-area__acc-body__figure tbody td:nth-child(3) {
  background-color: #D4E8F7;
}

.gakusei__figure-area__acc-body__figure tbody td:nth-child(4) {
  background-color: #E8D8BE;
}

/* qa section */

.qanda {
  background-color: #fff;
}

.qanda__header {
  background-color: #000;
  background-size: cover;
  padding: 1.8rem;
}

.qanda__header__txt {
  
  font-weight: 600;
  font-size: 4rem;
  color: #fff;
  text-align: center;
}

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

.qa-item {
  display: flex;
  flex-direction: column;
  gap: 2.66rem;
  position: relative;
}
.qa-item:not(:first-child) {
  padding-top: 4rem;
}
.qa-item:not(:last-child) {
  padding-bottom: 4.33rem;
}
.qa-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.13rem;
  opacity: 0.8;
  background-color: #838383;
}

.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;
  width: 100%;
  padding: 1.33rem 2.66rem;
  border-radius: 0.33rem;
  letter-spacing: 0.1rem;
  font-size: 1.87rem;
  font-weight: 600;
}

.qa-item__q-area__txt::after {
  content: "Q.";
  position: absolute;
  top: -2.53rem;
  left: 2%;
  color: #292929;
  text-shadow: 5px 0 0 #FFF;
  font-family: "DIN Alternate";
  font-size: 3.33rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.13rem;
}

.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;
  
  flex: 1;
  background: #000;
  color: #fff;
  width: 100%;
  padding: 27px 2.5rem;
  border-radius: 0.33rem;
  min-height: 14.6rem;
  letter-spacing: 0.1rem;
}

.qa-item__a-area__txt::after {
  content: "A.";
  position: absolute;
  top: -2.4rem;
  left: 6%;
  color: #FFF;
  text-shadow: 0.33rem 0 0 #000;
  font-family: "DIN Alternate";
  font-size: 3.33rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.13rem;
}

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

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

.qa-item__a-area__annotation {
  margin-top: -1rem;
  font-size: var(--font-size-annotation);
  font-weight: var(--font-weight-annotation);
  width: calc(100%  - 17.6rem);
  margin-right: 0;
  margin-left: auto;
  font-weight: 400;
}

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

.flow {
  position: relative;
}

.flow__slider-contents {
  position: relative;
  background-color: #fff;
}

/* intro section */
.introSec01 {
  background: linear-gradient(to bottom, #000, #F2F2F2);
}

.introSec01__start {
  padding-bottom: 10%;
  background: url(/lp-new-202605/asset/image/intro_sec01_start_bg.webp), #FFFFFF center /cover;
}

.introSec01__start .cvBtn {
  margin-top: 4%;
}

.selectable{
  background-image:url(/lp-new-202605/asset/image/2025_hige_reconstruct/selectable/selectable_bg.webp);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
}

.selectable__contents{
  padding: 4rem 5% 4rem;
}

.selectable__contents .splide__slide {
  display: inline-block;
  width: auto!important;
}

.selectable__slideTxt{
  color: #FFF;

  font-size: 3.6rem;/* TODO: フォントサイズ後程SP対応する */

  font-weight: 700;
  line-height: normal;
  background-color: #E30000;
  text-align: center;
  padding: 1.6rem 0.67rem;
}

.selectable__header{
  text-align: center;
  margin-bottom: 1.6rem;
}

.selectable__header-sm{
color: #292929;
font-size: 2.67rem;
font-weight: 800;
line-height: 1.4;
letter-spacing: 0.053rem;
}

.selectable__header-lg{
color: #000;
font-size: 6rem;
font-style: normal;
font-weight: 800;
line-height: 1.2;
letter-spacing: 0.12rem;

  em{
    background: var(--Style, linear-gradient(181deg, #AE1919 -21.09%, #E80404 99.26%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.selectable__balloon{
  padding-block: 2rem;
  padding-inline: 2.33rem;
  background-color: #000;
  position: relative;
  z-index: 2;
  margin-bottom: 2.87rem;
}
.selectable__balloon::after{
  content: "";
  height: 1.6rem;
  width: 100%;
  background-image:url(../image/2025_hige_reconstruct/selectable/selectable__balloon-arrow.webp);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
  background-size: contain;  
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
}
.selectable__parts{
  margin-bottom: 0.93rem;
}

.selectable__parts-item{
  color: #fff;
  border: solid #fff 0.13rem;
  padding: 1rem 0.33rem 0.93rem;
  font-size: 1.87rem;
  text-align: center;
  font-weight: 600;
letter-spacing: 0.037rem;
}


.selectable__parts{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.selectable__txt{
  color: #FFF;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.048rem;
  strong{
  font-size: 3.33rem;
  font-style: normal;
  letter-spacing: 0.07rem;
  }
}

.selectable__parts-nums{
  padding-block: 2.67rem 4rem;
}
.selectable__note {
  color: #292929;
  font-size: 1.33rem;
  font-weight: 500;
  margin-block: 1.33rem 2.67rem;
}

.selectable__conclusion{
  color: #000;
  font-size: 3.33rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.07rem;
  strong{
    color: #FFF;
    letter-spacing: 0.07rem;
        color: #fff;
       text-decoration: underline; /* 下線 */
        text-decoration-thickness: 1.2em; /* 線の太さ */
        text-decoration-color: rgba(227,0,0,1); /* 線の色 */
        text-underline-offset: -1em; /* 線の位置。テキストに重なるようにやや上部にする */
        text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
  }
}

.selectable__slider{
    margin-bottom: 1.33rem;
    padding-inline: 5%;

    .splide__pagination {
      bottom: 1.8rem;
      gap: 1rem;
      right: 5.47rem;
      left: auto;
      width: 13.2rem;
    }

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

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

  .splide__pagination {
      gap: 4%;
      width: 50%;
      left: auto;
      right: -10%;
  }
  .selectable__slideTxt{
        font-size: 2.6rem;
  }
  /* 中央揃え */
  .splide__slide {
    margin-right: 0 !important;
    width: 100% !important;
  }
  .splide__slide.is-next,
  .splide__slide.is-prev {
    filter: brightness(1);
  }
  .splide__track {
    overflow: hidden;
    padding-left: 0 !important;
  }

}


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

.aboutMachine__content {
  position: relative;
}

.aboutMachine__gif {
  position: absolute;
  top: 15%;
  width: 89.3%;
  height: min(44.2vw, 332px);
  left: 5.3%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* feature section */
.featureSec01 {
  position: relative;
  background: url(lp/asset/image/feature_sec_bg.webp);
}

.featureSec01__head {
  background: #5C5C5C;
}

.featureSec01__ttl {
  padding: 1% 5% 0% 5%;
}

.featureSec01__content {
  position: relative;
}

.featureSec01__subttl {
  padding: 7.42% 11.42% 0 11.42%;
}

.featureSec01__point {
  padding: 4% 4% 10% 4%;
}

.featureSec01__pointItem {
  margin-block: 1.5%;
}

.featureSec01__mudage {
  position: absolute;
  width: 17.5%;
  top: 7.8%;
  right: 2.5rem;
  z-index: 4;
}

.featureSec02 {
  position: relative;
  background: url(/lp-new-202605/asset/image/feature_sec_bg.webp);
}

.featureSec02__head {
  background: #5C5C5C;
}

.featureSec02__ttl {
  padding: 1% 5% 0% 5%;
}

.featureSec02__txt {
  padding: 4% 4% 6%;
}

.featureSec02__table {
  padding: 9% 2% 0;
}

.featureSec02__point {
  position: relative;
  margin-top: -1%;
}

.featureSec02__pointTxt {
  position: absolute;
  bottom: 39%;
  right: 4%;
  width: 72%;
}

.featureSec03 {
  position: relative;
  margin-top: -9%;
}

.featureSec03__all {
  margin-bottom: 1.6%;
}

.featureSec03__ttl {
  position: absolute;
  top: 6.5%;
  left: 0;
  width: 100%;
  margin-top: 2%;
}

.featureSec04 {
  position: relative;
  background: #FFF;
}

.planSec01 {
  position: relative;
}

.planSec01__head {
  margin-bottom: -15%;
  margin-top: -1%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.planSec01__headTtl {
  position: absolute;
  content: "";
  top: 9%;
  left: 2%;
  width: 52.5%;
}

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

.payBlock {
  padding-bottom: 7%;
}

.payBlock__head {
  width: 89.3%;
  margin: 0 auto;
}

.planSec02 {
  position: relative;
  z-index: 6;
}

.planSec02__head {
  width: 100%;
}

.planSec02__student {
  margin-top: -15%
}

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

.planSec02__student-menu-clinic {
  margin-bottom: 0.5em;
  font-size: 2rem;
  color: #fff;
}

.planSec02__student-menu-clinic-atn {
  text-align: right;
  display: block;
}

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

.flow__ttl {
  position: absolute;
  top: 5%;
  left: 0;
}

.flow{
    .splide__pagination {
      bottom: 1.8rem;
      gap: 1rem;
      right: 5.47rem;
      left: auto;
      width: 13.2rem;
    }

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

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

}

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

.flow.flow__afi .splide {
  top: 36%;
}

.flow--yahoo {
  padding-block: 0 21%;
}

.flow--yahoo__img {
  background: #838383;
}

.flow--medical {
  background: transparent;
  padding: 0;
  z-index: 0;
  position: relative;
}

.flow--medical_yahoo {
  margin-top: -15%;
}

.flow--medical_list {
  position: absolute;
  bottom: 48%;
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
}

.flow--medical_list_yahoo {
  bottom: 43%;
}

.flow--medical .splide__track {
  padding-left: 0px !important;
}

.flow--medical_arrow {
  width: 34%;
  float: right;
  padding-top: 2%;
}

.flow--medical .splide__pagination {
  bottom: -3.5em;
  width: 34%;
}

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

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

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

.attention__inner {
  margin: 0 auto;
  padding-inline: 5%;
  padding-top: 4rem;
}

.attention__head {
  text-align: center;
  font-weight: 600;
  
}

.attention__subhead {
  margin-block: 1.1em 0.5em;
  font-weight: 600;
  
}

.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%;
}

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

.clinic__head {
    margin-bottom: -18%;
}

.clinicAcd__stateName {
  position: relative;
  text-align: center;
  font-size: 2.5rem;
  line-height: 3.6em;
  color: #fff;
  border-bottom: 1px solid #fff;
  background: #000;
  cursor: pointer;
  font-weight: 600;
  
}

.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: #000;
  background: transparent;
  border: 0.13rem solid #000;
  transition: 0.2s;
  cursor: pointer;
  font-weight: 600;
  
}

.clinicAcd__clinicListName small {
  display: block;
  font-size: 0.6em;
  font-weight: lighter;
  letter-spacing: 0.05em;
  color: #000;
  
  font-weight: 300;
}

.clinicAcd__clinicListName.active {
  margin-bottom: 0;
  color: #fff;
  background: #000;
  border: 0.13rem solid #000;
}

.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%;
  background: #000;
}

.clinicAcd__clinicInfoLabel {
  margin-bottom: 1.33rem;
  display: flex;
  align-items: stretch;
  gap: 1.33rem 2rem;
}

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

.clinicAcd__clinicNotice {
  margin-top: 5.4%;
  padding: 3rem;
  background-color: #fff;
}

.clinicAcd__clinicNoticeInner {
  color: #000;
  font-size: 2rem;
  text-align: center;
  
  font-weight: 600;
}

.clinicAcd__clinicNoticeDetail {
  margin-top: 2rem;
  font-size: 1.8rem;
  color: #292929;
  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.8rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  border-right: solid 0.07rem #fff;
    font-size: 1.6rem;
    font-weight: 700;
    align-items: center;
    justify-content: start;
}

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

.clinicAcd__clinicInfoCv {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 2.1rem;
  line-height: 2.8em;
  border-radius: 2em;
  color: #fff;
  z-index: 1;
      border-top:    0.07rem solid #608A00;
    border-right:  0.07rem solid #608A00;
    border-bottom: 0.47rem solid #608A00;
    border-left:   0.07rem solid #608A00;
    background: linear-gradient(95deg, #B4FF0B 27.49%, #8CE900 85.87%);
    color: #292929;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    padding: 1.33rem 0.33rem;
    max-width: 36rem;
    margin: 2.87rem auto 3.33rem;
  }
  .clinicAcd__clinicInfoCv.c-arrow::before,   
  .clinicAcd__clinicInfoCv.c-arrow::after{
        right: 3%;
        top: 50%;
  }

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

.clinicAcd__clinicInfoMapWrap {
  position: relative;
  margin-bottom: 4.5%;
  aspect-ratio: 2/1;
  background-color: #D9D9D9;
}

.clinicAcd__clinicInfoMapWrap::after {
  content: 'Google Mapが表示されます';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #888;
  font-size: 1.4rem;
  pointer-events: none;
}

.clinicAcd__clinicInfoMap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.clinicAcd__clinicInfoMapWrap.is-loaded::after {
  display: none;
}

.clinicAcd__clinicInfoMapWrap.is-loaded .clinicAcd__clinicInfoMap {
  opacity: 1;
}

.clinicAcd__doctorInfo {
  padding-inline: 3.3%;
}

.clinicAcd__doctorName {
  display: flex;
  align-items: end;
  margin-bottom: 2.3em;
  color: #fff;
}
.clinicAcd__doctorName img{
  display: inline-block;
  background-color: #fff;
}

.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: #fff;
}

.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-image:url(../image/2025_hige_reconstruct/president/president_bg.webp);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: top;
  background-size: cover;
}

.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;
  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;
  font-weight: 400;
}

.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;
  color: #000;
  font-weight: 400;
}

.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_marker {
  font-size: 6.1rem;
  background: -webkit-linear-gradient(bottom, rgb(192, 240, 255) 50%, transparent 50%);
  display: inline;
  background: linear-gradient(bottom, rgb(192, 240, 255) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 1s ease-in-out;
  margin-left: 17%;
}

.js_marker.is-active {
  background-size: 100% 100%;
}

.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);
  }
}

.js_swaying.is-active {
  -webkit-animation: swaying 2s ease-in-out;
  animation: swaying 2s ease-in-out;
}

@-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);
  }
}

.js_shine {
  position: relative;
  overflow: hidden;
  opacity: 1;
}

.js_shine::before {
  transition: cubic-bezier(0.32, 0, 0.67, 0);
  opacity: 0;
  background-color: #fff;
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  width: 30px;
  height: 100%;
}

.js_shine.is-active::before {
  -webkit-animation: shine 0.5s linear;
  animation: shine 0.5s linear;
}

@-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;
  }
}

.js_slideinLeft {
  opacity: 0;
}

.js_slideinLeft.is-active {
  -webkit-animation: slideinLeft 0.4s;
  animation: slideinLeft 0.4s;
  transform: translateX(0) translateY(0);
  opacity: 1;
}

@-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);
  }
}

.js_jump.is-active {
  -webkit-animation-name: jump;
  animation-name: jump;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}

@-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%;
}



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

.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;
}

.medical_body .footer {
  padding-block: 3em 0;
}

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

 .clinicAcd__clinicDetailLink-wrap{
  margin: auto;
  text-align: center;
  margin-bottom: 2.67rem;
  position: relative;
}

.clinicAcd__clinicDetailLink {
  width: 100%;
  padding: 1.2rem 0.33rem 1.13rem;
  line-height: 1;
  color: #292929;
  max-width: 26.67rem;
  font-size: 1.6rem;
  font-weight: 800;
    margin: auto;
  border-radius: 6.67rem;
  border-top: 0.07rem solid #6A6A6A;
  border-right: 0.07rem solid #6A6A6A;
  border-bottom: 0.47rem solid #6A6A6A;
  border-left: 0.07rem solid #6A6A6A;
  background: #F1F1F1;
  border-radius: 2.53rem;
  justify-content: center;
  display: flex;
  cursor: pointer;
  flex-flow: column wrap;
  line-height: 1.3;
}
.clinicAcd__clinicDetailLink.c-arrow:before,
.clinicAcd__clinicDetailLink.c-arrow:after{
  right: 1rem;
}

@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: #636363;
  position: relative;
  padding: 4.67rem 5%;
}

  .p-option-menu__icon {
    height: 13.33rem;
    width: 13.33rem;
    position: absolute;
    left: 50%;
    top: -4rem;
    transform: translateX(-50%);
    background-color: #636363;
    border-radius: 50%;
    z-index: 1;
  }

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

  .p-option-menu__ttl {
    font-size: 2.67rem;
    text-align: center ;
    margin-bottom: 2rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
  }

  .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: #636363;
  }
  