.hero_menu{
    padding: 10vw 10vw 5vw;
    background-color: #e2dbcf;
    display: flex;
    justify-content: center;
    align-items: center;
  background: url("../img/common/hero-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


.hero_menu .wrap_ttl{
    max-width: 250px;
    height: 90px;
    background-image: url(../img/common/ttl-salonmenu.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 auto;
    display: block;
}

.hero_menu .flex-box .menu{
    display: flex;
    gap:10px
}

.hero_menu .flex-box .menu a{
    border: solid #938673 1px;
    padding: 10px 10px;
    transition: ease .4s;
    position: relative;
    font-size: .9rem;
    min-width: 250px;
    display: block;
}

@media screen and (max-width: 1024px) {
.hero_menu{
    padding: 150px 2vw 10vw;
  flex-direction: column;
  gap:40px
} 
.hero_menu .wrap_ttl{
    min-width: 60vw;
    display: block;
}

.hero_menu .flex-box .menu{
  flex-direction: column;
}
}


/**通常サロンメニュー・ウェディングメニュ******************************/
h1 {
    width: 100%;
    height: clamp(60px, 80px, 90px);
    background-image: url(../img/common/ttl-salonmenu-normal.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 20px auto 50px;
    display: block;
}
h1.menu-wedding{
    background-image: url(../img/common/ttl-salonmenu-wedding.svg);

}
.wrap_h1{
    position: relative;
    z-index: 1;
    width: clamp(120px, 130px, 150px);
    margin: 0 auto;
}

/*****************************/
.menu a.current{
    background-color: #938673;
    color: #fff;
}
.menu a:hover{
    background-color: #938673;
    color: #fff;
    transition: ease .4s;
}
.menu a:before{
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #ffffff;
  border-right: 0;
  position: absolute;
  left:30px;
  top:50%;
  content: "";
  transform: translateY(-50%);
    transition: ease .4s;
    opacity: 0;
}
.menu a:hover:before{
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #ffffff;
  border-right: 0;
  position: absolute;
  left:35px;
  top:50%;
  content: "";
  transform: translateY(-50%);
    transition: ease .4s;
    opacity: 1;
}
.menu a.current:before{
    opacity: 1;
}
.salonmenu-content{
    background-color: #fffbf7;
}

.salonmenu-content .wrap_pagelink{
    background: #fff;
    padding: 5vw 5vw;
    margin: 5vw auto;
    border:solid 1px #938673;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 3rem;
    align-items: center;  
}
.salonmenu-content .wrap_pagelink a{
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #938673;
    text-align: left;
}
.salonmenu-content .wrap_pagelink a:before{
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 10px;
    background-image: url(../img/common/icon-circle-arrow.svg), url(../img/common/icon-circle-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
@media screen and (max-width: 1024px) {
    br.sp_none{
    display: none
}
.salonmenu-content .wrap_pagelink{
    grid-template-columns: repeat(2, 1fr);
}
}


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


.salonmenu-content .wrap_pagelink{
    grid-template-columns: repeat(1, 1fr);
}
}
/*****************************/
.footer {
    background-color: #F1EDEA;
}
.wrap_course_gray{
    background-color: #f1edea;
}
.wrap_course_content{
    display: flex;
    gap:5vw;
}
/***wedding****/
.wrap_wedding_course{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 3rem;
    align-items: top;  
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
@media screen and (max-width: 768px){


.salonmenu-content .wrap_wedding_course{
    grid-template-columns: repeat(1, 1fr);
}
}
.wrap_wedding_course_content{
    background-image: url(../img/sub/menu-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    border: solid 1px #9b938c;
}
.wrap_wedding_course_content h3{
    padding: 1.2rem 0;
    color: #fff;
    background: #9B938C;
background: linear-gradient(136deg, rgba(155, 147, 140, 1) 52%, rgba(223, 215, 208, 1) 100%);
font-weight: normal;
}
.wrap_wedding_course_content .discription{
    padding: 1rem
}
.wrap_wedding_course_content .wrap_img{
min-width: 100%;
display: block;
height: 200px;
position: relative;
overflow: hidden;
}
.discription .fsL{
    margin: 20px;
}
/*card-strech***************/
.wrap_wedding_course {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 3rem;
  align-items: stretch; /* カード同士の高さを揃える */
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.wrap_wedding_course_content {
  display: flex;
  flex-direction: column; /* 縦並びレイアウト */
}

.wrap_wedding_course_content .discription {
  flex: 1; /* 可変領域にして高さを埋める */
  display: flex;
  flex-direction: column; /* 下端要素を揃えるため */
  justify-content: space-between; /* 内容と価格を上下に分ける */
}
@media screen and (max-width: 1024px) {
    .wrap_wedding_course_content .over_wrap_img {
        min-width: 100%;
    }
}
/****************/
h2{
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}
h2 span{
    width: 2em;
    height: 3em;
    display: block;
    background-image: url();
    background-repeat: no-repeat;
    background-size: contain;
  will-change: transform, opacity;
}


h2.with_sub_otamesi,
h2.withsub{
    position: relative;
}
h2.withsub:before{
    position: absolute;
    content:"潤い、ハリを取り戻す";
    top:-.9em;
    font-size: 1.2rem;
}
h2.with_sub_otamesi:before{
    position: absolute;
    content:"＼まずは／";
    top:-.9em;
    font-size: 1rem;
    letter-spacing: 2px;color: #834f29;
}
h2 span:nth-child(1){
    margin-right: 10px;
    background-image: url(../img/sub/botanical-left.webp);
  transform-origin: bottom center;
  opacity: 0;
}

h2 span:nth-child(2){
    margin-left: 10px;
    background-image: url(../img/sub/botanical-right.webp);
  transform-origin: bottom center;
  opacity: 0;
}
h2 span:nth-child(1).animate {
  animation: swayScale 2.5s cubic-bezier(0.32, 0, 0.68, 1)  forwards;
}

h2 span:nth-child(2).animate {
  animation: swayScaleRev 2.5s cubic-bezier(0.32, 0, 0.68, 1)  forwards;
}

@keyframes swayScale {
  0% {
    transform: scaleY(0.7) rotate(-2deg);
    opacity: 0;
  }
  20% {
    transform: scaleY(1)  rotate(5deg);
    opacity: 1;
  }
  50% {
    transform: scaleY(1) rotate(-8deg);
    opacity: 1;
  }
  100% {
    transform: scaleY(1)  rotate(0deg);
    opacity: 1;
  }
}

@keyframes swayScaleRev {
  0% {
    transform: scaleY(0.7) rotate(2deg);
    opacity: 0;
  }
  20% {
    transform: scaleY(1) rotate(-5deg);
    opacity: 1;
  }
  50% {
    transform: scaleY(1) rotate(8deg);
    opacity: 1;
  }
  100% {
    transform: scaleY(1) rotate(-0deg);
    opacity: 1;
  }
}

.wrap_course_content .wrap_img{
width: 400px;
display: block;
height: 250px;
position: relative;
overflow: hidden;
max-width: 100%;
}

.wrap_course_content .min{
    max-width: clamp(80px, 90px, 100px);
    position: absolute;
    left: clamp(-40px, -45px, -50px);
    top: clamp(-40px, -45px, -50px);
    z-index: 1;
}

.wrap_course_content .discription p.fsL{
margin-bottom: 30px;
}
.wrap_course_content .over_wrap_img{
    position: relative;
}

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

.wrap_course_content{
    flex-direction: column;
}

.over_wrap_img{
    max-width: 80%;
    margin: 0 auto;
}
.wrap_wedding_course_content  .over_wrap_img {
        max-width: 100%;
    }
}

.wrap_price img{
max-width:clamp(300px, 400px, 450px);
  margin-left: auto;
  display: block;
  margin-top: 30px 
}
.wrap_wedding_course_content .wrap_price{
    display: flex;
    justify-content: center;
    align-items: center;
  margin: 30px auto 0;
}
.wrap_wedding_course_content .wrap_price span{
    border: solid 1px #80481f;
    color: #80481f;
    padding: 5px;
    margin-right: 20px;
    font-size: 0.9rem;
}
.wrap_wedding_course_content .wrap_price img{
max-width:180px;
margin: 0;

}
.padding:nth-child(1){
    padding-bottom: 0;
}
.recommend{
    text-align: left;
    margin-top: 50px;
}
.wrap_wedding_course_content .recommend{
    margin-top: 0;
}
.recommend ul{
    text-align: left;
}
.recommend ul li{
    position: relative;
    display: flex;
    align-items: center;

}
.recommend p{
    display: inline-block;
    background-color: #9b938c;
    margin-bottom: 15px;
    padding: 4px 20px;
    color: #fff;
}
.recommend ul li:before{
content:"";
width: 20px;
height: 20px;
display: block;
background-image: url(../img/common/icon-check-box.svg);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
margin-right: 5px;
}
.option_ttl{
    background-color: #fff;
    border-left:solid 5px  #9b938c;
    text-align: left;
    padding: 15px 10px 15px 20px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    display: flex;
    justify-content: space-between;
}
.option_ttl img{
    max-width: 150px;
}
.wrap_banner{
    display: block;
    display:inline-block;
    max-width: 900px;
    border:solid 1px #000;
    margin: 0 auto;
    position: relative;
}

.wrap_banner:before{
    width: 350px;
    max-width: 100%;
    height: 120px;
    background-image: url(../img/sub/BridalTrial.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: -30px;
    top: -40px;
    content:"";
    z-index: 1;
}