/* Reset */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
  color: #000;

}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  background-color: #fff;

}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  -webkit-text-size-adjust: none;
}

/* Box Model */

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* end */



.cursor {
  position: fixed;
  top: -20px;
  left: -20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: solid 1.5px rgba(250, 250, 250, 0.7);
  z-index: 9999;
  transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
  transform: translate(0, 0);
  pointer-events: none;
  mix-blend-mode: difference;
}

/*aタグにホバーした時に見た目変化*/
.cursor.cursor--hover {
  top: -50px;
  left: -50px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  mix-blend-mode: difference;
}





/* オープニング */
/* Loading背景画面設定　*/
#splash {
  z-index: 9999;
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #df860f;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}




/* ここまで */

.r {
  display: none;
}

.logo_w img {
  display: none;
}


.imgrs {
  display: none;
}



body {
  font-family: 'Times New Roman', Times, serif;
  margin: 0 auto;
}



section {
  width: 100%;
}


.left {

  width: 20%;

}

h1,
h2 {
  width: 70%;
  margin: 0 auto;
}


.right {
  width: 80%;
  padding-top: 20vh;

}


.flex {
  display: flex;
}


.section_title {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99999;
  padding-top: 20vh;

}



/* ヘッダー */





header {
  /*fixedで上部固定*/
  position: fixed;
  background-color: transparent;
  mix-blend-mode: difference;
  height: 20vh;
  width: 100%;
  z-index: 666;
  /*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  display: table;
}

nav {

  display: table-cell;
  vertical-align: middle;
}

nav ul {
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
}

.openbtn {
  display: none;
}

/*　上に上がる動き　*/

#header.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#header.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


nav ul li {
  padding: 0 15px;
}

nav ul li:last-child {
  padding-right: 0;
}


nav ul li a {
  display: block;
  color: #fff;
  letter-spacing: .3em;
  margin-right: -.3em;
  font-size: 1rem;
  position: relative;
  box-sizing: border-box;
}




.gnavi li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}

.gnavi li a:hover {
  color: #fff;
}

.gnavi li a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: -2px;
  /*線の形状*/
  width: 100%;
  height: 1px;
  background: #fff;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}








/* ヘッダーend */


.fadeUpTrigger {
  opacity: 0;
}


.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}












/* topページ */




.top_text_box {
  padding-top: 10px;
  text-align: center;
  width: 100%;
  letter-spacing: .01em;
}

.top_address {
  font-size: 1.5rem;
  line-height: 140%;
  letter-spacing: .01em;
}

.top_info {
  font-size: 1.3rem;
  line-height: 140%;
  padding-bottom: 10px;
  letter-spacing: .01em;
}


/* QR */


.qr_box {
  background-image: url(../images/qr.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100px 100px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
}

.qr_box:hover {
  background-image: url(../images/rcover.png);
  background-repeat: no-repeat;
  background-size: 150px 150px;
  background-position: center;
}





.inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  animation: rotateAnim 9s linear infinite;
  background-image: url(../images/reservationtext.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform-origin: center;
  margin: 0 auto;
}






@keyframes rotateAnim {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}





/* QR END */


.top_sign {
  width: 100%;
  margin: 15% auto;
  font-size: 1.2rem;
  text-align: center;
}

.top_sign a {
  display: inline-block;
  text-decoration: none;
  letter-spacing: .01em;
}

.top_sign a span {
  display: inline-block;
  margin-right: 15px;
  width: 1px;
  height: 100px;
  background: #000;
  vertical-align: top;

}

.top_sign a span:before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background: #000;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 7px;
  margin-top: 84px;
}





/* スライド */

.slider-area {
  padding-right: 30px;
  padding-bottom: 5vh;
}

.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 75vh;
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

/*　背景画像設定　*/

.slider-item01 {
  background: url(../images/salonimg.jpeg);
}

.slider-item02 {
  background: url(../images/salon3.jpeg);
}

.slider-item03 {
  background: url(../images/salon4.jpg);
}

.slider-item {
  width: 100%;
  /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 75vh;

  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat;
  /*背景画像をリピートしない*/
  background-position: center;
  /*背景画像の位置を中央に*/
  background-size: cover;
  /*背景画像が.slider-item全体を覆い表示*/
}





/* ここまで */
















/* aboutページ */




#about .right {
  padding-top: 20vh;
}

.pro{
padding-top: 280px;
}

.p_img {
  width: 700px;
  padding-left: 2%;
  padding-right: 20px;
}

.p_img img{
  max-width: 100%;
}


.profilebox {
display: flex;
}

.profilebox p {
  color: #000;
}

.shop_name {
  font-size: 1.5em;
  padding-bottom: 1.5rem;
  letter-spacing: .01em;
}

.about_title {
  font-size: 22px;
  text-decoration: underline;
  text-underline-offset: .5em;
  font-family: 'Noto Sans JP', sans-serif;
  padding-bottom: 1.5rem;
  text-decoration-color: #fff;

}

.about_note {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 180%;
  padding-bottom: 1rem;
  font-size: 0.9rem;
}

.name {
  padding-top: .5rem;
  text-align: right;
  letter-spacing: .01em;
}




/* aboutページend */




/* priceページ */



h4 {
  font-size: 2rem;
  color: #df860f;
  letter-spacing: .1em;
  padding-bottom: 1.8rem;
}

.right ul {
  padding-bottom: 2rem;
}

.right ul li {
  font-family: 'Noto Sans JP', sans-serif;
  padding-bottom: 1rem;
}

.right ul li small {
  font-size: .8em;
  padding-left: .8em;
}

.priceattn {
  font-size: .8em;
  padding-top: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 150%;
}

.mini {
  font-size: .8em;
}


.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
}

.price-table th {
  text-align: left;
  font-size: 1rem;
  color: #df860f; /* h4と同じカラーに統一 */
  letter-spacing: 0.1em;
  padding: 0.5em 0.8em;
  border-bottom: 2px solid #ccc;
}

.price-table td {
  padding: 0.8em;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
}

.price-table td small {
  font-size: .8em;
  color: #666;
}






/* priceここまで */


/* hairここから */


.insta {
  font-size: 1.2rem;
  width: 100%;
  height: 100px;
  padding-right: 30px;
  letter-spacing: .2em;
  margin-right: -.2em;


}

.insta a {
  align-items: center;
  justify-content: flex-end;
}

.insta img {

  width: 50px;
  height: 50px;
  margin-left: 10px;
}


.gallery {
  columns: 4;
  /*段組みの数*/
  padding: 0 15px;
  /*ギャラリー左右に余白をつける*/
  margin: 0;
}

.gallery li {
  margin-bottom: 20px;
  /*各画像下に余白をつける*/
  list-style: none;
}

/*ギャラリー内のイメージは横幅100%にする*/
.gallery img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  padding-right: 15px;
  /*画像の下にできる余白を削除*/
}


/*　画像の拡大　*/

.zoomIn img {
  transform: scale(1);
  transition: .3s ease-in-out;
  /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn a:hover img {
  /*hoverした時の変化*/
  transform: scale(1.2);
  /*拡大の値を変更したい場合はこの数値を変更*/
}

/*　画像のマスク　*/

#hair .mask {
  display: block;
  line-height: 0;
  /*行の高さを0にする*/
  overflow: hidden;
  /*拡大してはみ出る要素を隠す*/
}



/* hairここまで */




/* accessページここから */


#access br {
  display: block;
  content: "";
  padding-top: .2em;

}


.access_name {

  padding-bottom: 1rem;
  letter-spacing: .01em;
}

.open_time {
 
  padding-bottom: 1rem;
}

.close_time {

  padding-bottom: 1rem;
}

.access_ad {
  font-family: 'Noto Sans JP', sans-serif;
  padding-bottom: 1rem;
}

.access_attn {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: .8rem;
  padding-bottom: 2rem;
}


#access .right {
  position: relative;
}



.map {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 50vh;
  width: 100%;
  padding-right: 30px;
}




/* accessページここまで */

/* reservationここから */

#reservation {
  margin-bottom: -16px;
  position: relative;
}

#reservation .right {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;

}

#reservation .qr_box {
  padding: 0;
  margin: 150px auto;
  width: 200px;
}



.reservation_info {
  position: absolute;
  left: 20%;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8rem;


}

#page-top {
  position: absolute;
  bottom: 2%;
  right: 30px;
  animation: hasami 2s ease-in-out infinite;
}




@keyframes hasami {
  0% {
    bottom: 1%;
  }

  50% {
    bottom: 3%;
  }

  100% {
    bottom: 1%;
  }
}









/* reservationここまで */


footer {
  height: calc(70vh - 16px);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}




/* END */








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

  .openbtn {
    display: block;
  }


  /* レイアウト */

  .flex {
    display: block;

  }

  .cursor {
    display: none;
  }


  #about .left,
  #price .left,
  #hair .left,
  #access .left,
  #reservation,
  .left {
    width: 100%;
    padding: 40px 40px 40px 40px;
    height: 100px;
  }

  #about .right,
  #price .right,
  #access .right,
  #hair .right,
  #reservation,
  .right {
    width: 100%;
    padding: 15% 5% 5% 5%;
    height: auto;
  }






  .section_title {
    position: static;
    padding: 2% 0;
    z-index: 10;

  }

  h1,
  h2 {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    position: static;
    height: auto;

  }


  .section_title img {
    margin: 0 auto;
    width: 50%;
    text-align: center;
    height: auto;

  }

  #header {
    position: fixed;
    transition: 1s ease-in-out .5s;
    mix-blend-mode: difference;
  }

  #header.panelactive {
    mix-blend-mode: normal;
    transition: 1s ease-in-out .5s;
  }


  #top .left {
    display: none;
  }


  #top .right {
    width: 100%;
    height: 100vh;
    padding: 0;

  }


  /* ヘッダー（ハンバーガー） */

  .imgrs {

    display: block;
    padding-bottom: 1rem;
    width: 80%;
  }





  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 99999;
    /*ナビのスタート位置と形状*/
    top: -200vh;
    left: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: transparent;
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }

  .bk {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 30;
    /*ナビのスタート位置と形状*/
    top: -200vh;
    left: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #fff;
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  .bk.panelactive {
    top: 0;
  }


  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 99999;
    top: 10%;
    left: 2%;

    display: block;

  }

  /*リストのレイアウト設定*/

  #g-nav li {
    list-style: none;
    text-align: left;
  }

  #g-nav li a {
    color: #000;
    text-decoration: none;
    padding: 10px;
    display: block;
    letter-spacing: 0.1em;
    font-size: 2em;
  }

  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;

  }

  /*×に変化*/
  .openbtn span {

    font-size: .85em;
  }

  .openbtn span:nth-of-type(1) {
    top: 12px;
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1.5px;
    border-radius: 2px;
    background-color: #fff;
    width: 80%;
  }

  .openbtn span:nth-of-type(2) {
    top: 25px;
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1.5px;
    border-radius: 2px;
    background-color: #fff;
    width: 80%;
  }

  .openbtn span:nth-of-type(3) {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    width: 80%;
    top: 36px;
    color: #fff;
  }

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

  .openbtn.active span:nth-of-type(2) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 80%;
    background: #000;
  }

  .openbtn.active span:nth-of-type(3) {
    color: #000;
    opacity: 0;
  }







  /* ヘッダーおわり */


  /* top */



  .slider-area {
    padding: 0;
  }

  .slider {
    position: relative;
    z-index: 1;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    height: 100vh;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  }


  .slider-item {
    width: 100%;
    /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height: 100vh;

    /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;
    /*背景画像をリピートしない*/
    background-position: center;
    /*背景画像の位置を中央に*/
    background-size: cover;
    /*背景画像が.slider-item全体を覆い表示*/
  }






  /* END */



  /* about */




 

  #price .right,
  #hair .right {
    padding: 15% 5% 5% 5%;
  }

  #price .right :first-child {
    padding-top: 1%;
  }


  h4 {
    margin-top: 1%;
    padding-bottom: 1%;
  }

  /* hairギャラリー */

  #hair .right {
    height: auto;
  }

  .gallery {
    columns: 3;
  }

  .gallery img {
    padding-right: 0;
  }

  .insta {
    padding-right: 0;
  }



  .insta a {
    align-items: center;
    justify-content: flex-end;
    display: flex;

  }

  /* accessここから */

  #access .right {
    padding-top: 15%;
  }


  .map {
    height: 400px;
    padding-bottom: 35%;
  }


  .map iframe {
    height: 400px;
    padding-right: 0;


  }


  /* reservation */

  #reservation {

    height: 700px;


  }



  #reservation {
    margin-bottom: -16px;
    position: static;
    padding: 40px 20px;
  }

  #reservation .right {
    position: static;
    width: 100%;
    top: 0;
    left: 0;
    padding: 60px 0 0 0;
    height: 550px;
  }

  #reservation .qr_box {
    padding: 30px;
    margin: 0 auto;
    width: 200px;
  }



  .reservation_info {
    padding-top: 5%;
    position: static;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8rem;
  }


  .reservation_info p {
    text-align: center;
  }


  #page-top {
    text-align: end;
    width: 40px;

  }

  #page-top img {
    padding-left: 30px;
  }


  .logo_w {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 20;

  }

  .logo_w img {
    display: block;
    width: 260px;
  }

  footer {

    height: auto;
    margin-bottom: 20px;
  }
}

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

  #about .right {
    margin-top: 3%;
    background-position: 10px 80px;

  }

  .profilebox {
    padding-top: 50px;
  }

}







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


  .profilebox {
    padding-top: 0;
  }



  h1,
  h2 {
    width: 100%;
  }

  #about .right {
    padding: 80px 20px;
    background-size: contain;
    background-position: 0 60px;
    height: 550px;
  }

  #price .r {
    display: block;
    display: block;
    content: "";
    padding-top: .2em;
  }


  #price small {
    padding-left: 0;
    line-height: 200%;
  }




  .insta a {
    align-items: center;
    justify-content: flex-end;
    display: flex;

  }

  .gallery {
    columns: 2;
    padding: 0
  }




  #reservation {

    height: 500px;


  }






  .qr_box {
    background-image: url(../images/rclick.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 130px 130px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
  }

  .qr_box:hover {
    background-image: url(../images/rcover.png);
    background-repeat: no-repeat;
    background-size: 150px 150px;
    background-position: center;
  }



  .inner {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    animation: rotateAnim 9s linear infinite;
    background-image: url(../images/click.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transform-origin: center;
    margin: 0 auto;
  }






  @keyframes rotateAnim {
    0% {
      transform: rotate(0deg);
    }

    50% {
      transform: rotate(180deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  #access .right {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 30px;
  }


  .map {

    height: 350px;
  }


  .map iframe {

    height: 350px;

  }






  footer {
    padding-top: 170px;
    height: auto;

  }





  #page-top {
    right: 20px;
    bottom: 15px;

  }



}
.price_box {
  padding-right: 30px; /* 左右余白を均等に少なめに */
  box-sizing: border-box;
  max-width: 100vw; /* ビューポート幅を超えない */
  overflow-x: hidden;
}

.price-list {
  display: grid;
  grid-template-columns: 3fr 1fr 4fr; /* frで柔軟かつ比率維持 */
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.price-list li {
  display: contents;
  line-height: 1.5;
}

.price-list .menu,
.price-list .price,
.price-list .note {
  padding: 0.8em 0;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
  white-space: normal;        /* ← これ！折り返し可能に */
  word-break: break-word;     /* ← 長単語も折り返す */
}

.price-list .menu {
  font-weight: bold;
}

.price-list .price {

  color: #000;
}

.price-list .note {
  color: #333;
}

.price-list-header {
  display: contents;
}

.price-list-header .menu,
.price-list-header .price,
.price-list-header .note {
  font-weight: bold;
  color: #df860f;
  border-bottom: 2px solid #ccc;
}

.note-item {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: #666;
  padding: 0.5em 0 0.8em 0.8em;
  margin-top: -0.5rem;
  display: block;
  border-bottom: none;
}


/* ▼ オレンジの項目見出し（Menu / Price / Note）→ 左余白なし */
.price-list-header .menu,
.price-list-header .price,
.price-list-header .note {
  font-weight: bold;
  color: #df860f;
  border-bottom: 2px solid #ccc;
  padding: 0.8em 0;         /* ← 左余白なし */
  box-sizing: border-box;
}

/* ▼ 実際の中身（メニューリスト）→ 左余白あり */
.price-list .menu,
.price-list .price,
.price-list .note {
  padding: 0.8em 0;
 
  border-bottom: 1px solid #e0e0e0;
  white-space: nowrap;
  box-sizing: border-box;
}
.price-list .menu,
.price-list .price,
.price-list .note {
  padding: 0.8em 0;
  border-bottom: 1px solid #e0e0e0;
  box-sizing: border-box;
  white-space: normal;        /* ← これ！折り返し可能に */
  word-break: break-word;     /* ← 長単語も折り返す */
  padding-left: 10px;       /* ← 左余白を入れる */
}



.access_info {
  font-size: 1rem;
  color: #333;
}

.access_info .access_name {
  font-size: 1.5rem;
  padding-left: 10px;
}

.access_info p {
  font-size: 1rem;
}

.select_name {
  font-size: 1.1rem;
}



.access_attn {
  font-size: 0.7rem;
  padding-left: 15px;
  padding-bottom: 3rem;
}

.access_ad {
  line-height: 1.5;
  font-size: 0.9rem;
  padding-left: 15px;

}

.map iframe {
  width: 100%;
  height: 400px;
  border-radius: 20px;
}

.info_box{
  padding-left: 15px;
  padding-bottom: 3rem;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

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

  .price_box {
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .price-list {
    grid-template-columns: 3fr 2fr 4fr; /* 3列キープ */
    gap: 0.3rem 0.5rem;
    font-size: 0.85rem; /* 全体を少し小さく */
  }

  .price-list .menu,
  .price-list .price,
  .price-list .note {
    padding: 0.6em 0;
    white-space: normal;
    word-break: break-word;
    padding-left: 5px;
  }

  .price-list-header .menu,
  .price-list-header .price,
  .price-list-header .note {
    font-size: 0.8rem;
    padding: 0.5em 0;
  }

  .note-item {
    font-size: 0.75rem;
    padding-left: 0.5rem;
  }

  .access_info {
    padding: 0 1rem;
    font-size: 0.9rem;
  }

  .access_info .access_name {
    font-size: 1.2rem;
  }

  .access_ad,
  .access_attn {
    font-size: 0.8rem;
    padding-left: 0.5rem;
  }

  .map iframe {
    height: 300px;
  }

  .info_box {
    font-size: 1rem;
    padding: 0 1rem 2rem;
  }
}


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

  .profilebox {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    align-items: center;
    text-align: left;
  }

  .pro {
    width: 100%;
  }

  .shop_name p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
  }

  .about_title p {
    font-size: 1rem;
    font-weight: bold;
    margin: 0.5em 0;
  }

  .about_note p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .name p {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: right;
  }

  .p_img{
    text-align: center;
  }
.pro {
  padding-top: 30px;
}

  .p_img img {
    height: auto;
    border-radius: 20px;
    object-fit: cover;
  }
}


@media screen and (max-width: 767px) {
  .profilebox {
    display: flex;
    flex-direction: column;
   
    align-items: center;
  }

  .p_img {
    order: -1; /* ← 画像を最上部へ */
    width: 100%;
    padding-top: 40px;
  }

 h4{
  padding-bottom: 20px;
 }

 

}

