@charset "utf-8";
/*------------------------------------------------------------------------------
  fonts
------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Zen+Kaku+Gothic+New&family=Zen+Old+Mincho&display=swap');
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/

html,
input,
textarea,
select,
button {
  font-family: "Marcellus", "Zen Old Mincho", "Zen Kaku Gothic New", sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",
    Meiryo, sans-serif;
  font-weight: 400;
}

html {
  color: #000;
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  word-break: break-all;
}

body {
  background: #fff;
  margin: 0;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: #333;
  text-decoration: none;
}

input[type="submit"],
input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.outer-block {
  min-width: 1200px;
}
.sp-block {
  position: relative;
  
}

.inner-block {
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: 375px;
}

#wrapper {
  position: relative;
}

@media screen and (min-width: 751px) {
  a,
  a:before,
  a:after,
  a img:hover,
  button {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  a:hover,
  a img:hover,
  button:hover {
    opacity: 0.7;
  }
}

/*------------------------------------------------------------------------------
  css
------------------------------------------------------------------------------*/
.outer-block {
  min-width: 320px;
}

.sp-block {
  max-width: 390px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  background-color: #FFEBED;
  box-shadow: 0 0 44px  rgba(255, 255, 255, 1);
  overflow: hidden;
}

.inner-block {
  margin: 0 auto;
  width: 350px;
}

/*------------------------------------------------------------------------------
  common
------------------------------------------------------------------------------*/
.c-text-1 {
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  color: #fff;
  background-color: #FF6AA7;
  width: 244px;
  text-align: center;
  padding: 2px 10px;
  border-radius: 2px;
  margin: 0 auto;
}

.c-text-2 {
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  color: #fff;
  background-color: #FF6AA7;
  width: 258px;
  text-align: center;
  padding: 2px 10px;
  border-radius: 2px;
  margin: 5px auto 0;
}


.c-text {
  font-family: "Zen Kaku Gothic New";
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #FF6AA7, -1px -1px 0 #FF6AA7,
  -1px 1px 0 #FF6AA7, 1px -1px 0 #FF6AA7,
  0px 1px 0 #FF6AA7,  0-1px 0 #FF6AA7,
  -1px 0 0 #FF6AA7, 1px 0 0 #FF6AA7;
  margin-top: 18px;
  text-align: center;
}
.c-text img{
  padding-top: 5px;
  width: 16px;
  height: 29px;
}


.c-btn {
  display: block;
  background: linear-gradient(to right, #FFAC4B, #FD501A);
  border-radius: 100px;
  width: 350px;
  height: 80px;
  text-align:center;
  padding: 23px 0;
  margin: 10px auto 0;
  border: 2px solid #fff;
  box-sizing: border-box;
  box-shadow: 0 4px  rgb(0, 0, 0, 0.25);
}
.c-btn span {
  font-family: "Zen Kaku Gothic New";
  font-size: 20px;
  font-weight: bold;
  color: #fff;

}

.m-title .en{
letter-spacing: 0.2em;
}

/*------------------------------------------------------------------------------
 ta
------------------------------------------------------------------------------*/
.wrapper {
  transform: translateY(-625px);
}

.tab{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tab li a{
  display: block;
  background:#fff;
  padding:10px 20px;
  border: 1px solid #EB670F;
  color: #EB670F;
  margin: auto;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
  background: #EB670F;
  color: #fff;
}

/*エリアの表示非表示と形状*/
.area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
  background: #fff;
  padding-top: 13px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
    width: 280px;
    margin: auto;
}

@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*------------------------------------------------------------------------------
 header
------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------
  main
------------------------------------------------------------------------------*/
/*-----------------------------
  pcbg
------------------------------*/
.pcbg {
  
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
  position: fixed;
}


.pcbg .image {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.pcbg img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.pcbg .logo {
  width: 330px;
  height: 58px;
}



.pcbg .pcbg-wrap {
  display: flex;
  width: 1218px;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 291px;
  z-index: 1;
  position: absolute;
  margin: auto;
}

.pcbg .text-1 {
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  color: #fff;
  background-color: #FF6AA7;
  width: 244px;
  text-align: center;
  padding: 2px 10px;
  border-radius: 2px;
  margin: 0 auto;
}
.pcbg .text-2 {
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  color: #fff;
  background-color: #FF6AA7;
  width: 258px;
  text-align: center;
  padding: 2px 10px;
  border-radius: 2px;
  margin: 0 auto;
  margin-top: 5px;
}


.pcbg .text {
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 0 #FF6AA7, -1px -1px 0 #FF6AA7,
  -1px 1px 0 #FF6AA7, 1px -1px 0 #FF6AA7,
  0px 1px 0 #FF6AA7,  0 -1px 0 #FF6AA7,
  -1px 0 0 #FF6AA7, 1px 0 0 #FF6AA7;
  margin-top: 18px;
}
.pcbg .text img{
  padding-top: 5px;
  width: 16px;
  height: 29px;
}


.pcbg .btn {
  display: block;
  background: linear-gradient(to right, #FFAC4B, #FD501A);
  border-radius: 100px;
  width: 350px;
  height: 80px;
  text-align:center;
  padding: 23px 0;
  margin-top: 10px;
  border: 2px solid #fff;
  box-sizing: border-box;
  box-shadow: 0 4px  rgb(0, 0, 0, 0.25);
}
.pcbg .btn span {
  font-family: "Zen Kaku Gothic New";
  font-size: 20px;
  font-weight: bold;
  color: #fff;

}

/*-----------------------------
  mv-block
------------------------------*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  padding: 15px;
  border-bottom: 1px solid #fff;
  box-shadow: 0 4px 4px rgb(0, 0, 0, 0.25);
  width: 390px;
  position: fixed;
  top: 0;
  z-index: 100;

}
.header .logo {
  width: 180px;
  height: 36px;
}

 .header-btn {
  display: block;
  background: linear-gradient(to right, #FFAC4B, #FD501A);
  border-radius: 100px;
  width: 160px;
  height: 45px;
  text-align:center;
  padding: 3px 0;
  border: 1px solid #fff;
  box-sizing: border-box;
  box-shadow: 0 4px rgb(0, 0, 0, 0.25);
  line-height: 1;
  padding-top: 7px;
}

.header-btn span {
  font-family: "Zen Kaku Gothic New";
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}

.mv-block {
  padding-top: 40px;
}



.mv-block .sp-image img {
  height: 500px;
  width: 390px;
  object-fit: cover;
  text-align: center;
  background-size: cover;
  position: relative;
}

.mv-block .title {
  transform: translateY(-300px);
  margin-left: 15px;
}

.mv-block .title span {
  display: block;
  font-family: "Zen Old Mincho";
  color: #FFF6FA;
  text-align: left;
  text-shadow: 0 0 19px rgba(255, 45, 131, 1);
}

.mv-block .title .title-1 {
  font-size: 39px;
  font-family: "Zen Kaku Gothic New";
}
.mv-block .title .title-2 {
  font-size: 48px;
  margin-top: -11px;
  line-height: 1.1;
}


/*-----------------------------
  present
------------------------------*/
.present {
  background-image: url('../img/common/presentbg.png');
  background-repeat:  no-repeat;                                        
  width: 100%;                                      
  height: auto;     
  transform: translateY(-210px);     
  padding-top: 2px;            
}
.present .inner-block {
  border-radius: 12px;
  
}

.present-block {
  background-image: url('../img/common/mask.png');
  background-repeat:  no-repeat; 
  background-color: #fff;
  height: 467px;
  border-radius: 12px;
  box-shadow: 0 4px 4px rgb(0, 0, 0, 0.25);
  margin-top: -40px;
}


.present-block .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.present-block .title-wrap .limit {
  font-family: "Zen Old Mincho";
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  width: 54px;
  height: 54px;
  border: 1px solid #fff;
  border-radius: 100%;
  text-align: center;
  padding-top: 7px;
  margin-right: 10px;
}

.present-block .title-wrap .title {
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  margin-top: -2px;
  margin-left: 2px;
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.16em;
  line-height: 1.1;
}

.present-block .title-wrap .time{
  color: #FF6AA7;
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  font-size: 13px;
  background-color: #fff;
  border-radius: 8px;
  padding: 4px;
  text-align: center;
  margin-left: 10px;
}

.present-block .price-wrap {
  width: 272px;
  height: 81px;
  margin-top: 13px;
  margin-right: 21px;
  margin-left: auto;
}

.present-block .asterisk {
  font-family: "Zen Kaku Gothic New";
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: -5px;
}

.present-wrap {
  background-image: url('../img/common/present.png');
  background-size: cover;
  width: 310px;
  height: 149px;
  margin: auto;
  
}

.present-wrap .title{
  font-size: 22px;
  font-family: "Zen Old Mincho";
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding-top: 18px;
}
.present-wrap .text {
  text-align: center;
  margin-top: 12px;
}
.present-wrap .text span {
  display: block;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  letter-spacing: 0.04em;
  margin-top: 12px;
}

.present-wrap .text .pink {
  color: #FF6AA7;
  letter-spacing: -0.01em;
  display: inline-block;
  background: linear-gradient(transparent 80%, #FFE68C 0%);
  font-size: 20px;
  margin-top: 0;
  font-weight: bold;
  text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0 -1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.present-block .wrap {
  transform: translateY(-100px);
}

.present-block .asterisk-1 {
  font-family: "Zen Kaku Gothic New";
  text-align: center;
  font-size: 16px;
  color: #503C44;
  margin-top: 40px;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: -0.02em;
  transform: translateY(340px);
}

.present-block .asterisk-1 .pink {
  color: #FF6AA7;
}

.present .c-info-wrap{
  margin-top: 100px;
}

.fv-slide-section .series-wrap {
  margin-top: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.fv-slide-section .series-wrap p {
  font-size: 20px;
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  color: #503C44;
  text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF,  0 -2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;
}
.fv-slide-section .series-wrap .series-text {
  margin-top: -3px;
}

html {
  scroll-behavior: smooth;
}

.popular-anchor-target {
  scroll-margin-top: 130px;
}

.fv-slide-section {
  background: #FFEBED;
  padding: 0 0 8px;
  position: relative;
  z-index: 2;
}

.fv-slide-section .series-wrap {
  margin-top: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.present .restored-series-text {
  margin-top: 18px;
  text-align: center;
  font-size: 20px;
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  color: #503C44;
  text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF, 0 -2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;
}

.present .restored-series-text .pink {
  font-size: 30px;
  color: #FF6AA7;
}

.fv-slide-nav-wrap {
  width: 350px;
  margin: 0 auto;
  position: relative;
}

.fv-slide-nav {
  width: 350px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.fv-slide-nav::-webkit-scrollbar {
  display: none;
}

.fv-slide-nav-placeholder {
  height: 0;
}

.fv-slide-nav.is-fixed {
  position: fixed;
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
  width: 390px;
  margin: 0;
  padding: 8px 20px 10px;
  background: rgba(255, 235, 237, 0.96);
  border-bottom: 1px solid rgba(250, 121, 172, 0.28);
  box-shadow: 0 8px 18px rgba(80, 60, 68, 0.12);
  z-index: 99;
  box-sizing: border-box;
}

.fv-slide-nav-track {
  display: inline-flex;
  gap: 8px;
  min-width: max-content;
  padding: 4px 0 6px;
}

.fv-slide-nav.is-fixed .fv-slide-nav-track {
  padding: 0;
}

.fv-slide-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fa79ac;
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(250, 121, 172, 0.28);
}

.fv-slide-section .series-wrap .pink {
  font-size: 30px;
  color: #FF6AA7;
}

.present .c-text-1 {
  color: #FF6AA7;
  background-color: #FFF;
}

.present .c-text-2 {
  color: #FF6AA7;
  background-color: #FFF;
}
.present .point-img{
  margin-top: 270px;
}

.present .point-img p {
  margin-top: 0px;
  font-size: 19px;
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  text-align: center;
  color: #503C44;
  text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF,  0 -2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;
}

.present .point-img p .pink {
  color: #FF6AA7;
}

.present .merit-box {
background-image: url('../img/common/merit-box.png');
background-repeat: no-repeat;
background-position: center;
width: 100%;
height: 325px;
margin: 40px auto;
}

.present .merit-box h2 {
  margin-top: -10px;
  font-size: 32px;
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  text-align: center;
  text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF,  0 -2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;
}
.present .merit-box .text {
  font-size: 16px;
  font-family: "Zen Kaku Gothic New";
  line-height: 1.5;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 13px;
}

.present .merit-box .merit-wrapper p {
  color: #FF6AA7;
  font-family: "Zen Kaku Gothic New";
  font-size: 20px;
  font-weight: bold;
  margin: auto;
  width: 240px;
  
}

.present .merit-box .merit-wrapper p img {
  padding-top: 6px;
  margin-right: 8px;
}

.present .merit-box .merit-wrapper p + p {
  margin-top: 6px;
}


/*-----------------------------
  series
------------------------------*/
.series {
  transform: translateY(0px);  
  background-image: url('../img/common/seriesbg.png');
  background-size: cover;
  width: 100%;
  height: 775px;
}

.series .text{
  transform: translateY(-20px);
  text-align: center;
  font-size: 28px;
  font-family: "Zen Kaku Gothic New";
  text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
              -2px 2px 0 #FFF, 2px -2px 0 #FFF,
              0px 2px 0 #FFF,  0 -2px 0 #FFF,
              -2px 0 0 #FFF, 2px 0 0 #FFF;
}

.series-image {
  background-image: url('../img/common/series.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 350px;
  height: 327px;
  margin: 110px auto 50px;
  border-radius: 11px;
  text-align: center;
}

.series-image .title {
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  letter-spacing: normal;
  padding-top: 75px;
  font-weight: bold;
  text-align: center;
}
.series-image .info {
  font-family: "Zen Old Mincho";
  font-size: 34px;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.08em;
  font-weight: bold;
  text-align: center;
  padding-bottom: 5px;
  text-shadow: 2px 2px 0 #FF6AA7;
}

.series-image .ditail {
  font-family: "Zen Kaku Gothic New";
  font-size: 20px;
  color: #EB670F;
  text-align: center;
  background-color: #FFF;
  display: inline-block;
  padding: 0 7px;
  margin-top: 3px;
  border-radius: 4px;

}

/*-----------------------------
  laser
------------------------------*/

.laser {
  margin-top: 0;
  position: relative;
  z-index: 1;
}
.laser .laser-title {
  text-align: center;
}

.laser .laser-title .en {
  font-size: 16px;
  font-family: "Marcellus";
  color: #FF6AA7;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.laser .laser-title .ja {
  display: block;
  color: #503C44;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  font-weight: bold;
  margin-top: 8px;
}

.laser .information {
  font-family: "Zen Kaku Gothic New";
  font-size: 13px;
  color: #FFF;
  background-color: #FF882E;
  margin: 10px auto 0;
  text-align: center;
  width: 230px;
  border-radius: 2px;
  padding-top: 1px;
  padding-bottom: 1px;
}

.laser .laser-info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  background-color: #2179FB;
  border: 2px solid #FFF;
  border-radius: 12px;
  color: #fff;
  height: 20px;
  width: 90px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.laser .laser-wrap {
background-color: #FFF;
background-image: url('../img/common/laserbg.jpg');
background-position: center;
background-repeat: no-repeat;
border-radius: 10px;
border: 2px solid #fff;
transform: translateY(-10px);  
}

.laser .laser-info p {
  font-size: 13px;
  font-family: "Zen Old Mincho";
  margin-top: -1px;
  font-weight: 500;
}
.laser .laser-info img {
  width: 14px;
  height: 14px;
  margin-top: 3px;
}

.laser .info-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.laser .info-wrap .bule {
  color: #2179FB;
}
.laser .info-wrap .s-text{
  font-size: 12px;
}


.laser .info-wrap p {
  font-size: 14px;
  font-family: "Zen Kaku Gothic New";
  line-height: 1.2;
  font-weight: bold;
  color: #A79DA1;
  width: 117px;
}


.laser .info-wrap p.center {
  color: #503C44;
  background-color: #E0ECFF;

}

.laser .laser-wrap .title  {
  font-size: 12px;
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  text-align: center;
  width: 346px;
  height: 22px;
  background-color: #FF6AA7;
  margin: 0 auto; 
  color: #fff;
  padding-top: 2px;
}

.laser .laser-wrap .machine .info-wrap  {
  height: 90px;
}
.laser .laser-wrap .effect .info-wrap  {
  height: 78px;
}

.laser .laser-wrap .cost .info-wrap  {
  height: 116px;
}
.laser .laser-wrap .structure .info-wrap {
  height: 236px;
}

.laser .laser-wrap .structure .info-wrap .name{
  display: block;
  margin: 15px auto 10px;
  height: 22px;
  width: 90px;
  color: #fff;
  background-color: #A79DA1;
  text-align: center;
  border-radius: 4px;
  padding-top: 2px;
}

.laser .laser-wrap .structure .info-wrap .name.center {
  display: block;
  margin-top: 30px;
  background-color: #2179FB;
}

.laser .laser-wrap .structure img {
  width: 90px;
  height: 113px;
}

.laser .laser-wrap .quality .info-wrap {
  height: 58px;
}

.laser .laser-wrap .pain .info-wrap {
  height: 77px;
}


/*-----------------------------
  merit
------------------------------*/

.merit {
  transform: translateY(-50px); 
}

.merit-wrap {
  transform: translateY(-110px)
}

.merit-1 {
  background-color: #FFF;
  padding: 10px 20px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 26px  rgba(255, 123, 177, 0.4);
  margin-bottom: 20px;
}
.merit-2 {
  background-color: #FFF;
  padding: 10px 20px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 26px  rgba(255, 123, 177, 0.4);
  margin-bottom: 20px;
}

.merit-3 {
  background-color: #FFF;
  padding: 10px 20px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 26px  rgba(255, 123, 177, 0.4);
  margin-bottom: 20px;
}

.merit-3 .merit-title .text {
  padding-top: 20px;
}

.merit-title {
  display: flex;
  justify-content: left;
  align-items: flex-start;
}

.merit-title .title {
  font-family: "Marcellus";
  font-size: 18px;
  text-align: center;
  background: linear-gradient(135deg, #FFB6D4, #FF6AA7);
  border-radius: 100%;
  width: 90px;
  height: 90px;
  color: #FFF;
  padding: 15px;
  margin-top: 5px;
}
.merit-title .title-text {
  padding-top: 15px;
}


.merit-title .number {
  display: block;
  font-size: 32px;
  margin-top: -10px;
}

.merit-title .text {
  font-size: 23px;
  font-family: "Zen Old Mincho";
  font-weight: bold;
  color: #503C44;
  letter-spacing: -0.05em;
  margin-left: 12px;
  line-height: 30px;
}

.merit-title .text .small {
  font-size: 14px;
  line-height: 18px;
}


.merit-title .text .orange {
  color: #EB670F;
}

.merit .image {
  margin-top: 16px;
}

.merit .detail-wrap {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  
}

.merit .detail-wrap .detail-1 {
  border-radius: 12px;
  width: 150px;
  background-color: #FFE7F1;
  padding-bottom: 5px;
}

.merit .detail-wrap .detail-2 {
  border-radius: 12px;
  width: 150px;
  background-color: #F2F2F2;
}

.merit .detail-wrap .detail-1 .detail-title {
  font-family: "Zen Old Mincho";
  background-image: url('../img/common/Rectangle\ 65.png');
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 14px;
  color: #fff;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 1;
}

.merit .detail-wrap .detail-2 .detail-title {
  font-family: "Zen Old Mincho";
  background-image: url('../img/common/Rectangle\ 66.png');
  font-size: 14px;
  color: #fff;
  width: 150px;
  padding: 8px;
}

.merit .detail-wrap .detail-1 .detail-text {
  font-size: 12px;
  font-family: "Zen Kaku Gothic New";
  color: #503C44;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.merit .detail-wrap .detail-1 .detail-text .pink {
  color: #FF6AA7;
  padding: 0;
  font-family: "Zen Kaku Gothic New";
}

.merit .detail-wrap .detail-1 .detail-text p {
  display: block;
  padding: 10px;
  font-family: "Zen Kaku Gothic New";
}

.merit .detail-wrap .detail-1 .detail-text p + p {
 border-top: 1px solid #FF6AA7;
}

.merit .detail-wrap .detail-2 .detail-text {
  font-size: 12px;
  font-family: "Zen Kaku Gothic New";
  color: #8E707C;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.merit .detail-wrap .detail-2 .detail-text span {
  display: block;
  padding: 10px;
  font-family: "Zen Kaku Gothic New";
}

.merit .detail-wrap .detail-2 .detail-text span + span {
 border-top: 1px solid #8E707C;
}


.merit-2 .image p {
  font-size: 12px;
  font-family: "Zen Kaku Gothic New";
  color: #777777;
  text-align: center;
  margin-top: 9px;
}


.merit-2 .detail-text{
  margin-top: 11px;
  margin-bottom: 11px;
}

.merit-3 .image-detail {
  display: flex;
  gap: 20px;
  font-size: 12px;
  font-family: "Zen Kaku Gothic New";
  color: #503C44;
}

.merit-3 .detail-text{
  margin-top: 11px;
}

.merit .mask {
  margin-left: -20px;
  margin-right: -20px;
  margin-top: -120px;
}

.merit .c-info-wrap{
  position: relative;
  margin-top: -210px;
  z-index: 1;
}

/*-----------------------------
  popular
------------------------------*/
.popular {
  margin-top: -300px;
}

.popular .m-title {
  text-align: center;
  margin-top: -350px;
}
.popular .m-title .en{
  font-size: 16px;
  color: #9F828E;

}

.popular .m-title .ja{
  display: block;
  font-size: 24px;
  font-family: "Zen Old Mincho";
  font-weight: 600;
  margin-top: 20px;
}

.popular .m-title .ja.pink {
  font-size: 36px;
  color: #FF6AA7;
  margin-top: 0px;
  margin-bottom: 30px;
}

.popular .title-wrap {
  width: 95%;
  margin: 0 0 0 auto;
}
.popular .title-wrap.popular7{
  width: 100%;
  margin: 0 0 0 auto;
}
.popular .title-wrap.popular9{
  width: 100%;
  margin: 0 0 0 auto;
}

.info-wrap.no9 {
  margin-top: -20px;
}

.popular .title-wrap .information-wrap {
  transform: translateY(-70px);
}

.popular .title-wrap .information-wrap.p07 {
  transform: translateY(-230px);
  margin-left: 20px;
}
.popular .title-wrap .information-wrap.p09 {
  transform: translateY(-357px);
  margin-left: 20px;
}

.popular .title-wrap .info {
  font-size: 15px;
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  color: #FFF;
  margin-left: 16px;
}
.popular .title-wrap .title {
  display: block;
  font-size: 26px;
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  color: #FFF;
  margin-left: 16px;
}
.popular .info-wrap.no7 {
  transform: translateY(-415px);
}


.popular .info-wrap.no8 {
  margin-top: -440px;
}

.popular .info-wrap.no3 {
  margin-top: -110px;
}
.popular .info-wrap.no3 p{
  margin-top: 0;
}

.popular .text-wrap {
  margin-left: 8px;
}

.popular .ditail-wrap {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-top: -60px;
}
.popular .ditail-wrap.d07{
  margin-top: -210px;
}
.popular .ditail-wrap.d09{
  margin-top: -340px;
}
.popular .ditail-wrap img {
  width: 88px;
  height: 88px;
}
.popular .ditail-wrap .text {
  color: #503C44;
  font-size: 14px;
  font-family: "Zen Kaku Gothic New";
  line-height: 1.5;
  margin-bottom: 41px;
  letter-spacing: -0.01em;
}

.popular .ditail-wrap .text .orange {
  color: #EB670F;
  font-weight: bold;
}
.popular .ditail-wrap .ditail-title {
  font-family: "Zen Kaku Gothic New";
  font-size: 18px;
  font-weight: bold;
  color: #FF6AA7;
  margin-bottom: 8px;
}

.popular .text-ditail {
  color: #FF6AA7;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  font-weight: bold;
  margin-top: -30px;
}



.eyebrow-case-section {
  width: 350px;
  margin: 0 auto 0;
}

.hairline-case-section {
  margin-bottom: 22px;
}

.popular-case-section {
  width: 350px;
  margin: 0 auto 22px;
}

.popular-case-section-last {
  margin-bottom: 24px;
}

.popular-case-image {
  display: block;
  width: 100%;
  margin: 0 auto 14px;
}

.popular-case-note {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 13px;
  line-height: 1.7;
  margin: 8px 0 10px;
}

.popular #popular-mouth > .ditail-wrap {
  margin-top: 10px;
}

.popular #popular-mouth > .ditail-wrap:first-of-type {
  margin-top: -24px;
}

.popular #popular-mouth > .popular-case-section {
  margin-bottom: 16px;
}

.popular .info-wrap.no7 {
  transform: none;
  margin-top: 16px;
}

.popular .title-wrap .information-wrap.p07 {
  transform: translateY(-78px);
  margin-left: 20px;
}

.popular .ditail-wrap.d07 {
  margin-top: -62px;
}

#popular-nose + .popular-case-section {
  margin-top: -12px;
  margin-bottom: 18px;
}

.popular .info-wrap.no8 {
  margin-top: 24px;
}

#popular-sideburn + .popular-case-section {
  margin-top: 8px;
}

.info-wrap.no9 {
  margin-top: 24px;
}

.popular .title-wrap .information-wrap.p09 {
  transform: translateY(-92px);
  margin-left: 20px;
}

.popular .ditail-wrap.d09 {
  margin-top: -72px;
}

#popular-forehead + .popular-case-section {
  margin-top: -8px;
}

.eyebrow-case-image {
  display: block;
  width: 100%;
  margin: 0 auto 14px;
}

.eyebrow-case-note {
  color: #222;
  font-family: "Zen Kaku Gothic New";
  font-size: 13px;
  line-height: 1.7;
  margin: 8px 0 10px;
}

.treatment-accordion {
  border: 2px solid #c7d4ff;
  background: #fff;
}

.treatment-accordion-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  position: relative;
  background: #866d44;
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  padding: 8px 16px;
}

.treatment-accordion-icon {
  display: inline-block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  transition: transform 0.25s ease;
}

.treatment-accordion-button[aria-expanded="true"] .treatment-accordion-icon {
  transform: translateY(-50%) rotate(180deg);
}

.treatment-accordion-content {
  padding: 0 14px 0;
  background: #fff;
}

.treatment-detail-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #ececf3;
}

.treatment-detail-row:last-child {
  border-bottom: none;
}

.treatment-detail-label {
  width: 118px;
  min-width: 118px;
  background: #f2f2f2;
  color: #666;
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  padding: 14px 12px;
  margin: 10px 12px 10px 0;
  text-align: center;
}

.treatment-detail-value {
  flex: 1;
  color: #333;
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  line-height: 1.8;
  padding: 20px 0;
}

.treatment-detail-price {
  color: #d64ca1;
  font-size: 20px;
  font-weight: bold;
}

/*-----------------------------
  point
------------------------------*/

.point .mask03 {
  margin-top: -180px;
}

.point .title {
  text-align: center;
  margin-top: -350px;

}

.point .title .en {
  display: block;
  color: #9F828E;
  font-size: 16px;
  font-family: "Marcellus";
  margin-bottom: 20px;
  letter-spacing: 0.2em;;
}

.point .title .ja {
  display: block;
  color: #503C44;
  font-size: 24px;
  margin-top: 20px;
}

.point .title .ja.large {
  display: block;
  color: #FF6AA7;
  font-size: 36px;
  margin-top: 5px;
}
.point0  {
  padding-bottom: 35px;
}
.point1  {
  padding-bottom: 100px;
}

.point0.point3 {
  padding-top: 10px;
  padding-bottom: 60px;
}

.point0.point4 {
  padding-top: 10px;
  padding-bottom: 95px;
}


.point0 .point-block {
  margin-top: -470px;
}
.point1 .point-block {
  margin-top: -595px;
}

.point0.point3  .point-block {
  margin-top: -410px;
}

.point0.point4  .point-block {
  margin-top: -555px;
}


.point0 .point-block .point-title {
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 22px;
  line-height: 1.16;
  background: linear-gradient(135deg, #FFC875, #FF6A3B);
  color: #fff;
  width: 253px;
  height: 60px;
  border-radius: 50px;
  margin: 0 auto 18px;
  padding: 5px;
}

.point0.point3  .point-block .point-title {
  height: 36px;
}
.point0.point4  .point-block .point-title {
  height: 36px;
}
.point0 .point-block .point-wrap {
  text-align: center;
  width: 250px;
  margin: auto;
}
.point0 .point-block .point-wrap .point-ditail{
 font-size: 24px;
 font-weight: bold;
 font-family: "Zen Kaku Gothic New";
 text-align: center;
 color: #FF6AA7;
 margin-left: -5px;
 margin-right: -5px;
 letter-spacing: -0.03em;
 line-height: 1.3;
}


.point .point-block .point-wrap .point-text {
  font-family: "Zen Kaku Gothic New";
  display: block;
  font-size: 13px;
  color: #503C44;
  padding-top: 7px;
  padding-bottom: 12px;
}

.point0 .point-block .point-wrap p + p {
  padding-top: 12px;
  border-top: 1px solid #EAEAEA;
}


/*-----------------------------
  support
------------------------------*/
.support {
  margin-top: 80px;
}
.support img{
  border-radius: 20px;
}

.support .m-title {
  text-align: center;
  color: #fff;
  margin-top: -360px;
}

.support .m-title .en {
  font-family: "Marcellus";
  font-size: 16px;
  letter-spacing: 0.02em;
}

.support .m-title .ja {
  display: block;
  margin-top: 20px;
  font-size: 40px;
  font-family: "Zen Old Mincho";
  font-weight: 500;
}
.support-block {
  margin-top: 40px;
}

.support .support0 {
  display: flex;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}


.support .support0 .support-title {
  font-family: "Marcellus";
  background-color: #FEE7EF;
  text-align: center;
  width: 69px;
  height: 69px;
  border-radius: 100px;
  padding-top: 14px;
  color: #FF6AA7;
  margin-right: 15px;

}

.support .support0 .support-title .title {
  font-size: 13px;
}

.support .support0 .support-title .number {
  font-size: 32px;
  display: block;
  margin-top: -14px;
}

.support .support0 .text {
  font-size: 28px;
  font-family: "Zen Old Mincho";
  font-weight: 500;
  color: #fff;
}

.support .support0 .s-text {
  font-size: 20px;
  font-family: "Zen Old Mincho";
  font-weight: 500;
  color: #fff;
}

.support .support0 .ss-text {
  font-size: 12px;
  font-family: "Zen Old Mincho";
  font-weight: 500;
  color: #fff;
  
}
.support .support1 {
  border-bottom: 1px solid #FFF;
}
.support .support2 {
  border-bottom: 1px solid #FFF;
}
.support .support3 {
  border-bottom: 1px solid #FFF;
}

.support .support1 .text {
  display: flex;
  align-items: flex-end;
}

.support .support1 .text .s-text{
  padding-bottom: 4px;
}
.support .support3 .text {
  position: relative;
  margin-top: -10px;
}
.support .support3 .text .s-text{
  margin-left: -7px;
}
.support .support3 .ss-text {
  position: absolute;
  margin-left: 85px;
  margin-top: 50px;

}

.support .support4 .text {
  position: relative;
  line-height: 1.3;
  margin-top: -30px;
}
.support .support4 .text .s-text{
  margin-left: -8px;
}
.support .support4 .s-text.next{
  position: absolute;
  margin-left: 85px;
  margin-top: 35px;

}

.support .support1 .text span {
  font-weight: 500;
  color: #FFF;
}

.support .support2 .text .block {
  display: block;
  margin-top: -8px;
}


/*-----------------------------
 support-0yen
------------------------------*/

.support-0yen {
  margin-top: -40px;
}
.support-0yen .m-title {
  text-align: center;
  transform: translateY(-710px);
}
.support-0yen .m-title .en {
  font-family: "Marcellus";
  color: #9F828E;
  font-size: 16px;
}
.support-0yen .m-title .ja {
  font-family: "Zen Old Mincho";
  color: #503C44;
  font-size: 28px;
  display: block;
  margin-top: 20px;
}

.support-0yen .m-title .ja.pink {
  font-family: "Zen Old Mincho";
  color: #FF6AA7;
  font-size: 40px;
  display: block;
  margin-top: -5px;
}

/*-----------------------------
 reservation
------------------------------*/
.reservation {
  margin-top: -136px;
}

.reservation .m-title {
  text-align: center;
}
.reservation .m-title .en {
  font-family: "Marcellus";
  color: #9F828E;
  font-size: 16px;
}

.reservation .m-title .ja {
  text-align: center;
  display: block;
  font-family: "Zen Old Mincho";
  color: #FF6AA7;
  font-size: 40px;
  display: block;
  margin-top: 20px;
  margin-bottom: 10px;
}


.reason01 img {
  margin-left: 20px;
  
}

.reason01 p {
  margin-left: 20px;
  font-size: 24px;
  font-family: "Zen Kaku Gothic New";
  padding: 5px 10px;
  background: linear-gradient(135deg, #FFB6D4, #FF6AA7);
  color: #fff;
  border-radius: 6px;
  display:inline-block;
  transform: translateY(-110px);
}

.reason01 p + p {
  margin-top: 4px;
}

.reason02 {
  margin-top: -240px;
}

.reason02 p {
  margin-left: 114px;
  transform: translateY(-31px);
  font-size: 24px;
  font-family: "Zen Kaku Gothic New";
  padding: 5px 10px;
  background: linear-gradient(135deg, #FFB6D4, #FF6AA7);
  color: #fff;
  border-radius: 6px;
  display:inline-block;
}

.reason03 {
  margin-top: 17px;
}

.reason03 p {
  margin-left: 30px;
  font-size: 24px;
  font-family: "Zen Kaku Gothic New";
  padding: 5px 10px;
  background: linear-gradient(135deg, #FFB6D4, #FF6AA7);
  color: #fff;
  border-radius: 6px;
  display:inline-block;
  transform: translateY(-220px);
}

.reason03 p + p {
  margin-top: 4px;
}

.reason03 p.asterisk {
  color: #7D6F75;
  font-size: 14px;
  display: block;
  background: none;
  margin-left: 20px;

}

/*-----------------------------
 plan
------------------------------*/
.plan {
  margin-top: -150px;
}
.plan .m-title {
  text-align: center;
}
.plan .m-title .en {
  font-family: "Marcellus";
  color: #9F828E;
  font-size: 16px;
}

.plan .m-title .ja {
  text-align: center;
  display: block;
  font-family: "Zen Old Mincho";
  color: #FF6AA7;
  font-size: 40px;
  display: block;
  margin-top: 20px;
  margin-bottom: 40px;
}


.plan .plan-wrap {
  width: 90%;
  margin: -50px auto;
}
.plan .plan-wrap.plan01 {
  margin-top: 0;
}
.plan .plan-wrap.plan02 {
  margin-top: 10px;
}
.plan .plan-wrap.plan08 {
  margin-bottom: -125px;
}
.plan  .plan-wrap p{
  font-family: "Zen Kaku Gothic New";
  margin-left: 15px;
  color: #FFF;
}

.plan  .plan-wrap .info-wrap {
  transform: translateY(-86px);
}
.plan  .plan-wrap.plan01 .info-wrap {
  transform: translateY(-93px);
}
.plan .plan-wrap.plan08 .info-wrap {
  transform: translateY(-156px);
}
.plan  .plan-wrap .discribe {
  font-size: 14px;
  letter-spacing: 0.02em;
  margin-bottom: -5px;
}


.plan  .plan-wrap .title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 6px;
}

.plan  .plan-wrap.plan08 .title {
  border-bottom: 1px solid #FFF;
  width: 114px;
}

.plan  .plan-wrap .s-title {
  font-size: 15px;
}
.plan  .plan-wrap .s-title span {
  font-size: 12px;
}
.plan  .plan-wrap .s-title.bottom {
  margin-bottom: 6px;
}

.plan  .plan-wrap .title span {
  font-size: 16px;
}

.plan .plan-wrap .time {
  font-size: 14px;
  font-weight: bold;
  color: #FF882E;
  background-color: #FFF;
  padding: 0 6px;
  display: inline;
  border-radius: 2px;
  letter-spacing: 0.06em;
}
.plan .ditail {
  font-family: "Zen Kaku Gothic New";
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  width: 90%;
  margin: -140px 0 0 auto;
  background-color: #EEA8AF;
  color: #FFF;
  padding: 75px 13px 15px;
}
.plan .asterisk {
  font-size: 12px;
  font-family: "Zen Kaku Gothic New";
  color: #503C44;
  line-height: 1.5;
  width: 90%;
  margin: 0 auto;
  letter-spacing: -0.04em;
}
.plan  .asterisk + .asterisk {
  margin-top: 8px;
}
.plan  .asterisk.top {
  margin-top: 15px;
  letter-spacing: 0;
}

.plan .mask {
  transform: translateY(-150px);
}

.plan .c-info-wrap {
  transform: translateY(-510px);
  text-align:center;
  position: relative;
  z-index: 2;
}

.plan .c-info-wrap .text {
  font-size: 18px;
  font-family: "Zen Kaku Gothic New";
  font-weight: bold;
  color: #FF6AA7;
  border-bottom: 1px solid #FF6AA7;
  display: inline; 
  text-align: center;
  margin: 0 auto 29px;
}

.plan .c-info-wrap .c-text-wrap {
  margin-top: 29px;
}



/*-----------------------------
 flow
------------------------------*/
.flow {
  transform: translateY(-430px);
}

.flow .m-title {
  text-align: center;
}
.flow .m-title .en {
  font-family: "Marcellus";
  color: #9F828E;
  font-size: 16px;
  display: block;
}

.flow .m-title .ja{
  text-align: center;
  display: block;
  font-family: "Zen Old Mincho";
  color: #503C44;
  font-size: 28px;
  display: block;

}

.flow .m-title .ja.pink{
  text-align: center;
  display: block;
  font-family: "Zen Old Mincho";
  color: #FF6AA7;
  font-size: 40px;
  display: block;

}

.flow .step1 {
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.flow .step1 .info-wrap {
  transform: translateY(-120px);
  margin-left: 15px;
}

.flow .step0 .title {
  font-size: 25px;
  display: block;
  font-family: "Zen Old Mincho";
  line-height: 1.9;
  color: #fff;
}

.flow .step0 .text {
  font-size: 16px;
  display: block;
  font-family: "Zen Kaku Gothic New";
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #503C44;
  margin-top: 22px;
  padding-bottom: 35px;
  border-bottom: 1px solid #FF6AA7 ;
  width: 350px;
}

.flow .step0 .text .form{
  font-size: 16px;
  font-weight: bold;
  color: #503C44;
  text-decoration:underline;
}


.flow .step2 {
  transform: translateY(-110px);
}

.flow .step2 .info-wrap {
  transform: translateY(-160px);
  margin-left: 15px;
}

.flow .step3 {
  transform: translateY(-260px);
}

.flow .step3 .info-wrap {
  transform: translateY(-155px);
  margin-left: 15px;
  margin-bottom: -500px;
}

.flow .step4 {
  margin-top: 95px;
}

.flow .step4 .info-wrap {
  transform: translateY(-160px);
  margin-left: 15px;
  margin-bottom: -450px;
}


.flow .step5 {
  margin-top: 300px;
}

.flow .step5 .info-wrap {
  transform: translateY(-160px);
  margin-left: 15px;
}

.flow .step5 .text {
  border-bottom: none ;
}

.flow .step5 .box {
  background-color: #FFF;
  border-radius: 12px;
  text-align: center;
  width: 350px;
  height: 115px;
  margin: 0 auto;
  transform: translateY(-150px);
}

.flow .step5 .box .title {
  background-image: url('../img/common/Rectangle\ 187.png');
  width: 350px;
  height: 33px;
  background-size: cover;
  background-repeat: no-repeat;
  font-size: 16px;
  font-family: "Zen Old Mincho";
  font-weight: bold;
  margin-bottom: 15px;
}

.flow .step5 .box .detail {
  font-size: 14px;
  font-family: "Zen Kaku Gothic New";
  text-align: center;
  letter-spacing: 0.06em;
}


/*-----------------------------
 question
------------------------------*/
.question {
  background-color: #FFF;
  text-align: center;
  transform: translateY(-500px);
  margin-bottom: -500px;
}

.question .m-title {
  font-size: 22px;
  font-weight: bold;
  background-color: #FFF;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  padding-top: 80px;
  margin-bottom: 25px;
}

.question .mask05 {
  transform: translateY(-140px);
}
.question .box {
  box-shadow: 0 4px 26px rgba(255, 123, 177, 0.4);
  width: 330px;
  margin: 0 auto;
  transform: translateY(-300px);
  border-radius: 6px;
}

.question .question1 .question-wrap {
  transform: translateY(-450px);
  margin-bottom: -110px;
}
.question .question2 .question-wrap {
  margin-top: -130px;
  transform: translateY(-345px);
}
.question .question3 .question-wrap {
  margin-top: -130px;
  transform: translateY(-342px);
}
.question .question4 .question-wrap {
  margin-top: -130px;
  transform: translateY(-344px);
}

.question .question-wrap {
  width: 330px;
  margin: 0 auto;
  padding-left: 44px;

}
.question .question-wrap .q {
  display: block;
  text-align: left;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New";
  letter-spacing: 0.06em;
  margin: 0 auto;
}
.question .question-wrap .answer {
  display: block;
  text-align: left;
  font-size: 14px;
  font-family: "Zen Kaku Gothic New";
  line-height: 1.5;
  margin: 23px auto 0;
  letter-spacing: 0.06em;
}

.question .question-wrap .answer a {
  font-size: 14px;
  font-family: "Zen Kaku Gothic New";
  line-height: 1.5;
  text-decoration:underline;
  letter-spacing: 0.06em;
}

.shop {
  margin-top: -240px;
}

.shop h3 {
  font-size: 22px;
  font-family: "Zen Kaku Gothic New"; 
  font-weight: bold;
  margin-bottom: 30px;
}

.shop a {
  display: block;
  width: 90%;
  margin: 0 auto;
}

.shop a + a {
  margin-top: 10px;
}

.shop .c-info-wrap {
  margin-top: 60px;
  padding-bottom: 60px;
}

/* v14 layout cleanup + merit case slider */
.present .c-text-2 {
  display: none;
}

.present .c-info-wrap {
  margin-top: 92px;
}

.present .restored-series-text {
  margin-top: 6px;
}

#popular-mouth > .ditail-wrap {
  margin-top: 18px;
  align-items: flex-start;
}

#popular-mouth > .ditail-wrap:first-of-type {
  margin-top: 0;
}

#popular-mouth > .popular-case-section {
  margin-top: 8px;
  margin-bottom: 20px;
}

#popular-mouth > .popular-case-section.popular-case-section-last {
  margin-bottom: 10px;
}

#popular-mouth .ditail-wrap .text,
#popular-nose .ditail-wrap .text,
#popular-sideburn .ditail-wrap .text,
#popular-forehead .ditail-wrap .text {
  margin-bottom: 18px;
}

#popular-mouth .text-wrap,
#popular-sideburn .text-wrap {
  padding-top: 2px;
}

#popular-nose {
  margin-top: 12px;
}

#popular-nose .title-wrap .information-wrap.p07 {
  transform: translateY(-92px);
  margin-left: 20px;
}

#popular-nose .ditail-wrap.d07 {
  margin-top: -86px;
  align-items: flex-start;
}

#popular-nose + .popular-case-section {
  margin-top: 4px;
  margin-bottom: 16px;
}

#popular-sideburn {
  margin-top: 18px;
}

#popular-sideburn .ditail-wrap {
  margin-top: -48px;
  align-items: flex-start;
}

#popular-sideburn + .popular-case-section {
  margin-top: 6px;
}

#popular-forehead {
  margin-top: 18px;
}

#popular-forehead .title-wrap .information-wrap.p09 {
  transform: translateY(-98px);
  margin-left: 20px;
}

#popular-forehead .ditail-wrap.d09 {
  margin-top: -86px;
  align-items: flex-start;
}

#popular-forehead + .popular-case-section {
  margin-top: 4px;
}

.merit-case-slider-section {
  width: 350px;
  margin: 26px auto 24px;
  padding: 24px 0 0;
  background: linear-gradient(180deg, rgba(255, 247, 250, 0.98) 0%, #ffffff 100%);
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(80, 60, 68, 0.08);
  overflow: hidden;
}

.merit-case-slider-heading {
  text-align: center;
  margin-bottom: 16px;
}

.merit-case-slider-heading .en {
  display: block;
  color: #9F828E;
  font-size: 14px;
  font-family: "Marcellus";
  letter-spacing: 0.18em;
}

.merit-case-slider-heading .ja {
  display: block;
  color: #FF6AA7;
  font-size: 28px;
  font-family: "Zen Old Mincho";
  font-weight: 600;
  margin-top: 8px;
}

.merit-case-slider {
  position: relative;
  width: 100%;
  padding: 0 28px;
  box-sizing: border-box;
}

.merit-case-slider-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.merit-case-slider-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.merit-case-slide {
  flex: 0 0 100%;
}

.merit-case-slide img {
  display: block;
  width: 100%;
  border-radius: 18px;
}

.merit-case-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(250, 121, 172, 0.92);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(250, 121, 172, 0.22);
  z-index: 1;
}

.merit-case-slider-arrow.prev {
  left: 10px;
}

.merit-case-slider-arrow.next {
  right: 10px;
}

.merit-case-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 16px;
}

.merit-case-slider-dots button {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 999px;
  background: #e8c4d4;
  padding: 0;
}

.merit-case-slider-dots button.is-active {
  width: 24px;
  background: #fa79ac;
}

.merit-case-slider-note {
  width: calc(100% - 40px);
  margin: 0 auto 12px;
}

.merit-case-treatment-accordion {
  width: calc(100% - 40px);
  margin: 0 auto 20px;
}

/* v15 requested adjustments */
.present > .inner-block > .present-block_b > .c-info-wrap {
  margin-top: 116px;
}

.fv-slide-nav-btn {
  min-width: 92px;
  padding: 0 12px;
}

#popular-mouth > .ditail-wrap {
  margin-top: 8px;
  align-items: flex-start;
}

#popular-mouth > .ditail-wrap:first-of-type {
  margin-top: -10px;
}

#popular-mouth > .popular-case-section {
  margin-top: -10px;
  margin-bottom: 10px;
}

#popular-mouth > .popular-case-section.popular-case-section-last {
  margin-bottom: -10px;
}

#popular-mouth .popular-case-note,
#popular-nose .popular-case-note,
#popular-forehead .popular-case-note {
  margin: 4px 0 8px;
}

#popular-nose {
  margin-top: 0;
}

#popular-nose .title-wrap .information-wrap.p07 {
  transform: translateY(-156px);
  margin-left: 20px;
}

#popular-nose .ditail-wrap.d07 {
  margin-top: -148px;
  align-items: flex-start;
}

#popular-nose + .popular-case-section {
  margin-top: -8px;
  margin-bottom: 10px;
}

#popular-forehead {
  margin-top: 4px;
}

#popular-forehead .title-wrap .information-wrap.p09 {
  transform: translateY(-166px);
  margin-left: 20px;
}

#popular-forehead .ditail-wrap.d09 {
  margin-top: -150px;
  align-items: flex-start;
}

#popular-forehead + .popular-case-section {
  margin-top: -10px;
}

.merit-case-slider-section {
  margin: 18px auto 34px;
  padding: 24px 0 10px;
}

.merit-case-slider-heading {
  margin-bottom: 12px;
}

.merit-case-slider-dots {
  margin: 12px 0 12px;
}

.merit-case-treatment-accordion {
  margin: 0 auto 12px;
}

.merit-case-slider-section + .mask {
  margin-top: -88px;
}

.merit-case-slider-section + .mask + .c-info-wrap {
  margin-top: -86px;
}

/* v16 spacing and face image adjustments */
.present > .inner-block > .present-block_b > .c-info-wrap {
  margin-top: 146px;
}

.present .restored-series-text {
  margin-top: 14px;
}

.present .point-img {
  margin-top: 244px !important;
}

#popular-mouth > .ditail-wrap {
  margin-top: -6px;
}

#popular-mouth > .ditail-wrap:first-of-type {
  margin-top: -56px;
}

#popular-mouth > .popular-case-section {
  margin-top: -4px;
  margin-bottom: 8px;
}

#popular-nose {
  margin-top: -24px;
}

#popular-nose .title-wrap .information-wrap.p07 {
  transform: translateY(-208px);
}

#popular-nose .ditail-wrap.d07 {
  margin-top: -188px;
}

#popular-nose + .popular-case-section {
  margin-top: -2px;
  margin-bottom: 8px;
}

#popular-forehead {
  margin-top: -14px;
}

#popular-forehead .title-wrap .information-wrap.p09 {
  transform: translateY(-224px);
}

#popular-forehead .ditail-wrap.d09 {
  margin-top: -202px;
}

#popular-forehead + .popular-case-section {
  margin-top: -4px;
}

.merit-case-slider-section {
  margin: 6px auto 14px;
  padding: 18px 0 6px;
}

.merit-case-slider-heading {
  margin-bottom: 8px;
}

.merit-case-slider-dots {
  margin: 10px 0 8px;
}

.merit-case-treatment-accordion {
  margin: 0 auto 8px;
}

.merit-case-slider-section + .mask {
  margin-top: -120px;
}

.merit-case-slider-section + .mask + .c-info-wrap {
  margin-top: -152px;
}

.face-all-insert-image {
  display: block;
  width: 100%;
  margin: 4px auto 16px;
  border-radius: 16px;
}

/* v17 spacing fixes */
.fv-slide-section {
  padding-top: 10px;
  padding-bottom: 12px;
}

.fv-slide-nav-wrap {
  margin-top: 6px;
}

.fv-slide-nav-btn {
  min-width: 84px;
  height: 32px;
  padding: 0 10px;
  font-size: 12px;
}

.present > .inner-block > .present-block_b > .c-info-wrap {
  margin-top: 158px;
}

.present .restored-series-text {
  margin-top: 22px;
}

.present .point-img {
  margin-top: 226px !important;
}

#popular-mouth > .ditail-wrap {
  margin-top: -18px;
}

#popular-mouth > .ditail-wrap:first-of-type {
  margin-top: -92px;
}

#popular-mouth > .popular-case-section {
  margin-top: -8px;
  margin-bottom: 6px;
}

#popular-nose {
  margin-top: -92px;
}

#popular-nose .title-wrap .information-wrap.p07 {
  transform: translateY(-232px);
  margin-left: 20px;
}

#popular-nose .ditail-wrap.d07 {
  margin-top: -214px;
  align-items: flex-start;
}

#popular-nose + .popular-case-section {
  margin-top: -8px;
  margin-bottom: 6px;
}

#popular-forehead {
  margin-top: -58px;
}

#popular-forehead .title-wrap .information-wrap.p09 {
  transform: translateY(-246px);
  margin-left: 20px;
}

#popular-forehead .ditail-wrap.d09 {
  margin-top: -226px;
  align-items: flex-start;
}

#popular-forehead + .popular-case-section {
  margin-top: -6px;
}

.merit-case-slider-section {
  margin: 0 auto 4px;
  padding: 14px 0 4px;
}

.merit-case-slider-heading {
  margin-bottom: 6px;
}

.merit-case-slider-dots {
  margin: 8px 0 6px;
}

.merit-case-treatment-accordion {
  margin: 0 auto 4px;
}

.merit-case-slider-section + .mask {
  margin-top: -190px;
}

.merit-case-slider-section + .mask + .c-info-wrap {
  margin-top: -236px;
}

/* v18 annotated spacing refinements */
.fv-slide-section {
  padding-top: 2px;
  padding-bottom: 10px;
}

.fv-slide-nav-wrap {
  margin-top: 2px;
}

.fv-slide-nav-btn {
  min-width: 82px;
  height: 31px;
  padding: 0 9px;
  font-size: 11px;
}

.present > .inner-block > .present-block_b > .c-info-wrap {
  margin-top: 170px;
}

.present .restored-series-text {
  margin-top: 18px;
}

.present .point-img {
  margin-top: 158px !important;
}

#popular-mouth > .ditail-wrap {
  margin-top: -26px;
}

#popular-mouth > .ditail-wrap:first-of-type {
  margin-top: -118px;
}

#popular-mouth > .popular-case-section {
  margin-top: -10px;
  margin-bottom: 4px;
}

#popular-nose {
  margin-top: -126px;
}

#popular-nose .title-wrap .information-wrap.p07 {
  transform: translateY(-248px);
  margin-left: 18px;
}

#popular-nose .ditail-wrap.d07 {
  margin-top: -230px;
  align-items: flex-start;
}

#popular-nose + .popular-case-section {
  margin-top: -18px;
  margin-bottom: 2px;
}

#popular-forehead {
  margin-top: -108px;
}

#popular-forehead .title-wrap .information-wrap.p09 {
  transform: translateY(-286px);
  margin-left: 18px;
}

#popular-forehead .ditail-wrap.d09 {
  margin-top: -258px;
  align-items: flex-start;
}

#popular-forehead + .popular-case-section {
  margin-top: -20px;
}

/* v19 nose/forehead heading alignment only */
#popular-nose .title-wrap .information-wrap.p07 {
  transform: translateY(-214px);
  margin-left: 18px;
}

#popular-forehead .title-wrap .information-wrap.p09 {
  transform: translateY(-214px);
  margin-left: 18px;
}

/* v20 strong heading realignment for nose/forehead */
#popular-nose .title-wrap.popular7,
#popular-forehead .title-wrap.popular9 {
  position: relative;
}

#popular-nose .title-wrap .information-wrap.p07,
#popular-forehead .title-wrap .information-wrap.p09 {
  position: absolute;
  top: 14px;
  left: 18px;
  right: 18px;
  transform: none;
  margin-left: 0;
  z-index: 2;
}

#popular-nose .title-wrap .information-wrap.p07 .info,
#popular-nose .title-wrap .information-wrap.p07 .title,
#popular-forehead .title-wrap .information-wrap.p09 .info,
#popular-forehead .title-wrap .information-wrap.p09 .title {
  margin-left: 0;
}

#popular-nose .title-wrap .information-wrap.p07 .info,
#popular-forehead .title-wrap .information-wrap.p09 .info {
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

#popular-nose .title-wrap .information-wrap.p07 .title,
#popular-forehead .title-wrap .information-wrap.p09 .title {
  display: block;
  margin-top: 4px;
  font-size: 20px;
  line-height: 1.2;
}

/* v21 slider visibility + spacing recovery */
.fv-slide-section {
  padding-top: 8px;
  padding-bottom: 20px;
  position: relative;
  z-index: 8;
}

.fv-slide-nav-wrap {
  margin-top: 8px;
  margin-bottom: 8px;
  position: relative;
  z-index: 12;
}

.fv-slide-nav {
  position: relative;
  z-index: 12;
  overflow-x: auto;
  overflow-y: visible;
}

.fv-slide-nav-track {
  position: relative;
  z-index: 12;
  padding: 6px 0 8px;
}

.fv-slide-nav-btn {
  min-width: 86px;
  height: 32px;
  padding: 0 11px;
  font-size: 12px;
  border: 2px solid rgba(255,255,255,0.92);
}

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

.present > .inner-block > .present-block_b > .c-info-wrap {
  margin-top: 138px;
}

.present .restored-series-text {
  margin-top: 14px;
}

.present .point-img {
  margin-top: 176px !important;
}

#popular-mouth > .ditail-wrap {
  margin-top: -14px;
  align-items: flex-start;
}

#popular-mouth > .ditail-wrap:first-of-type {
  margin-top: -62px;
}

#popular-mouth > .popular-case-section {
  margin-top: -6px;
  margin-bottom: 8px;
}

#popular-nose {
  margin-top: -54px;
}

#popular-nose .title-wrap.popular7,
#popular-forehead .title-wrap.popular9 {
  position: relative;
}

#popular-nose .title-wrap .information-wrap.p07,
#popular-forehead .title-wrap .information-wrap.p09 {
  position: absolute;
  top: 18px;
  left: 30px;
  right: 24px;
  transform: none;
  margin-left: 0;
  z-index: 3;
}

#popular-nose .title-wrap .information-wrap.p07 .info,
#popular-forehead .title-wrap .information-wrap.p09 .info,
#popular-nose .title-wrap .information-wrap.p07 .title,
#popular-forehead .title-wrap .information-wrap.p09 .title {
  margin-left: 0;
}

#popular-nose .title-wrap .information-wrap.p07 .info,
#popular-forehead .title-wrap .information-wrap.p09 .info {
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

#popular-nose .title-wrap .information-wrap.p07 .title,
#popular-forehead .title-wrap .information-wrap.p09 .title {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  line-height: 1.2;
}

#popular-nose .ditail-wrap.d07 {
  margin-top: -118px;
  align-items: flex-start;
}

#popular-nose + .popular-case-section {
  margin-top: -8px;
  margin-bottom: 8px;
}

#popular-forehead {
  margin-top: -34px;
}

#popular-forehead .ditail-wrap.d09 {
  margin-top: -126px;
  align-items: flex-start;
}

#popular-forehead + .popular-case-section {
  margin-top: -8px;
}

/* v22 remove gap below restored series text */
.present .restored-series-text {
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.15;
}

.present .point-img {
  margin-top: 8px !important;
}

/* v23 spacing cleanup from annotated screenshots */
.fv-slide-section {
  padding-top: 0;
  padding-bottom: 6px;
}

.fv-slide-nav-wrap {
  margin-top: 0;
  margin-bottom: 2px;
}

.fv-slide-nav-track {
  padding: 2px 0 4px;
}

.present > .inner-block > .present-block_b > .c-info-wrap {
  margin-top: 96px;
}

.present .restored-series-text {
  margin-top: 6px;
  margin-bottom: 0;
  line-height: 1.1;
}

.present .point-img {
  margin-top: -26px !important;
}

.present .point-img img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

#popular-mouth > .ditail-wrap {
  margin-top: -18px;
  align-items: flex-start;
}

#popular-mouth > .ditail-wrap:first-of-type {
  margin-top: -96px;
}

#popular-mouth > .popular-case-section {
  margin-top: -8px;
  margin-bottom: 8px;
}

#popular-nose {
  margin-top: -24px;
}

#popular-nose .title-wrap.popular7,
#popular-forehead .title-wrap.popular9 {
  position: relative;
}

#popular-nose .title-wrap .information-wrap.p07,
#popular-forehead .title-wrap .information-wrap.p09 {
  position: absolute;
  top: 26px;
  left: 18px;
  right: 18px;
  transform: none;
  margin-left: 0;
  z-index: 3;
}

#popular-nose .title-wrap .information-wrap.p07 .info,
#popular-forehead .title-wrap .information-wrap.p09 .info,
#popular-nose .title-wrap .information-wrap.p07 .title,
#popular-forehead .title-wrap .information-wrap.p09 .title {
  margin-left: 0;
}

#popular-nose .title-wrap .information-wrap.p07 .info,
#popular-forehead .title-wrap .information-wrap.p09 .info {
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

#popular-nose .title-wrap .information-wrap.p07 .title,
#popular-forehead .title-wrap .information-wrap.p09 .title {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  line-height: 1.2;
}

#popular-nose .ditail-wrap.d07 {
  margin-top: -84px;
  align-items: flex-start;
}

#popular-nose + .popular-case-section {
  margin-top: -6px;
  margin-bottom: 8px;
}

#popular-forehead {
  margin-top: -18px;
}

#popular-forehead .ditail-wrap.d09 {
  margin-top: -152px;
  align-items: flex-start;
}

#popular-forehead + .popular-case-section {
  margin-top: -6px;
}

.merit-case-slider-section {
  margin: 8px auto 18px;
  padding: 20px 0 0;
}

.merit-case-slider-dots {
  margin: 10px 0 12px;
}

.merit-case-treatment-accordion {
  margin: 0 auto 12px;
}

.merit-case-slider-section + .mask {
  margin-top: -34px;
}

.merit-case-slider-section + .mask + .c-info-wrap {
  margin-top: -24px;
}

/* v24 nose heading alignment matched to standard orange headings */
#popular-nose .title-wrap .information-wrap.p07 {
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
  transform: none;
  margin-left: 0;
  z-index: 3;
}

#popular-nose .title-wrap .information-wrap.p07 .info {
  display: block;
  margin-left: 16px;
  font-size: 15px;
  line-height: 1.35;
}

#popular-nose .title-wrap .information-wrap.p07 .title {
  display: block;
  margin-top: 0;
  margin-left: 16px;
  font-size: 26px;
  line-height: 1.2;
}

/* v25 move text1 lower to avoid overlap with top slider nav */
.present > .inner-block > .present-block_b > .c-info-wrap {
  margin-top: 126px;
}

/* v26 move text1 further down to clear slider buttons */
.present > .inner-block > .present-block_b > .c-info-wrap {
  margin-top: 152px;
}

/* v27 improve recommended-parts vertical rhythm */
.present .restored-series-text {
  margin-top: 10px;
  margin-bottom: 0;
  line-height: 1.1;
}

.present .point-img {
  margin-top: 0 !important;
  margin-bottom: 18px;
}

.present .point-img img {
  display: block;
  width: 100%;
  margin: -118px auto 0;
}

.present .point-img p {
  margin-top: -18px;
}

.popular {
  margin-top: -246px;
}

/* v28 unify orange-heading to body spacing across popular sections */
#popular-mouth > .ditail-wrap,
#popular-sideburn > .ditail-wrap,
#popular-nose .ditail-wrap.d07,
#popular-forehead .ditail-wrap.d09 {
  align-items: flex-start;
  padding-top: 12px;
}

#popular-mouth > .ditail-wrap:first-of-type {
  margin-top: -76px;
}

#popular-mouth > .ditail-wrap:not(:first-of-type) {
  margin-top: -6px;
}

#popular-sideburn > .ditail-wrap {
  margin-top: -6px;
}

#popular-nose {
  margin-top: -16px;
}

#popular-nose .title-wrap .information-wrap.p07 {
  top: 19px;
}

#popular-nose .ditail-wrap.d07 {
  margin-top: -92px;
}

#popular-forehead {
  margin-top: -8px;
}

#popular-forehead .title-wrap .information-wrap.p09 {
  top: 19px;
  left: 16px;
  right: 16px;
}

#popular-forehead .ditail-wrap.d09 {
  margin-top: -92px;
}


/* v29 normalize nose/forehead orange heading layout to match standard sections */
#popular-nose > .ditail-wrap,
#popular-forehead > .ditail-wrap {
  margin-top: -6px;
  padding-top: 12px;
  align-items: flex-start;
}

#popular-nose .title-wrap,
#popular-forehead .title-wrap {
  width: 95%;
  margin: 0 0 0 auto;
}

#popular-nose .title-wrap img,
#popular-forehead .title-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

#popular-nose .title-wrap .information-wrap,
#popular-forehead .title-wrap .information-wrap {
  transform: translateY(-70px);
}

/* v30 tighten mouth body spacing and lower nose section to avoid overlap */
#popular-mouth > .ditail-wrap:first-of-type {
  margin-top: -92px;
}

#popular-nose {
  margin-top: 8px;
}

/* v32 add separation between nose heading and previous treatment button */
#popular-nose {
  margin-top: 20px;
}

/* v31 tighten case-photo spacing and lower CTA block under fixed nav */
.merit-case-slider-section {
  margin: 0 auto 10px;
  padding: 8px 0 0;
}

.merit-case-slider-dots {
  margin: 8px 0 8px;
}

.merit-case-treatment-accordion {
  margin: 0 auto 6px;
}

.merit-case-slider-section + .mask {
  margin-top: -88px;
}

.merit-case-slider-section + .mask + .c-info-wrap {
  margin-top: -86px;
}

.present > .inner-block > .present-block_b > .c-info-wrap {
  margin-top: 188px;
}


/* v34 add nape popular section + ranking badges + lower recommended text block */
.present .restored-series-text {
  margin-top: 16px;
}

.present .point-img img {
  margin: -96px auto 0;
}

.present .point-img p {
  margin-top: -4px;
}

.ranked-title {
  position: relative;
}

.ranked-title::after {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  font-family: "Zen Kaku Gothic New";
  font-size: 10px;
  font-weight: 700;
  line-height: 1.15;
  white-space: pre;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  z-index: 2;
}

.ranked-title.rank-2::after {
  content: "人気\A No.2";
  background: #f29a53;
}

.ranked-title.rank-3::after {
  content: "人気\A No.3";
  background: #b6b6c8;
}

#popular-unaji > .ditail-wrap,
#popular-eyebrow > .ditail-wrap {
  margin-top: -6px;
  padding-top: 12px;
  align-items: flex-start;
}

#popular-unaji + .unaji-case-section {
  margin-bottom: 22px;
}

#popular-unaji .title-wrap .information-wrap,
#popular-eyebrow .title-wrap .information-wrap {
  transform: translateY(-70px);
}

#popular-unaji .title-wrap .info,
#popular-eyebrow .title-wrap .info {
  display: block;
  max-width: 220px;
}

#popular-unaji .title-wrap .title,
#popular-eyebrow .title-wrap .title {
  display: block;
}


/* v35 finalize nape/eyebrow titles + mouth spacing + nose-under replacements */
.ranked-title {
  position: relative;
  width: 95%;
  margin: 0 0 0 auto;
}

.ranked-title > img {
  display: block;
  width: 100%;
  height: auto;
}

.ranked-title::after {
  top: 8px;
  right: 10px;
  width: 56px;
  height: 56px;
  font-size: 10px;
}

#popular-unaji .title-wrap .information-wrap,
#popular-eyebrow .title-wrap .information-wrap {
  transform: translateY(-68px);
  margin: 0 74px 0 18px;
}

#popular-unaji .title-wrap .info,
#popular-eyebrow .title-wrap .info {
  display: block;
  max-width: none;
  margin-left: 0;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

#popular-unaji .title-wrap .title,
#popular-eyebrow .title-wrap .title {
  display: block;
  margin-left: 0;
  font-size: 24px;
  line-height: 1.1;
}

#popular-unaji > .ditail-wrap,
#popular-eyebrow > .ditail-wrap {
  margin-top: -2px;
  padding-top: 14px;
  align-items: flex-start;
}

#popular-mouth {
  margin-top: 20px;
}

#popular-mouth > .ditail-wrap:first-of-type {
  margin-top: -84px;
}

#popular-mouth > .ditail-wrap:not(:first-of-type) {
  margin-top: -2px;
}

/* v36 fv-slide-nav redesign + 料金はこちら button */
.fv-slide-section {
  background: #ffffff;
  padding-top: 18px;
  padding-bottom: 22px;
}
.fv-slide-section .inner-block {
  background: #ffffff;
}
.fv-slide-nav-wrap {
  width: auto;
  max-width: none;
  margin: 0 0 0 18px; /* 左にだけ余白、右側はオフセットして4つ目を見切れさせる */
  padding-right: 0;
}
.fv-slide-nav {
  width: auto;
  max-width: none;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  padding-right: 0;
}
.fv-slide-nav-track {
  display: inline-flex;
  gap: 10px;
  min-width: max-content;
  padding: 4px 18px 6px 0; /* 末尾を少し空ける */
}
.fv-slide-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 40px;
  padding: 0 22px;
  border-radius: 22px;
  background: #ffffff;
  color: #FA79AC;
  border: 1.5px solid #FA79AC;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(250, 121, 172, 0.10);
}
/* 固定追従時も白系で統一 */
.fv-slide-nav.is-fixed {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(250, 121, 172, 0.20);
  box-shadow: 0 6px 14px rgba(80, 60, 68, 0.08);
  padding: 10px 0 12px 18px;
}
.fv-slide-nav.is-fixed .fv-slide-nav-track {
  padding: 0 18px 0 0;
}

/* 「料金はこちら」アンカーボタン */
.treatment-price-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #F39A6E 0%, #E5805A 100%);
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(229, 128, 90, 0.25);
  position: relative;
}
.treatment-price-link::after {
  content: "▼";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #ffffff;
}
.treatment-price-link:hover,
.treatment-price-link:focus {
  color: #ffffff;
  opacity: 0.92;
}

/* v37 fv-slide-nav-btn pink background variant */
.fv-slide-nav-btn {
  background: #FCE7EE;             /* 淡いピンク背景 */
  color: #E85A95;                  /* 濃いピンク文字 */
  border: 1.5px solid #E85A95;     /* 濃いピンク枠 */
  box-shadow: 0 2px 4px rgba(232, 90, 149, 0.12);
}

/* v38 fv-slide-nav: pink outer background + white pill button with pink border/text */
.fv-slide-section,
.fv-slide-section .inner-block {
  background: #C65B85;             /* ボタンエリア外側＝指定ピンク */
}
.fv-slide-nav.is-fixed {
  background: rgba(198, 91, 133, 0.96);
  border-bottom: 1px solid rgba(198, 91, 133, 0.4);
}
.fv-slide-nav-btn {
  background: #FFFFFF;             /* 白背景に戻す */
  color: #C65B85;                  /* 文字色：指定ピンク */
  border: 1.5px solid #C65B85;     /* 枠：指定ピンク */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* v40 - multi-fix
   (1) fv-slide-nav 外側ピンクを #E84587 / 4つ目のボタンを半文字見切れ
   (2) treatment-accordion の枠線削除・ボタン間白背景削除・「料金はこちら」を「施術詳細」と同サイズ
   (3) #plan-xxx へのジャンプ時、ヘッダー＋追従ナビで隠れないよう scroll-margin-top 確保
*/

/* (1) 追従ボタン：外側ピンク #E84587 ＆ 4つ目ボタンが半文字見切れる */
.fv-slide-section,
.fv-slide-section .inner-block {
  background: #E84587;
}
.fv-slide-nav.is-fixed {
  background: rgba(232, 69, 135, 0.96);
  border-bottom: 1px solid rgba(232, 69, 135, 0.4);
}
.fv-slide-nav-btn {
  background: #FFFFFF;
  color: #E84587;
  border: 1.5px solid #E84587;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  /* 大きめにして4つ目が半文字見切れるようにする */
  min-width: 120px;
  height: 44px;
  padding: 0 26px;
  border-radius: 24px;
  font-size: 15px;
}
.fv-slide-nav-wrap {
  margin: 0 0 0 16px;
}
.fv-slide-nav-track {
  gap: 12px;
  padding: 4px 16px 6px 0;
}

/* (2) 症例セクション：accordion全体の枠削除＋ボタン間隙間削除＋料金はこちらをアコーディオンと同サイズ */
.treatment-accordion {
  border: none !important;
  background: transparent !important;
}
.treatment-accordion-content {
  padding: 0;
  background: transparent;
}
.treatment-price-link {
  /* .treatment-accordion-button と同じサイズ感に統一 */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0;          /* 上のボタンとの間の白を消す */
  padding: 8px 16px;      /* accordion-button と同じ */
  font-size: 15px;
  line-height: 1.2;
  border-radius: 0;       /* 角丸も合わせる（accordionは角丸なし） */
  box-shadow: none;
  background: linear-gradient(180deg, #F39A6E 0%, #E5805A 100%);
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.treatment-price-link::after {
  content: "▼";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #ffffff;
}
/* アコーディオンが開いている時、content と price-link の間の余白も削除 */
.treatment-accordion-content[hidden] + .treatment-price-link {
  margin-top: 0;
}

/* (3) 料金プラン各枠：ヘッダー＋追従ナビの分だけ余裕を持ってジャンプする */
#plan-face-trial,
#plan-unaji,
#plan-hairline,
#plan-momiage,
#plan-konabana,
#plan-mouth,
#plan-eyebrow {
  scroll-margin-top: 140px;
}

/* v40b 4つ目ボタン半文字見切れ調整：min-width を少し縮めて 4つ目が半分だけ画面外へ */
.fv-slide-nav-btn {
  min-width: 110px;
  padding: 0 22px;
}
.fv-slide-nav-track {
  gap: 10px;
}

/* v40c 4つ目ボタン半文字見切れ：トラック左パディングを調整してオフセット */
.fv-slide-nav-wrap {
  margin: 0;
  padding-left: 16px;
}
.fv-slide-nav {
  /* ビューポートからナビ自体は溢れさせる */
  width: 100vw;
  max-width: 100vw;
}
.fv-slide-nav-btn {
  min-width: 100px;
  padding: 0 20px;
  font-size: 14px;
}
.fv-slide-nav-track {
  gap: 12px;
}

/* v41 施術詳細と料金はこちらの間にスペースを入れる
   背景はページ全体の背景色 #FFEBED を使用（白は使わない） */
.treatment-accordion {
  background: #FFEBED !important;  /* accordion 全体の背景をページ背景色に */
}
.treatment-price-link {
  margin-top: 10px;  /* ボタン間スペース */
  /* スペース部分は親(.treatment-accordion)の #FFEBED が見える */
}

/* v42 ボタン間スペースを確実に適用（v40の hidden+ ルールが margin-top:0 で上書きしていたのを解消） */
.treatment-accordion-content[hidden] + .treatment-price-link,
.treatment-accordion-content + .treatment-price-link,
.treatment-accordion .treatment-price-link {
  margin-top: 10px !important;
}
