.eng {
  font-family: "Irish Grover", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #5b5c5c;
  line-height: 1.7;
  background-color: #ffffff;
}

/* タイトル文字装飾（色は別途指定） */
.size64-800 {
  font-size: 50px;
  font-weight: 800;
  margin-top: 2rem;
  text-align: center;
}


/* menu */
nav ul{
  display: table;
  margin: 0 auto;

  width: 80%;
  text-align: center;

 padding-top: 1rem;
  }
  nav ul li{
  display: table-cell;
  position: relative;
  }
  nav ul li a{
  display: block;
  width: 100%;
  
  padding: 1rem ;
  }
  nav ul li a::after,
  nav ul li a::before {
  display: block;
  content: ”;
  position: absolute;
  }
  nav ul li a::after {
  bottom: -50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background-color: #ccc;
  border-radius: 100%;
  }
  nav ul li a.current::after {
  background-color: #3498db;
  }
  nav ul li a:hover{
  color: #3498db;
  }
  nav ul li a:hover:after {
  background-color: yellow;
  width: 100%;
  left: 0;
  border-radius: 5px;
  }
  nav ul li a{
  text-decoration: none;
  color:#525252;
  }
  nav ul li a.current{
  color:#5a5a5a;
  }

/* ヘッダー */
.header {
  display: flex;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(231, 231, 231, 0.263);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  /* ガラス風にする場合 */

}

.header.scrolled {
  box-shadow: 0 2px 8px rgba(158, 212, 245, 0.299);
}

.header__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 40px);
  height: 80px;
display: flex;

 
 
}


.logo-h{
  font-size: 30px;
  display: flex;
  justify-content: space-between;
color: #98a4c3;

position: absolute;
left: 3rem;
top: 1.5rem;

}
.topte{
  font-size: 12px;
  position: absolute;
  left: 3rem;
}



/* ヒーローイメージ」 */

.wrapper{
  margin-top: -80px;
}

.header-in{
  background-image: url(../img/head-in.png);
  background-color: #fffffff5;
  object-fit: cover;
  height: 80px;
  margin-top: -80px;
}

.cat1 {
position: absolute;
top: 5%;
/* margin:15vh auto; */
padding: 40px;
text-align: center;
  color: #7aa5ad;
width: 40%;
padding: 1rem;
  font-weight: 800;
  line-height: 2;
  /* background-color: #a4a4a492; */
}

.helo-logo{
  font-size: 60px;
  text-align: center;
  color: #8da1b1;
}
.cat2 {
  background-size: cover;
}


.lefttext{
 
  margin: 0 auto;
  background-color: #a1afb879;
  
}
.sizeup{
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  background-color: #8eb1c0dd;
  color: #f4efef;
}



/* SNS丸ボタン */
.btn-circle-3d {
  margin-top: 1.5rem;
  display: inline-block;
  text-decoration: none;
  width: 90px;
  height: 90px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  overflow: hidden;
  box-shadow: 0px 2px 2px rgba(133, 134, 134, 0.29);
  border-bottom: solid 3px #98a4c3;
  transition: .4s;
}


.btn-circle-3d:hover {
  background-position: 0 0;
  background-color: #a1d1f3;
}



.btn-circle-3d:active {
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.15);
  border-bottom: none;
}

.sns-box {
  display: flex;
  justify-content: center;
  font-size: 15px;
  gap: 2rem;
  position: fixed;
  bottom: 1rem;
  right: 0;
}

.line {
  background: #C2D2D8;
  color: #FFF;
}

.minimo {
  background: #9CABB9;
  color: #FFF;
}

.insta {
  background: #F1F0F0;
  color: #5A5A5A;
  padding-top: 2rem;
}

/* スライドショー*/
#slider {
 
  right: 0;
  height: 90vh;
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

/*=== 9-1-2 丸が動いてスクロールを促す ====*/

/*スクロールダウン全体の場所*/
.scrolldown2{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
bottom:1rem;
left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
  /*描画位置*/
position: absolute;
left:10px;
bottom:10px;
  /*テキストの形状*/
color: #5f96c3;
font-size: 1rem;
letter-spacing: .7em;
font-weight: 600;
/*縦書き設定*/
-ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
bottom: 0;
  left:-4px;
  /*丸の形状*/
width:10px;
height:10px;
border-radius: 50%;
background:#36aec9;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
animation:
  circlemove 3s ease-in-out infinite,
  cirlemovehide 3s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
    0%{bottom:150px;}
   100%{bottom:-5px;}
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
    0%{opacity:0}
   50%{opacity:1;}
  80%{opacity:0.9;}
100%{opacity:0;}
}

/* 線の描写 */
.scrolldown2:after{
content:"";
  /*描画位置*/
position: absolute;
bottom:0;
left:0;
  /*線の形状*/
width:2px;
height: 150px;
background:#2f8092;
}


/* menuリンク４枚カード */
/*== 影が拡がって浮き上がる */

/*ボタンの形状*/
.float2 {
  background: #f3f3f3;
  border: 1px solid #ccc;
  color: #5b5c5c;
  padding: 10px 20px;
  text-decoration: none;
  outline: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(128, 128, 128, 0.1);
  /*アニメーションの設定*/
  transition: all .3s;
  height: 100px;
  width: 24%;
  margin: 1%;
  display: flex;
}


/*hoverをしたらボックスの影が拡がり色が濃くなる*/
.float2:hover {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 50px rgba(128, 128, 128, 0.1);
  border-color: transparent;
}

.box-btn11 {
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

.kard {
  width: 100%;
  height: 100%;
}

.content-text {
  width: 70%;
  margin-left: 10px;
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  line-height: 1.2;
}

.font-w600 {
  font-weight: 600;
  margin-bottom: 20px;
}

/* プロフィール */

.glowAnime span{opacity: 0;}

/*アニメーションで透過を0から1に変化させtext-shadowをつける*/
.glowAnime.glow span{ animation:glow_anime_on 2s ease-out forwards; }

@keyframes glow_anime_on{
	0% { opacity:0; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
	50% { opacity:1;text-shadow: 0 0 10px #fff,0 0 15px #fff; }
	100% { opacity:1; text-shadow: 0 0 0 #fff,0 0 0 #fff;}
}


/* プロフィール写真 */
	
.about {
  width: 80%;
  margin: 3rem auto 1rem;
 
}

.pro {
margin-top: 2rem;
  display: flex;
}

.pro-text{
  width: 50%;
 
}


.pro-image{
 
  display: flex;
  margin-bottom: 5%;
  width: 80%;
}


.pro-image img{
  object-fit: contain;
  width: 100px;
}

.pro-image p{
  margin-left: 20px;
  margin-top: 10%;
 
}

.pro-text p {
  margin-bottom: 1rem;
  font-size: 15px;

  width: 80%;
}

.technic {
  font-weight: 600;
  margin-top: 1rem;
  
}

.pro-pho {
  width: 50%;
 
  text-align: right;
}

.phot-ho-full{

  margin: -2rem 30% 0 0;
 
 
}

.pro-p-le{
  margin-top:-2rem;

  
}



/* 長方形のボタン (Instagramを見る）*/
.btn-square-shadow {
  display: block;
  text-align: center;
  padding: .5rem;
  text-decoration: none;
  background: #97acaf;
  /*ボタン色*/
  color: #FFF;
  font-size: 15px;
  border-bottom: solid 3px #efeff0b4;
  border-radius: 3px;
  margin-top: 2rem;
  max-width: 300px;
}

.btn-square-shadow:active {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  /*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  /*影を小さく*/
  border-bottom: none;
}



/* menu */

.menu1-box{
  background-image: url(../img/blue-menu.png);
  background-color: #eaeff2b1;
  color: #6f7278;
  margin-top: 3rem;
  padding-bottom: 2rem;
}

.ti-menu{
 
  padding-top: 3rem;
}

.menu-kard{
  display: flex;
  justify-content: center;
 margin-top: 3rem;
  gap: 10px;
 
}



.phot-menu1{
  width: 100%;

}

  
.menu-btn1{
margin-left: auto;
margin-right: 10%;
  width: 20rem;
  background-color: #264f6c;
  
  
}



/* flaw（初めての方へ） */


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

.flow-text1{
  text-align: justify;
  width: 70%;
  margin: 0 auto;
 
  line-height: 1.9;
}

.flow-box {
  width: 80%;
  padding: 5%;
  margin: 5rem auto 1rem;
  text-align: center;
  background-image: url(../img/counseling.jpg);
  object-fit: cover;
  background-repeat: no-repeat;
 

}



/* ボタン色変更（初めての方へ） */
.beginner {

  max-width: 300px;
  margin: 5rem auto ;
}

/* よくある質問 */
.faq-box {
 padding-top: 3rem;
  background-size: contain;
  margin-bottom: 10rem;
}

.qa-list {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 3rem;
}



.qa-list dl {
  position: relative;
  margin: 30px 0 0;
  cursor: pointer;
  /* border: 1px solid #DDD; */
}

.qa-list dl:first-child {
  margin-top: 0;
}

.qa-list dl::after {
  position: absolute;
  top: 27px;
  right: 26px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: '';
  transform: rotate(135deg);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.qa-list .open::after {
  transform: rotate(-45deg);
}

.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
  background: #f4f6f8;
}

.qa-list dl dt::before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  content: 'Q.';
  color: #3285bf;
}

.qa-list dl dd::before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  left: 20px;
  display: block;
  content: 'A.';
  color: #3285bf;
}

.qa-list dl dd {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
}

.qa-list dl dd p {
  margin: 30px 0 0;
}

.qa-list dl dd p:first-child {
  margin-top: 0;
}



/* お客様の声 */


.voice-box {
  background-color: #d2dde8;
  padding: 2rem;
  color: #ffffff;
  text-align: center;
}


.glassmorphism-image {
  display: inline-flex;
  margin-bottom: 2rem;
  width: 95%;
  /* 背景画像 */
  background-size: cover;
  display: inline-flex;
}

.glassmorphism-image__card {
  width: 95%;
  height: 400px;
  box-shadow: 0 15px 25px rgba(135, 135, 135, 0.4);
  /* ボックスに影を入れる */
  background-color: rgba(255, 255, 255, 0.356);
  /* 透明度を10%に設定 */
  backdrop-filter: blur(6px);
  /* 背景をぼかす */
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  /* 白の透明度の高い枠線を入れる */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem;
}

.glassmorphism-image__text {
  width: 90%;
  font-size: 16px;
  font-weight: 400;
  color: #60697b;
}



/* follow me on */
.follow-box{
  margin-top: 5rem;
  margin-bottom: 5rem;
  text-align: center;
}




/* goods */
.c-bl{
  color: #7695ab;
  margin-left: 0 auto;
  display: block;
}
.inner {
  width: 60%;
  margin: 0 auto;

}

.box {
  display: flex;
  flex-direction: row;
}

.box+.box {
  margin-top: 120px;

}

.box__body {
  width: 50%;
  padding: 5%;



}

.box__ttl {
  font-size: 20px;
  text-transform: uppercase;
 
}

.box__txt {
  margin-top: 20px;
 
}

.box__image {
 
  width: 50%;
  

  background-color: #d8ebef96;

  
 
}

.box__image img {
  width: 90%;
  height: 80%;
  object-fit: cover;
 margin: 10% 5%;
 


}

.box.reverse {
  flex-direction: row-reverse;
}

.more-link {
  text-decoration: underline;
  color: #ffffff;
}



.fade-in-image {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 2s ease-out, transform 2s ease-out;
 
  transition-delay: calc(var(--delay) * 0.3s);
 
  object-fit: cover;
}

.fade-in-image.visible {
  opacity: 1;
  transform: translateY(0);
}


/* アクセス */

.open12{
  color: #342e2e;
}
.access-ti {
  margin-top: 2rem;
  color: #fdfdfd;

}

.back-access {
  margin-top: 7rem;
  
  background-image: url(../img/front.png);
  width: 100%;
background-size: cover;
  padding-bottom: 3%;
  text-align: center;
  padding-top: 3rem;
 
}



.Contents-access {

  width: 50%;
  padding: 5% ;
  margin: 5% auto;
  background-color: rgba(255, 255, 255, 0.522);
}

.access-box {
  display: flex;
 width: 100%;


}


.map{
 
 margin-right: 40px;
}

/* お支払い */

.box-cash {
  width: 60%;
  margin: 3rem auto;
  text-align: center;
}

.cash {
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 30px;
}

/* フッター */

.open{
  width: 15%;

 text-align: center;
  margin: 0 auto;
}

.content-footer {
  background-color: #d2dde8;
  color: #707071;
  padding: 2%;
}

.footer-box {
 


 
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
}


.copyright {
  text-align: center;
}

.font-60 {
  font-size: 60px;
  text-align: center;
}

.copyright{
  margin-top: 7rem;
}




/* 別ページ（menu） */


.sub-page-menu{
  display: flex;
  flex-direction: column;
}

.sub-le{


  background-image: url(../img/blue-menu-mb.png);
height: 80px;
margin-top: -80px;
  background-color: #b8beca;
}


.white{
  color: #8caab6;
width: 60%;
margin: 0 auto;
margin-bottom: 2rem;

}
.sub-info{
  color: #4f6980;
  width: 60%;
  margin:auto;
  margin-bottom: 5%;
  font-size: 18px;
  font-weight: 400;

}
.menu-price{
  background-color: #f4f6f7;
padding: 5%;

}

.container-sub-menu{
 background-color: #cbd7df;
 padding: 5%;
}
.box-menu11{

  display: flex;
margin-bottom: 1rem;


}
.box-menu11-w,.sub-w{
  background-color: #f8f9fa;
  padding: 2%;

}

.menu11-img{

  margin:0 auto;
  display: flex;
  align-items: center;

}
.menu-box{

  
    text-align: center;
    padding: .5rem;
    text-decoration: none;
    background: hsl(195, 12%, 93%);
    /*ボタン色*/
    color: #8aa3ac;
    font-size: 18px;

   
    margin-top: 1rem;
 

  
}

.opt{
  background-color:#cbd7df;
  color: #f5f4f4;
width: 95%;
  margin: 0 auto;
  font-weight: 600;
  font-size: 20px;

}


.menu-1{
  max-width: 700px;
  font-size: 1rem;
  width: 40%;
 
  margin: 2rem auto;


}
.menu-1 dl {
  display: table;
  width: 100%;
  border: solid #e4e4e4;
  border-width: 1px 0;
}
.menu-1 dt{
  display: table-cell;
  padding:0.3rem;

}
.menu-1 dd{
  text-align: right;
  display: table-cell;
  padding:0.3rem;
}
.menu-1 dd:after{
  display: inline-block;
  content: "";
  width: 1em;
  font-size: 0.6em;
}
.menu-1 dd.from:after {
  content: "〜";
}

.notes{
  font-size: 0.6rem;
  font-family:"Yu Mincho", "YuMincho";
}

.sub-cash{
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 2rem;
 
}

.box-cash{

  width: 100%;
  padding: 2%;
  margin: 0;
  
}

/* 別ページ（フロー） */

.sub-ri-fl{
  width: 70%;
  background-image: url(../img/topflow.png);
  background-size: cover;
}
.flow-2{
  margin-top: 4rem;
}
.flow-box-sub{
  padding: 5%;
}

.sub-text1{

  margin: 2%;
  line-height: 3;
}

.gallery-lists {
  display: flex;
  justify-content: spa;
  margin: 0 auto;

}
 
.gallery-list {
  width: 30%;

  margin: 0 auto;
 
}
.gallery-list-11{
  width: 30%;
  margin-left: 1.7%;

}

.gallery-list-11 img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}
 
.gallery-list img {
  width: 100%;
  height: 200px;
  object-fit: cover;

}


/* 別ページattention */
.att-info{
  text-align: center;
  color: #fbfbfb;
  margin-bottom: 5%;
}
.sub-ri-at{
  width: 70%;
  background-image: url(../img/attentiontop.png);
  background-size: cover;
}

.sub-box1{
  display: flex;
}

.at-phot img{
  width: 90%;
  object-fit: cover;
  margin: 1rem;

}

.box-at{
  width: 50%;
  margin: 2rem;
  line-height: 1.8;

}

.at-text{
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
  color: #8ea1aa;
  background: #eaeaea;
}

.red{
  color: rgba(242, 55, 55, 0.798);
  font-size: 30px;
  font-weight: 900;
}
ul.cp_list {
  padding: 0.5em;
  list-style: none;
}
ul.cp_list li {
  position: relative;
  padding: 0.5em 1em 0.5em 2.3em;
  margin-bottom:5px;
  border-bottom: 1px solid rgb(47, 143, 152);
}
ul.cp_list li:after,
ul.cp_list li:before {
  position: absolute;
  content:'';
  transform: rotate(45deg);
}
ul.cp_list li:before {
  top: 0.7em;
  left: 0.2em;
  width: 12px;
  height: 12px;
  border:2px solid rgb(17, 116, 141);
}
ul.cp_list li:after {
  top: 0.9em;
  left: 0.7em;
  width: 14px;
  height: 14px;
  background: rgba(105, 110, 111, 0.5);
  transform: rotate(60deg);
}




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

  /* 文字サイズ */
  .size64-800 {

padding-top: 2rem;
    margin-bottom: 0rem;
    font-size: 24px;
  }


  .bot-2rem {
    margin: 0 auto;
    width: 90%;
   
  }
  /*========= ナビゲーションのためのCSS ===============*/
  .g-nav-p {
    display: none;
  }
  .g-nav {
    display: block;
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    left: -120%;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #5a5f70;
    background-image: url(../img/mb-menu-blu.png);
    object-fit: contain;
    /*動き*/
    transition: all 0.6s;
    font-size: 34px;
 
  
   
  }
  /*アクティブクラスがついたら位置を0に*/
  .g-nav.panelactive {
    left: 0;
  }
  /*ナビゲーションの縦スクロール*/
  .g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  .g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
   
     transform: translate(-50%, -50%);
     display: flex;
     flex-direction: column;
  }

  /*リストのレイアウト設定*/
  .g-nav li {
    list-style: none;
    text-align: center;
  }

  .g-nav li a {
    color: #fffdfd;
    text-decoration: none;
    padding: 10px;
    display: block;
   
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 2.5rem;
    left: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 10px;
    height: 5px;
    border-radius: .5px;
    background-color: #96a4b6;
    width: 60%;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 31px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 60%;
    background-color: #ffffff;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 60%;
    background-color: #ffffff;
  }

  /* ヘッダー */

  .header__inner {
    height: 90px;
  }

  .logo-h {
    top: 2rem;
    padding: 2% 5%;
    left: 30%;
    
  }
.topte{
  width: 95%;
  left: 20px;
  top: 10px;
  
}

.header-in{
  background-image: url(../img/head-in-mb.png);
  height: 80px;
}

  /* ヒーローイメージ */
.cat1 {
  width: 60%;
 padding: 2%;

 line-height: 1.5;
 
}

  .on-hel-text {

    display: flex;
    flex-direction: column;
    font-size: 14px;
    background-color: #ecf3f3bb;
    
  }

  .sizeup {
    font-size: 25px;
    line-height: 1.2;
   
  }

  .info-text{
    width: 90%;
    margin: 20px;
    
  }

  .helo-logo{
    font-size: 3rem;
    
  }

  .sns-box {
    width: 100%;
    margin: 0 auto;
    align-items: center;
    gap: 1rem;
    bottom: 3rem;
   
  }

   /* スライドショー*/
   #slider {
    height: 45vh;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  }

  .scrolldown2{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  bottom:20px;
  
  left:50%;
  }

  /* ４メニューカード */

  .box-btn11 {
    margin-top: .3rem;
    flex-wrap: wrap;
    
  }

  .float2 {
    width: 46%;
    height: 90px;
    font-size: 10px;
    padding: 10px;
    
  }

  .font-mini {
    line-height: 1.2;
    font-size: 10px;
  }
.content-text{
  width: 55%;
}
 

  /* プロフィール */
.abouto{
  width: 100%;
  margin: 0;
}
.ab-ti{
  margin-top: 6rem;
  margin-bottom: 2rem;
}

.info-text {
  margin: 0;
}

  .pro {
    display: flex;
    flex-direction: column;
 margin: 0;
    padding: 0;
  
  
    
    
  }
  .pro-text p{
    width: 100%;
    

  }

  .pro-image{
   margin: 0;
    width: 100%;
  }

  .pro-image p {
    margin-left: 20px;
    padding-top: 0;
    margin-bottom:0;
    margin-top: 0;
 

    
  }
  .pro-text {
    width: 100%;
  
    padding-bottom: 0rem;
 

  }


  /* 長方形のボタン (Instagramを見る）*/
  .btn-square-shadow {
    margin: 8rem auto;
    width: 100%;
  }

  .pro-pho {
    width: 100%;
    background-color: #264f6c22;
    text-align: center;
   margin-bottom: 7rem;
  
  }

  .hal {
    margin: 20px auto 0;
   
  }
  .phot-ho-full {
    margin:0 auto 20px;
}

  

 
/* menu */

.box-menu11{
padding-bottom: 7rem;
  
}

.menu1-box{
  margin-top: 2rem;
 background-image: url(../img/mb-menu-22.png);
padding: 0;
 padding-top: 2rem;
 background-size: cover;
padding-bottom:50px;
}

.menu-kard{

flex-wrap: wrap;
margin-top: 6rem;

}

.menu-kard1{
width: 40%;
margin-top: 6rem;

}
.menu-kard1 img{
  width: 100%;
}


  /* 施術について */
  /* flaw（初めての方へ） */

  .flex-flow {
    background-image: none;

  
  }

  .flow-text1{
   
    margin: 3rem auto;
    width: 100%;
  }

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



  .flow-box {
    margin-top: 0;
    width: 100%;
    text-align: justify;
    background-image: url(../img/flow-mb.png);

  }

  .gallery-list img{
    margin-top: 6rem;
    
  }

  /* ボタン色変更（初めての方へ） */
  .beginner {
    margin: 3rem auto 0;
  }

  /*よくある質問 */

  .qa-list {
    width: 90%;
  }

  .faq-box {
    margin-bottom: 0;
    width: 100%;
    padding-top: 0;
   
  }

  /* お客様の声 */
  .glassmorphism-image {
    display: inline-flex;
    flex-direction: column;
    text-align: justify;
    width: 95%;
    margin: 0 auto;
  }

  .voice-box{
    padding:10px;
    padding-bottom: 7rem;
  }

  /* goods */
  .inner {
    width: 90%;
  }

  .box {
    margin-top: 1rem;
    flex-direction: column-reverse;
  }

  .box+.box {
    margin-top: 1rem;
    flex-direction: column-reverse;
    margin-top: 5rem;
  }

  .box__body {
    width: 100%;
    padding: 0;
  }

  .box__image {
    margin-top: 20px;
    width: 100%;
    margin-top: 2rem;
  }

  .box__ttl {
    font-weight: 600;
    margin-top: 2rem;
  }


  /* アクセス */

  .open12{
    text-align: justify;
    width: 85%;

    margin: 0 auto;
  }
  .map {
  width: 100%;
  height: 300px;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .Contents-access {
  width: 90%;
    margin:1rem auto;
  
   
  }

 

 
  .access-box {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    width: 95%;
    margin: 2rem auto;
    text-align: justify;
    
  }



  .sub-w{
 
   padding: 10%;
  }





  /* フッター */


  .footer-box {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
    align-content: space-around;
  }

  .copyright {
    text-align: center;
    color: #000;
    padding-bottom: 1rem;
  }

  .open-table {
    margin-left: 35%;
  }



  .mb-1 {
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 100%;
  }

  .or-top {
    order: -1;
  }


/* 別ページ */

 


  .white{
   
    width: 95%;
    margin-bottom: 1rem;
    
  }

  .sub-info{
    width: 95%;
    line-height: 1.6;
  }

  .menu-1{

    width: 95%;
    margin-bottom: 2rem;
  }
  .opt{
    
    font-size: 1rem;
   margin-top: 3rem;
  }

  .box-menu11{

      display: flex;
      flex-direction: column;
    margin-bottom: 1rem;
    width: 100%;
    margin: 0;
    
    
    }

    .menu11-img img{


width: 100%;
margin: 20px auto;

    }

/* 別ページflow */
.gallery-lists{

  flex-direction: column;
  
}

.gallery-list {
  width: 95%;
margin-top: 1rem;
}

.gallery-list-11{
  width: 95%;
  margin-left: 1.7%;

}

/* 別ページattention */
.sub-box1{

  flex-direction: column;
}



.box-at{
  width: 95%;
  margin: 0;
  padding-bottom: 6rem;
 

}

.at-text{

  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.at-phot{
  margin-bottom: 6rem;
}

.cp_list{
  margin-bottom: 6rem;
}
}
    


