body.page-template-page-about,
body.page-template-page-contact {
  font-family: 'Shippori Mincho', sans-serif;
  & .lt-content-title {
    padding-left: 2em;
  }

  & h4 {
    margin-bottom: 20px;
    font-size: 4.6vw;
    color: #2d2e54;
  }

  & p {
    margin-bottom: 15px;
  }
}

.padding-b60{
	padding-bottom: 60px;
}
#page-container {
  /* 固 定 ペ ー ジ の ヘ ッ ダ ー 画 像
  -------------------------------------------------*/
  & #page-head {
    width: 100%;
    height: 200px;
    & .page-title {
      height: 200px;
      color: #fff;
      line-height: 1.5;
      display: flex;
      justify-content: center;
      flex-direction: column;
		  padding-left: 15px;
      & .en {
        font-size: 5.6vw;
        font-weight: 600;
        letter-spacing: .2em;
      }
      & .jp {
        font-size: 2.8vw;
        font-weight: 600;
        letter-spacing: .2em;
      }
    }
  }
  /* 個別ページのヘッダー画像 */
  & #page-head.price-list {
    background: url(images/page_h_plice.jpg) no-repeat center;
    background-size: cover;
  }
  & #page-head.faq {
    background: url(images/page_h_faq.jpg) no-repeat center;
    background-size: cover;
  }	 
  & #page-head.job {
    background: url(images/page_h_job.jpg) no-repeat center;
    background-size: cover;
  }	 
  & #page-head.discount {
    background: url(images/discount/page_h_discount.jpg) no-repeat center;
    background-size: cover;
  }	 
  & #page-head.about {
    background: url(images/about/page_h_about.jpg) no-repeat center;
    background-size: cover;
  }	 
  & #page-head.visia {
    background: url(images/visia/page_h_visia.jpg) no-repeat center;
    background-size: cover;
  }	 
  & #page-head.contact {
    background: url(images/page_h_contact.jpg) no-repeat center;
    background-size: cover;
  }	 
	
  & .page-inner {
    padding: 0px 17px;
    & ul.price-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      column-gap: 20px;
      row-gap: 10px;
      & li {
        border-bottom: 1px solid #e0d9cb;
        & .arrow-btn {
          padding-bottom: 10px;
          & a {
            font-family: 'Shippori Mincho', sans-serif;
            font-size: 3.2vw;
            color: #2d2e54;
            display: block;
            text-decoration: none;
            position: relative;
          }
        }
        & .arrow-btn a::before,
        & .arrow-btn a::after {
          content: "";
          position: absolute;
          top: 0;
          bottom: 0;
          right: 10px;
          margin: auto;
          vertical-align: middle;
        }
        & .arrow-btn a::before {
          width: 16px;
          height: 16px;
          -webkit-border-radius: 50%;
          border: 1px solid #2d2e54;
          border-radius: 50%;
          background: #fff;
        }
        & .arrow-btn a::after {
          right: 16px;
          width: 4px;
          height: 4px;
          border-top: 1px solid #2d2e54;
          border-left: 1px solid #2d2e54;
          transform: rotate(-135deg);
        }
      }
    }
    & #laser, #stellar, #suikou {
      height: 300px;
      margin-bottom: 60px;
      background: #ccc;
    }
  }
}


/* ===============================
  Card Grid（SP）
=============================== */
.card-grid{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  padding: 20px 0px;
 font-family: "Shippori Mincho", serif;
}
.card-grid_1{
  display: grid !important;
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  gap: 12px !important;
  padding: 20px 0px;
 font-family: "Shippori Mincho", serif;
}

/* ===============================
  Card（デザイン） ページ内リンク ボタン
=============================== */
.card-link{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #fff;
  border-radius: 12px;
  padding: 12px 12px;
  text-decoration: none;
  box-sizing: border-box;
  width: 100%;

  /* ほんのり影＋縁の柔らかさ */
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-text{
  min-width: 0; /* 長文のはみ出し対策 */
}

.card-title{
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #1f2a44;
  line-height: 1.3;

  /* 1行にしたい場合はコメント外す */
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}

.card-sub{
  display: block;
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: 0.08em;
  color: #b49a42;
}

/* 右の丸ボタン（矢印） */
.card-arrow{
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #f3ece7;
  position: relative;
  margin-left: 10px;
}

/* 矢印（CSSだけで描画） */
.card-arrow::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-right: 1px solid #1f2a44;
  border-bottom: 1px solid #1f2a44;
  transform: translate(-55%, -50%) rotate(-45deg);
}

/* hover/active */
.card-link:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.09);
}
.card-link:active{
  transform: scale(0.99);
}


/* 中 央 寄 せ コ ン テ ン ツ タ イ ト ル
-------------------------------------------------*/
.menu-section-title {
  font-family: "Shippori Mincho", serif;
  margin: 0 0 40px;
  text-align: center;
  line-height: 1.2;
  display: grid;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  & .jp {
    font-size: 6vw;
    color: #2d2e54;
  }
  & .en {
    font-size: 3.2vw;
    color: #bdae61;
  }
}

.treatment-title:after {
	font-family: "annabelle-jf", sans-serif !important;
  content: 'Treatment';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  color: rgba(255, 255, 255, 0.7);
  text-stroke: 1px #ccc;
  paint-order: stroke;
  white-space: nowrap;
  z-index: -1;
}

.menu-section-title_m-bottom_none {
  font-family: "Shippori Mincho", serif;
  margin: 0px;
  text-align: center;
  line-height: 1.2;
  display: grid;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  & .jp {
    font-size: 6vw;
    color: #2d2e54;
  }
  & .en {
    font-size: 3.2vw;
    color: #bdae61;
  }
}

.treatment-title_m-bottom_none:after {
	content: 'Treatment';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  color: rgba(255, 255, 255, 0.7);
  paint-order: stroke;
  white-space: nowrap;
  z-index: -1;
  font-family: "annabelle-jf", sans-serif !important;
}

.flow-title:after {
	content: 'Flow';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  color: rgba(255, 255, 255, 0.7);
  paint-order: stroke;
  white-space: nowrap;
  z-index: -1;
	font-family: "annabelle-jf", sans-serif !important;
}

.price-title::after {
  content: 'Price List';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  color: rgba(255, 255, 255, 0.7);
  paint-order: stroke;
  white-space: nowrap;
  z-index: -1;
	font-family: "annabelle-jf", sans-serif !important;
}

.faq-title::after {
  content: 'Question';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  color: rgba(255, 255, 255, 0.7);
  paint-order: stroke;
  white-space: nowrap;
  z-index: -1;
	font-family: "annabelle-jf", sans-serif !important;
	color: #f8f5f3;
}


/* 概 要 説 明 
-------------------------------------------------*/
.page {
  background: #f8f5f3;
  & .page-inner {
    & .overview-center-alignment {
      color: #2d2e54;
      text-align: center;
      & .big-title {
        margin-bottom: 20px;
        font-size: 4.2vw;
        font-weight: 600;
  		  font-family: 'Shippori Mincho', sans-serif;
      }
      & .sub-title {
        margin-bottom: 15px;
        font-size: 3.6vw;
        font-weight: 600;
      }
    }
  }
  & .overview-center-alignment {
    color: #2d2e54;
    & .text-area {
      & p.overview-explain {
        margin-bottom: 20px;
        font-size: 4.4vw;
        font-weight: 600;
      }
      & p.sub-explain {
        margin-bottom: 15px;
        font-size: 3.6vw;
        font-weight: 600;
      }
      & p {
        margin-bottom: 20px;
      }
    }
    & img {
      margin: 0 auto;
      display: block;
    }
  }
  & .treatment-features {
    padding-top: 10px;
    & h2 {
      margin-bottom: 20px;
      padding: 5px 5px 5px .5em;
      font-weight: 400;
      color: #fff;
      border-radius: 10px;
      background: #2d2e54;
    }
    & .container {
      margin-bottom: 40px;
      padding: 20px;
      border-radius: 10px;
      background: #fff;
  		& img{
	  		width: 100%;
		  }
      & .title {
        width: 100%;
        margin-bottom: 1em;
        padding-left: 22px;
        color: #2d2e54;
        border-bottom: 1px solid #ccc;
        position: relative;
        display: inline-block;
        text-align: left;
      }
      & .title:before {
        content: '';
        width: 18px;
        height: 18px;
        background: #282997;
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        margin: auto;
      }
      & .title:after {
        content: '';
        position: absolute;
        top: 50%;
        left: 5px;
        width: 6px;
        height: 6px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: translateY(-50%) rotate(45deg);
      }
      & .content-body, .content-body-textonly {
        text-align: center;
        & .text-area {
          margin-bottom: 20px;
          color: #2d2e54;
          text-align: left;
          & .bg-details {
            margin: 15px 0;
            padding: 10px 17px;
            border-radius: 10px;
            background: #f4f2e3;
    		  	text-align: left;
            & h3 {
              font-weight: 400;
              color: #ada249;
              & span.round {
                margin-right: .5em;
                padding: 3px .5em;
                color: #fff;
                text-align: center;
                border-radius: 100vmax;
                background: #ada249;
              }
            }
          }
        }
      }
    }
  }
}


/* 施 術 概 要 ・ リ ス ク ・ 注 意 点
-------------------------------------------------*/
.faq {
  background: #fff;
}

.page-job {
  padding: 50px 17px 0px;
  background: #f8f5f3;
  & dl.job-list {
	  
    display: grid;
    grid-template-columns: 1fr 2fr;
    row-gap: 10px;
    & dt {
      padding: 10px;
      display: flex;
      align-items: center;
      background: #f4ece8;
    }
    & dd {
      padding: 10px;
      background: #fff;
    }
  }
	  & .treatment-features {
    padding-top: 10px;
    & h2 {
      margin-bottom: 20px;
      padding: 5px 5px 5px .5em;
      font-weight: 400;
      color: #fff;
      border-radius: 10px;
      background: #2d2e54;
    }
	}
	
}


.faq-padding{
    padding: 60px 0px 115px 0px;
}


/* 3　つ　の　特　典
-------------------------------------------------*/
.page-discount{
	padding: 60px 0px 100px 0px;
}
.page-discount-list,
.features-content .txt-area{
  padding: 50px 17px 0px;
  background: #fff;
  & dl.job-list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 10px;
	  	  & div.job-row{
			border: solid 1px #e0dacb;
			display: grid;
			grid-template-columns: 1fr 2fr;	
			  border-radius: 10px;
			  overflow: hidden;
			  background: #fff; /* ← これ必須 */
	  }
    & dt {
      padding: 10px;
      display: flex;
      align-items: center;
      background: #f4ece8;
    }
    & dd {
      padding: 10px;
      background: #fff;
    }
  }
	  & .treatment-features {
    padding-top: 10px;
    & h2 {
      margin-bottom: 20px;
      padding: 5px 5px 5px .5em;
      font-weight: 400;
      color: #fff;
      border-radius: 10px;
      background: #2d2e54;
    }
	}
	
}


/* よ く あ る ご 質 問
-------------------------------------------------*/
/* よくあるご質問（SPベース）
-------------------------------------------------*/
.page-faq {
  padding: 80px 17px;
	background: #fff;
	
}

.page-faq .faq-inner{
  max-width: 1080px;
  margin: 0 auto;
}

.page-faq .faq-accordion{
  border-top: 1px solid rgba(21, 30, 47, 0.18);
  font-family: "Shippori Mincho", serif;
}

.page-faq .question{
  position: relative;
  background: #fff;
  cursor: pointer;

  padding: 20px 44px 28px 36px; /* 左Q分 + 右矢印分 */
  border-bottom: 1px solid rgba(21, 30, 47, 0.18);
}

.page-faq .question span{
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #151E2F;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* 左の Q（大きめ） */
.page-faq .question::before{
  content: "Q";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 700;
  color: #151E2F;
}

/* 右の ▲▼（あなた指定：閉じてる時▲ / 開くと▼） */
.page-faq .question::after{
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);

  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 9px solid #151E2F; /* ▲ */
}

/* 開いたら ▼ にする（三角を反転） */
.page-faq .question.active::after{
  border-bottom: 0;
  border-top: 9px solid #151E2F; /* ▼ */
}

/* A（初期は非表示） */
.page-faq .answer{
  display: none;
  background: #F3EDE7;   /* 添付の薄ベージュ */
  padding: 18px 18px 18px 54px;
  margin: 14px 0;
}

/* A枠の横幅を少し内側にしたい場合（添付っぽく） */
.page-faq .answer{
  border-radius: 2px;
}

.page-faq .answer span{
  display: block;
  position: relative;
  color: #151E2F;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* 左の A（赤系） */
.page-faq .answer span::before{
  content:"A";
  position: absolute;
  left: -38px;            /* padding-left 54px とのバランス */
  top: 0;
  font-size: 18px;
  font-weight: 700;
  color: #B84B2A;         /* 添付のAっぽい色 */
}

/* hover（任意：ほんのり） */
.page-faq .question:hover{
  background: #fafafa;
}


/* 当 院 に つ い て / a b o u t
-------------------------------------------------*/
/* タイトル背景にテキスト */
.system-title::after {
  content: 'System';
  font-family: "annabelle-jf", sans-serif !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  color: rgba(255, 255, 255, 0.7);
  paint-order: stroke;
  white-space: nowrap;
  z-index: -1;
}

.process-title::after {
  content: 'Process';
  font-family: "annabelle-jf", sans-serif !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  color: rgba(255, 255, 255, 0.7);
  paint-order: stroke;
  white-space: nowrap;
  z-index: -1;
}

.minors-title::after {
  content: 'For Minors';
  font-family: "annabelle-jf", sans-serif !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  color: rgba(255, 255, 255, 0.7);
  paint-order: stroke;
  white-space: nowrap;
  z-index: -1;
}

.concept {
  padding-bottom: 60px;
  background: url("images/bg_vista.png") repeat center center;
  background-size: cover;
  & .concept-inner {
    width: 90%;
    margin: 0 auto;
    padding: 35px 0;
    position: relative;
    & .concept-main {
      margin-top: 180px;
    }
    & .concept-image {
      & .concept-image-item {
        width: 50%;
        position: absolute;
      }
      & .back-image {
        top: 100px; right: -10%;
      }
      & .front-image {
        top: 145px; right: 25%;
      }
    }
  }
  & p {
    margin-bottom: 15px;
  }
}

.approach-wrap.with-background {
  background: #fff;
}

.approach-wrap {
  & .approach-inner {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 60px;
    display: grid;
    & .approach-image {
      width: 60%;
      margin-top: -50px;
    }
    & .approach-image.right-image {
      margin: -50px 0 0 auto;
    }
    & .approach-message {
      margin-top: 25px;
      & h3 {
        margin-bottom: 20px;
        font-size: 4.2vw;
        font-weight: 600;
      }
    }
  }
}

.first-timers {
  padding: 60px 0;
  background: #fff;
  & .first-timers-inner {
    width: 90%;
    margin: 0 auto;
    & figure {
      margin-bottom: 20px;
    }
  }
  & .greeting {
    width: 90%;
    margin: 0 auto;
    padding: 20px 17px;
    border-radius: 8px;
    background: #f9f5f3;
    & .greeting-title {
      margin-bottom: 20px;
      font-size: 6vw;
      font-weight: 600;
      letter-spacing: .2em;
    }
    & figure {
      margin-bottom: 20px;
      text-align: center;
    }
    & .name {
      font-size: 5vw;
      font-weight: 600;
      & .post {
        font-size: 4.2vw;
      }
      & .alphabet {
        font-size: 3.6vw;
        font-weight: normal;
      }
    }
  }
}

.system {
  background: #f9f5f3;
  & .system-inner {
    width: 90%;
    margin: 0 auto;
    padding: 60px 0;
    & ul.system-step {
      margin-bottom: 40px;
      display: grid;
      row-gap: 40px;
      & li {
        padding: 20px;
        border-radius: 8px;
        background: #fff;
        & .step-num {
          margin: 0 0 40px;
          text-align: center;
          line-height: 1.2;
          font-size: 10vw;
          color: #2d2e54;
          display: grid;
          justify-content: center;
          align-items: center;
          position: relative;
          z-index: 1;
          &::after {
            content: 'Our Promise';
            font-family: "annabelle-jf", sans-serif !important;
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 7vw;
            color: rgb(242 239 222);
            paint-order: stroke;
            white-space: nowrap;
            z-index: -1;
          }
        }
        & .title {
          margin: 15px 0;
          font-size: 4.6vw;
          font-weight: 600;
          text-align: center;
        }
      }
    }
  }
}

.process {
  background: #f3ece7;
  & .process-inner {
    width: 90%;
    margin: 0 auto;
    padding: 60px 0 30px;
    & .content-details {
      margin-bottom: 40px;
      & h4 {
        text-align: center;
      }
    }
    & ul.process-step {
      display: flex;
      overflow-x: scroll;
      scroll-snap-type: x mandatory;
		
    & li:last-child {
      & .process-item::after {
        content: none;
      }
    }
  
      & li {
        padding: 0 20px 0 0;
        flex: 0 0 100%;
        scroll-snap-align: start;
        & .step-cercle {
		 font-family: "Shippori Mincho", serif;	
          width: 80px;
          height: 80px;
          margin: 0 auto 20px;
          color: #bab05a;
          text-align: center;
          line-height: 1;
          border: 1px solid #bab05a;
          border-radius: 100vmax;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          & span {
            font-size: 8vw;
            font-weight: 600;
          }
        }
        & .process-item {
          padding: 20px 1em;
          border-radius: 10px;
          background: #fff;
          position: relative;
          &::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            border-style: solid;
            border-width: 10px 0 10px 20px;
            border-color: transparent transparent transparent #2d2e54;
            translate: 100% -50%;
          }
          & .title {
            margin: 10px 0;
            font-size: 4.8vw;
            font-weight: 600;
            text-align: center;
            color: #2d2e54;
			  font-family: "Shippori Mincho", serif;
          }
        }
        & .process-item.no-triangle::after {
          content: none;
        }
      }
    }
  }
}



.for-minors {
  background: url("images/bg_vista.png") repeat center center;
  background-size: cover;

  & .minors-inner {
    width: 90%;
    margin: 0 auto;
    padding: 100px 0 100px;
    text-align: center;

    /* ここがレイアウトの肝 */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
  }

  & p {
    width: 100%;
    margin: 10px 0 10px;
    color: #2d2e54;
    opacity: .75;
  }

  /* 1個1個は「箱」扱い（サイズだけ担当） */
  & .round-arrow-btn {
    width: 100%;
    max-width: 380px; /* SPの最大幅 */
    margin: 0;        /* ←今の 40px auto を消してgap管理に */
  }

  /* 見た目は a に集約（これで崩れにくい） */
  & .round-arrow-btn a {
    display: block;
    padding: 18px 64px 18px 28px; /* 右に矢印スペース */
    border: 1px solid #2d2e54;
    border-radius: 100vmax;
    background: #2d2e54;
    color: #fff;
    text-decoration: none;
    position: relative;
    line-height: 1.25;
    text-align: left;          /* 添付1っぽく */
    font-size: 18px;
  }

  & .round-arrow-btn a span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #bdae61;
    letter-spacing: .02em;
  }

  /* 右の丸＋矢印（a基準で配置） */
  & .round-arrow-btn a::before,
  & .round-arrow-btn a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  & .round-arrow-btn a::before {
    right: 18px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
  }
  & .round-arrow-btn a::after {
    right: 28px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #2d2e54;
    border-right: 2px solid #2d2e54;
    transform: rotate(45deg);
  }

  /* hover（任意） */
  & .round-arrow-btn a:hover {
    opacity: .92;
  }
}



/* 関連ページタイトル：＼ ／ */
.slash .menu-section-title{
  position: relative;
  text-align: center;
  padding: 0 120px; /* 線がタイトルに被らないよう余白 */
}

/* 線（＼ ／） */
.slash .menu-section-title::before,
.slash .menu-section-title::after{
  content: "";
  position: absolute;
  top: 22px;              /* 線の高さ */
  width: 60px;            /* 線の長さ */
  height: 1px;            /* 太さ（見えない時は2px以上推奨） */
  background: #2d2e54;    /* いったん濃い色で確認 */
  opacity: 1;             /* いったん100%で確認 */
  z-index: 2;
}

/* 線（＼ ／） */
.slash .menu-section-title::before{
  left: 50%;
  transform: translateX(-265px) rotate(50deg);   /* ← 左を＼（+）に */
}

.slash .menu-section-title::after{
  left: 50%;
  transform: translateX(200px) rotate(-50deg);   /* ← 右を／（-）に */
}








/* 割引・会員制度のご案内 */
.page-discount-list .interval {
      margin-bottom: 40px;
      padding: 10px 17px;
      border-radius: 10px;
      background: #f8f5f3;
      & h3 {
        width: 100%;
        margin-bottom: 1em;
        padding-left: 22px;
        color: #2d2e54;
        border-bottom: 1px solid #ccc;
        position: relative;
        display: inline-block;
        &::before {
          content: '';
          width: 18px;
          height: 18px;
          background: #baaf5a;
          border-radius: 50%;
          position: absolute;
          top: 0;
          left: 0;
          bottom: 0;
          margin: auto;
        }
        &::after {
          content: '';
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 4px 0 4px 6px;
          border-color: transparent transparent transparent #fff;
          position: absolute;
          top: 0;
          left: 6px;
          bottom: 0;
          margin: auto;
        }
      }
	& .interval-point{
		background: #fff;
		padding: 15px;
		margin: 15px 0px;
		border-radius: 10px;
		border: solid 1px #b75025;
		 font-family: "Shippori Mincho", serif;
		
		& span{
			background: #b75025;
			color: #fff;
			border-radius: 20px;
			padding: 5px 12px;
			margin-bottom: 10px;
		}
		
		& p{
			color: #b75025;
			margin-top: 10px;
		}
	}
}

/* お 問 い 合 わ せ / c o n t a c t
-------------------------------------------------*/
.contact-greeting {
  padding: 60px 17px;
  & ul.contact-link {
    margin: 20px 0;
    display: grid;
    row-gap: 20px;
    justify-content: center;
    align-items: center;
    & a {
      width: 100%;
      padding: .5em 1em;
      color: #fff;
      display: block;
      border: 1px solid #2d2e54;
      border-radius: 100vmax;
      background: #2d2e54;
    }
  }
}

.consent {
  padding: 0 17px;
  & ul.important-notice {
    padding-left: 1em;
    text-indent: -1em;
  }
}

#contactForm {
  margin: 0 1em;
  padding: 40px 17px;
  border-radius: 10px;
  background: #fff;
  & .item {
    margin: 5px 0;
    & label {
      width: 100%;
      display: inline-block;
    }
    & input {
      width: 100%;
    }
    & .visit-block {
      margin-bottom: 20px;
      & p {
        margin: 0;
      }
      & .select-time {
        margin-top: 10px;
        text-align: center;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 2fr;
        align-items: center;
        & label.all-day input {
          width: 10%;
        }
      }
    }
  }
  & .message {
    display: grid;
  }
  & button {
    width: 50%;
    margin: 20px auto 10px;
    display: block;
  }
}

#confirmModal {
  margin: 0 1em;
  padding: 30px 17px;
  border-radius: 10px;
  background: #f5ece8;
  & .modal-inner {
    & th,
    & td {
      padding: 5px 0;
    }
  }
  & .confirm-btn {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
  }
}

#result {
  padding: 30px 0;
  text-align: center;
}




/* ****************************************************

		 　D e s k T o p C S S

***************************************************** */
@media screen and (min-width: 960px) {
  #page-container {
    /* 固 定 ペ ー ジ の ヘ ッ ダ ー 画 像
    -------------------------------------------------*/
    & #page-head {
      height: 400px;
      & .page-title {
        height: 400px;
		
        & .en {
          font-size: 28px;
          font-weight: 400;
        }
        & .jp {
          font-size: 18px;
          font-weight: 400;
        }
      }
    }
    /* 料金のヘッダー画像 */
    & #page-head.price {
      background: url(images/page_h_price.jpg) no-repeat center;
      background-size: cover;
    }
    & #page-head.faq {
      background: url(images/page_h_faq.jpg) no-repeat center;
      background-size: cover;
    }
    & .page-inner {
      width: 1080px;
      margin: 0 auto;
      & ul.price-list {
        margin-bottom: 120px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 40px;
        row-gap: 30px;
        & li {
          & .arrow-btn {
            padding-bottom: 30px;
            & a {
              padding-left: 10px;
              font-size: 18px;
            }
          }
          & .arrow-btn a::before,
          & .arrow-btn a::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            right: 10px;
            margin: auto;
            vertical-align: middle;
          }
          & .arrow-btn a::before {
            width: 26px;
            height: 26px;
            -webkit-border-radius: 50%;
            border: 1px solid #2d2e54;
            border-radius: 50%;
            background: #fff;
          }
          & .arrow-btn a::after {
            right: 19px;
            width: 7px;
            height: 7px;
            border-top: 1px solid #2d2e54;
            border-left: 1px solid #2d2e54;
            transform: rotate(-135deg);
          }
        }
      }
      & #laser, #stellar, #suikou {
        height: 300px;
        margin-bottom: 60px;
        background: #ccc;
      }
    }
  }

  /* ページ内リンク 背景白ボタン
  -------------------------------------------------*/	
  /* ===============================
    PC（960px〜）：4つ横並び
  =============================== */
  & .grid4{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 26px !important;
  }
  & .grid3{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 26px !important;
  }
  & .grid2{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 26px !important;
  }
  & .card-grid{
    padding: 20px 0px;
    max-width: 1080px;
    margin: 0 auto;
  }
  & .card-link{
    padding: 24px 22px;
    border-radius: 22px;
  }
  & .card-title{
    font-size: 16px;
  }
  & .card-sub{
    font-size: 10px;
  }
  & .card-arrow{
    width: 30px;
    height: 30px;
  }

  /* 中 央 寄 せ コ ン テ ン ツ タ イ ト ル
  -------------------------------------------------*/
  & .menu-section-title, .menu-section-title_m-bottom_none {
    & .jp {
      font-size: 38px;
    	margin-bottom: 10px;
    }
    & .en {
      font-size: 12px;
      letter-spacing: 0.3em;
    }
  }

  & .treatment-title:after {
    content: 'Treatment';
    font-size: 80px;
    font-family: "annabelle-jf", sans-serif !important;
    font-weight: 400;
    font-style: normal; 
    -webkit-text-stroke: 0; 
  }

  & .flow-title:after {
    content: 'Flow';
    font-size: 80px;
    font-family: "annabelle-jf", sans-serif !important;
    font-weight: 400;
    font-style: normal;  
    -webkit-text-stroke: 0;	  
	}

  & .price-title::after {
    content: 'Price List';
    font-size: 80px;
    font-family: "annabelle-jf", sans-serif !important;
    font-weight: 400;
    font-style: normal; 
    -webkit-text-stroke: 0;	 	  
	}

  & .faq-title::after {
    content: 'Question';
    font-size: 80px;
    font-family: "annabelle-jf", sans-serif !important;
    font-weight: 400;
    font-style: normal;  
    -webkit-text-stroke: 0;	 	  
	}	

  /* 施 術 概 要
  -------------------------------------------------*/
  & .page {
    background: #f5ece8;
    & .page-inner {
      max-width: 1080px;
      margin: 0 auto;
      & .overview-center-alignment {
  		  max-width: 1080px;
	  	  margin: 0 auto ;
        & .big-title {
          font-size: 22px;
		      text-align: center;
			    margin-bottom: 40px;
        }
        & .sub-title {
          padding: 0 8em;
          font-size: 16px;
    			text-align: center;
		    	margin-bottom: 20px;
    			font-weight: 600;
        }
		    & ul{
  			  max-width: 600px;
	  		  margin: 20px auto;
		  	  display: inline-block;
			    list-style: circle;
			    & li{
  				  text-align: left;
	  		  }
		    }
      }
      & .overview {
        display: grid;
        grid-template-columns: 1.6fr 1.4fr;
  		  column-gap: 50px;
        & .text-area {
          & p.overview-explain {
            margin-bottom: 40px;
            font-size: 22px;
          }
          & p.sub-explain {
            margin-bottom: 30px;
            font-size: 16px;
          }
          & p {
            margin-bottom: 40px;
          }
        }
        & img {
          margin: 0 auto;
          display: block;
        }
      }
      & .treatment-features {
        padding-top: 60px;
        & h2 {
          margin-bottom: 20px;
          padding-left: 1.5em;
          font-weight: 400;
          color: #fff;
          border-radius: 4px;
          background: #2d2e54;
    		  font-size: 1.35em;
        }
        & .container {
          margin-bottom: 40px;
          padding: 20px 40px;
          border-radius: 0px 0px 10px 10px;
		      border-top: solid 1px #282997 ;
          background: #fff;
          & .content-body {
            display: grid;
            grid-template-columns: 2fr 1fr;
            column-gap: 30px;
            & .text-area {
              margin-bottom: 20px;
              text-align: left;
            }
          }
        }
      }
    }
  }
	& .content-body-textonly {
    display: contents;
    column-gap: 30px;
	}

	& .content-body-textonly .bg-details {
		margin: 15px 0;
		padding: 10px 17px;
		border-radius: 10px;
		background: #f4f2e3;
		text-align: left;
	}
	& .bg-details h3 {
		font-weight: 400;
		color: #ada249;
  }
	& .bg-details h3 span.round {
		margin-right: .5em;
		padding: 3px .5em;
		color: #fff;
		text-align: center;
		border-radius: 100vmax;
		background: #ada249;
  }
	& .job-list dt{
		font-weight: 600;
		font-size: 14px;
	}
	& .job-list dd{
    font-size: 13px;
    font-feature-settings: "palt";
    line-height: 2;
    letter-spacing: .05em;
  }
	

  /* 施 術 概 要 ・ リ ス ク ・ 注 意 点
  -------------------------------------------------*/
  & .page-job {
	  padding: 80px 17px 0px 17px;
	  & .job-inner {
		  max-width: 1080px;
      margin: 0 auto;
      & dl.job-list {
        display: grid;
        grid-template-columns: 1fr 2fr;
        row-gap: 10px;
        & dt {
          padding: 25px;
          display: flex;
          align-items: center;
          background: #f4ece8;
        }
        & dd {
          padding: 25px;
        }
      }
    }
    & .treatment-features {
      padding-top: 60px;
      & h2 {
        margin-bottom: 20px;
        padding-left: 1.5em;
        font-weight: 400;
        color: #fff;
        border-radius: 4px;
        background: #2d2e54;
  		  font-size: 1.35em;
      }
	  }
  }

  /* よ く あ る ご 質 問
  -------------------------------------------------*/
  /* よくあるご質問（PCベース）
  -------------------------------------------------*/	
  & .page-faq .question{
    position: relative;
    background: #fff;
    cursor: pointer;
    padding: 28px 44px 28px 54px; /* 左Q分 + 右矢印分 */
    border-bottom: 1px solid rgba(21, 30, 47, 0.18);
  }

  & .page-faq .question span{
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #151E2F;
    letter-spacing: 0.06em;
    line-height: 1.6;
  }

  /* 左の Q（大きめ） */
  & .page-faq .question::before{
    content: "Q";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 700;
    color: #151E2F;
  }

  /* 右の ▲▼（あなた指定：閉じてる時▲ / 開くと▼） */
  & .page-faq .question::after{
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);

    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 9px solid #151E2F; /* ▲ */
  }

  /* 開いたら ▼ にする（三角を反転） */
  & .page-faq .question.active::after{
    border-bottom: 0;
    border-top: 9px solid #151E2F; /* ▼ */
  }	

  /* 当 院 に つ い て / a b o u t
  -------------------------------------------------*/
  & body.page-template-page-about {
    & h4 {
      margin-bottom: 20px;
      font-size: 24px;
      color: #2d2e54;
    }
  }
  /* タイトル背景にテキスト */
  & .system-title::after {
    content: 'System';
    font-family: "annabelle-jf", sans-serif !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7vw;
    color: rgba(255, 255, 255, 0.7);
    paint-order: stroke;
    white-space: nowrap;
    z-index: -1;
  }

  & .process-title::after {
    content: 'Process';
    font-family: "annabelle-jf", sans-serif !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7vw;
    color: rgba(255, 255, 255, 0.7);
    paint-order: stroke;
    white-space: nowrap;
    z-index: -1;
  }

  & .minors-title::after {
    content: 'For Minors';
    font-family: "annabelle-jf", sans-serif !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7vw;
    color: rgba(255, 255, 255, 0.7);
    paint-order: stroke;
    white-space: nowrap;
    z-index: -1;
  }
	
  & .minors-title::after {
    content: 'For Minors';
    font-family: "annabelle-jf", sans-serif !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7vw;
    color: rgba(255, 255, 255, 0.7);
    paint-order: stroke;
    white-space: nowrap;
    z-index: -1;
  }

  & .concept {
    & .concept-inner {
      width: 1200px;
      padding: 60px 0;
      position: relative;
      & .concept-main {
        max-width: 560px;
        margin: 0;
      }
      & .concept-image {
        & .concept-image-item {
          width: 360px;
          position: absolute;
        }
        & .back-image {
          top: 100px; right: 0;
        }
        & .front-image {
          top: 184px; right: 21%;
        }
      }
    }
    & p {
      margin-bottom: 15px;
    }
  }

  & .approach-wrap.with-background {
    background: #fff;
  }

  & .approach-wrap {
    & .approach-inner {
      width: 1200px;
      padding: 0px 0 100px;
      grid-template-columns: repeat(2, 1fr);
      & .approach-image {
        width: 380px;
        margin: -50px auto 0;
      }
      & .approach-image.right-image {
        margin: -50px auto 0;
        order: 2;
      }
      & .approach-message {
        margin-top: 80px;
        & h3 {
          margin-bottom: 20px;
          font-size: 24px;
        }
      }
    }
  }

  & .first-timers {
    padding: 120px 0;
    & .first-timers-inner {
      width: 1200px;
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      grid-template-rows: 140px 120px 160px 120px;
      column-gap: 40px;
      & .lt-content-title {
        order: 1;
      }
      & figure {
        margin-bottom: 20px;
        grid-column: 2;
        grid-row: 1 / 4;
        order: 2;
      }
      & h4 {
        order: 3;
      }
      p {
        order: 4;
      }
      p:last-child {
        order: 5;
      }
    }
    & .greeting {
      width: 1080px;
      padding: 40px;
      display: grid;
      grid-template-columns: 2fr 1fr;
      grid-template-rows: 80px 60px 150px 60px;
      & .greeting-title {
        font-size: 26px;
        grid-column: 1;
      }
      & figure {
        margin: 0 0 0 auto;
        grid-row: 1;
        grid-column: 2;
      }
      & p {
        grid-column: 1;
      }
      & .name {
        grid-column: 1;
        font-size: 22px;
        & .post {
          font-size: 16px;
        }
        & .alphabet {
          font-size: 14px;
        }
      }
    }
  }

  & .system {
    & .system-inner {
      width: 1200px;
      padding: 120px 0;
      & .content-details {
        margin-bottom: 40px;
        text-align: center;
      }
      & ul.system-step {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 40px;
        & li {
          & .step-num {
            margin: 0 0 40px;
            text-align: center;
            line-height: 1.2;
            font-size: 50px;
            color: #2d2e54;
            display: grid;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
            &::after {
              content: 'Our Promise';
              font-family: "annabelle-jf", sans-serif !important;
              position: absolute;
              bottom: -20px;
              left: 50%;
              transform: translate(-50%, -50%);
              font-size: 30px;
              color: rgb(242 239 222);
              -webkit-text-stroke: 1px #f2efde;
              paint-order: stroke;
              white-space: nowrap;
              z-index: -1;
            }
          }
          & figure {
            text-align: center;
          }
          & .title {
            font-size: 20px;
          }
        }
      }
    }
  }

  & .process {
    & .process-inner {
      width: 1200px;
      padding: 120px 0;
      & .content-details {
        margin-bottom: 40px;
        & h4 {
          text-align: center;
        }
      }
      & ul.process-step {
  padding-bottom: 30px;
  overflow-x: auto;

  /* Firefox */
  scrollbar-color: #eaddd3 #f3ece7;
  scrollbar-width: thin;

  /* Chrome / Safari */
  &::-webkit-scrollbar {
    height: 6px;
  }

  &::-webkit-scrollbar-track {
    background: #f3ece7;
    border-radius: 999px;
  }

  &::-webkit-scrollbar-thumb {
    background: #eaddd3;
    border-radius: 999px;
  }

  &::-webkit-scrollbar-thumb:hover {
    background: #eaddd3;
  }
		  
        & li {
          padding: 0 20px 0 0;
          flex: 0 0 30%;
          scroll-snap-align: start;
          & .step-cercle {
            width: 120px;
            height: 120px;
            margin: 0 auto 20px;
            color: #bab05a;
            text-align: center;
            line-height: 1;
            border: 1px solid #eaddd3;
            border-radius: 100vmax;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            & span {
              font-size: 54px;
            }
          }
          & .process-item {
            padding: 20px 1em;
            border-radius: 10px;
            background: #fff;
            position: relative;
            &::after {
              content: "";
              position: absolute;
              top: 50%;
              right: 0;
              transform: translateY(-50%);
              border-style: solid;
              border-width: 10px 0 10px 20px;
              border-color: transparent transparent transparent #2d2e54;
              translate: 100% -50%;
            }
            & .title {
              margin: 10px 0;
              font-size: 24px;
              font-weight: 600;
              text-align: center;
              color: #2d2e54;
            }
          }
          & .process-item.no-triangle::after {
            content: none;
          }
        }
      }
    }
  }

  & .for-minors {
    & .minors-inner {
      width: 1200px;
      padding: 120px 0 60px;
      gap: 34px 60px; /* 行/列の間隔 */
    }

    /* 上2つは横並び */
    & .round-arrow-btn {
      flex: 0 0 calc(50% - 30px); /* 2列 */
      max-width: 380px;
    }

    /* 3つ目だけ下段中央に */
    & .round-arrow-btn:nth-of-type(3) {
      flex: 0 0 380px;  /* 下は固定幅で中央 */
      max-width: 380px;
    }

    /* PCはテキスト中央寄せでもOKならここ調整 */
    & .round-arrow-btn a {
      text-align: left;
      padding-left: 28px;
      padding-right: 64px;
      font-family: "Shippori Mincho", serif;
    }
  }

  /* 割引・会員制度のご案内 */
  & .page-discount-list .interval {
      margin-bottom: 40px;
      padding: 10px 17px;
      border-radius: 10px;
      background: #f8f5f3;
      & h3 {
        width: 100%;
        margin-bottom: 1em;
        padding-left: 22px;
        color: #2d2e54;
        border-bottom: 1px solid #ccc;
        position: relative;
        display: inline-block;
		    font-size: 21px;
        &::before {
          content: '';
          width: 18px;
          height: 18px;
          background: #baaf5a;
          border-radius: 50%;
          position: absolute;
          top: 0;
          left: 0;
          bottom: 0;
          margin: auto;
        }
        &::after {
          content: '';
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 4px 0 4px 6px;
          border-color: transparent transparent transparent #fff;
          position: absolute;
          top: 0;
          left: 6px;
          bottom: 0;
          margin: auto;
        }
      }
    	& .interval-point{
        background: #fff;
        padding: 5px;
        margin: 15px 0px;
        border-radius: 10px;
        border: solid 1px #b75025;
        font-family: "Shippori Mincho", serif;
        display: inline-flex;
        width: 100%;
    		align-items: center;
        & span{
          background: #b75025;
          color: #fff;
          border-radius: 20px;
          padding: 5px 12px;
          margin: 10px;
          font-size: 12px;
    		}
  		& p{
  			color: #b75025;
	  		margin: 10px;
  		}
  	}
	}	


	/* 表 */
  & .difference {
    & h2 {
      margin-bottom: 20px;
      padding: .5em;
      color: #fff;
      border-radius: 10px;
      background: #2d2e54;
    }
    & .difference-table {
      display: block;
      overflow: auto;
      & table {
        width: 100%;
        margin-bottom: 40px;
        & th {
          padding: 10px 0;
          font-weight: 100;
          color: #fff;
          background: #baaf5a;
        }

        & th:first-child {
          border-radius: 8px 0 0 0;
        }

        & th:last-child {
          border-radius: 0 8px 0 0;
        }

        & td.item {
          background: #f4ece8;
        }
      }

      /* 共通セル */
      & th,
      & td {
        padding: 10px 1em;
        text-align: center;
        border: 1px solid #f4ece8;
        white-space: nowrap;
      }

      /* 2列目だけ左寄せ＆折り返し */
      & td:nth-child(2) {
        text-align: left;
        white-space: normal;
        line-height: 1.7;
      }

      /* 連続brの余白（任意） */
      & td:nth-child(2) br + br {
        display: block;
        margin-top: 0.5em;
      }
    }
  }
	
	/* 継続入会特典テーブル：右列だけ左寄せ＆折り返し */
  & .features .features-inner .difference .difference-table table tbody tr td:nth-child(2) {
    text-align: left !important;
    white-space: normal !important;
    line-height: 1.7 !important;
  	padding: 30px 60px;
  	margin: 0 auto;
  }

  /* お 問 い 合 わ せ / c o n t a c t
  -------------------------------------------------*/
  & .contact-greeting {
    width: 1080px;
    margin: 0 auto;
    padding: 60px 17px;
    text-align: center;
    & ul.contact-link {
      width: 660px;
      margin: 0 auto 20px;
      grid-template-columns: repeat(2, 1fr);
      & a {
        width: 100%;
        padding: .5em 1em;
        color: #fff;
        display: block;
        border: 1px solid #2d2e54;
        border-radius: 100vmax;
        background: #2d2e54;
      }
    }
  }

  & .consent {
    width: 1080px;
    margin: 0 auto 60px;
  }

  & #contactForm {
    width: 860px;
    margin: 0 auto;
    padding: 40px 60px;
    border-radius: 10px;
    background: #fff;
    & .item {
      margin: 5px 0;
      & label {
        width: 100%;
        display: inline-block;
      }
      & input {
        width: 100%;
      }
      & .visit-block {
        margin-bottom: 20px;
        & p {
          margin: 0;
        }
        & .select-time {
          margin-top: 10px;
          text-align: center;
          display: grid;
          grid-template-columns: 1fr 1fr 1fr 2fr;
          align-items: center;
          & label.all-day input {
            width: 10%;
          }
        }
      }
    }
    & .message {
      display: grid;
    }
    & button {
      width: 50%;
      margin: 20px auto 10px;
      display: block;
    }
  }

  & #confirmModal {
    margin: 0 1em;
    padding: 30px 17px;
    border-radius: 10px;
    background: #f5ece8;
    & .modal-inner {
      & th,
      & td {
        padding: 5px 0;
      }
    }
    & .confirm-btn {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      column-gap: 15px;
    }
  }

  & #result {
    padding: 30px 0;
    text-align: center;
  }
}/*media end*/