@charset "UTF-8";
*,
::after,
::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ol,
ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    font-family: sans-serif;
    font-size: 16px;
    color: #595250;
    line-height: 1;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 200;
    font-style: normal;
}

img {
    vertical-align: top;
    vertical-align: bottom;
}
/* ここからmain */
.menu-content{
    max-width: 1200px;
    padding: 0 60px;
    padding-top: 100px;
    margin: 0 auto;
    justify-content: space-around;
}
.flex-box{
    display: flex;
    align-items: center;
    gap: 50px;
}
.face-img{
    width: 50%;
}
.box-a h2 {
    font-size: 32px;
    letter-spacing: 1.5px;
    line-height: 2;
    padding: 30px 0 40px 0;
}
.box-a h2 span {
    display: block;
    font-size: 24px;
    letter-spacing: 1.5px;
}
/* ここはfaceの説明文 */
.bag {
    background-color: #edeae3;
}
.box-a p {
    font-size: 16px;
    letter-spacing: 1.5px;
    line-height: 2.5;
    padding-bottom: 30px;
}

/* メニュー内容のフレック */
.menu-flex-a {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.Treatment {
    text-align: center;
    letter-spacing: 1.5px;
    background-color: #ffa7a6;
    padding: 25px;
    color: #fff;
    width: 50%;
    margin-bottom: 10px;
    font-family: none;
}


/* ここからボディー */
.menu-content-body{
    max-width: 1200px;
    padding: 0 60px;
    padding-top: 100px;
    margin: 0 auto;
    justify-content: space-around;
}
.menu-content-body .flex-box img {
    width: 50%;
    /* ここの高さあとで変える */
    /* そもそも元の写真が高さ足りていない */
    height: 595px;
}
.box-b h2 {
    font-size: 32px;
    letter-spacing: 1.5px;
    line-height: 2;
    padding-bottom: 40px;
}
.box-b h2 span {
    display: block;
    font-size: 24px;
    letter-spacing: 1.5px;
}
/* ここはボディーの説明文 */
.box-b p {
    font-size: 16px;
    letter-spacing: 1.5px;
    line-height: 2.5;
    padding-bottom: 30px;
}
.flex-box-bottom{
    padding-bottom: 100px;
}
/* ここから料金詳細ボタン */


  .button-menu a{
    display: inline-block;
    width: 75%;
    border-radius: 25px;
    padding: 30px;
    color: #fff;
    letter-spacing: 2px;
    background-image: linear-gradient(to top,#fac4ba,#ffa5a5);
    text-align: center;
    font-weight: 400;
}
.button-menu a::after{
    content: "";
    display: inline-block;
    left: 4px;
    box-sizing: border-box;
    width: 4px;
    height: 4px;
    border: 8px solid transparent;
    border-left: 15px solid #fff;
    margin-left: 30px;
}
.button-menu a:hover {
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
  }
/* ここからスマホ1000px */
/* @media(max-width:1000px){
    .flex-box-a{
        flex-direction: column-reverse;
    }
    .flex-box-bottom{
        flex-direction: column-reverse;
    }
} */



/* アニメーションjs */
.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 30px; height: 30px;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
  
    /* ペールカラーグラデーション */
    background: linear-gradient(135deg, 
                #f8e6e0, /* ペールピンク */
                #e0f0f8  /* ペールブルー */
              );
    box-shadow: 0 0 8px rgba(224, 240, 248, 0.7); /* ふんわり光らせる */
  }
