@charset "utf-8";
section{padding: 0;margin: 0;}
:root {
  --serif-fallback: "Hiragino Mincho ProN", "Yu Mincho", "游明朝", "Noto Serif JP", serif;
}
.Bodoni {
  font-family: "Noto Serif JP", var(--serif-fallback);
  font-weight: 700;
  line-height: 1.2;
}
.playfair {
  font-family: "Noto Serif JP", var(--serif-fallback);
  font-weight: 400;
  line-height: 1.7;
  font-kerning: normal;
}
/* CSS Document */
a {
  text-decoration: none; /* アンダーラインを削除 */
  color: inherit; /* 親要素の色を継承 */
}
a:visited {
  color: inherit; /* 訪問後も同じ色 */
}
a:hover {
  text-decoration: none; /* ホバー時もアンダーラインを表示しない */
  color: inherit; /* ホバー時も親の色を維持 */
}
a:active {
  text-decoration: none; /* クリック時のスタイル */
  color: inherit;
}
/* 全体のリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-image: url("images/bak.jpg");
  background-size: cover; /* 背景を画面全体に拡大 */
  background-attachment: fixed; /* 背景を固定 */
  background-position: center; /* 背景の位置 */
  background-repeat: no-repeat; /* 背景を繰り返さない */
  margin: 0;
  padding: 0;
}
.main-body {
  background-color: #ffffff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}
.logo {
  width: 100%;
  text-align: center; /* ←これが一番シンプル */
  margin: auto;
}

.logo img {
  max-width: 140px;
  height: auto;
  display: inline-block; /* text-align:center と組み合わせる */
  vertical-align: middle;
}
.txt-c {
  text-align: center;
}
P {
	font-size: 0.9rem;
  line-height: 1.8;
  padding: 10px 0 0 0;
}
/* 通常のテキスト */
.eigo {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
/* 見出しのスタイル: 横線を追加 */
.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 10px 0 10px 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem !important;
}
/* 下線（文字の下に横棒） */
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px; /* テキストと線の距離 */
  transform: translateX(-50%);
  width: 200px; /* 横線の長さ */
  height: 1px; /* 横線の太さ */
  background-color: #333; /* 線の色 */
  border-radius: 2px; /* 丸みをつける場合 */
}
.section-title2 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 10px 0 10px 0;
  font-size: 1.5rem !important;
  font-weight: 700;
}
.section-title2::before, .section-title2::after {
  content: "";
  width: 50px; /* 横線の長さを指定 */
  height: 5px; /* 横線の太さ */
  background-color: #333; /* 横線の色 */
  margin: 0 10px; /* テキストとの間隔 */
}
/* Header */
.header {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
.header h1 {
  font-size: 20px;
}
.main-obi {
  display: block;
  width: 90%;
  margin: 0 0 0 auto;
  background-color: #2d2d2d;
  color: #fff;
  padding: 15px 0 15px 20px;
  z-index: 2;
  position: relative;
}
.main-obi h2 {
  font-size: 26px;
}
.header h1 span {
  font-weight: normal;
  font-size: 14px;
  color: gray;
}
.menu-icon {
  font-size: 24px;
}
/* Main Image */
.main-image img {
  width: 100%;
  height: auto;
}
.main-image2 {
  margin: 0;
	padding: 0;
	height: 100%;
}
.main-image2 img {
  position: relative;
  margin: 0px;
	padding: 0;
  width: 100%;
  height: auto;
	display: block;
  vertical-align: bottom;
}
/* Main Image */
.image {
  width: 100%;
  height: auto;
}
/* Recruitment Section */
.recruitment {
  padding: 20px;
}
.recruitment h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.recruitment .highlight {
  font-weight: bold;
  color: #ffffff;
  background-color: #000;
  font-size: 1.4rem;
  padding: 2px 5px;
  margin: 5px 0;
}
/* Salon Tour */
.salon-tour {
  padding: 0px 0 0 0;
  text-align: center;
}
.salon-tour h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.recruiting-now {
  font-size: 1.6rem;
  color: #383757;
  font-weight: bold;
}
/* Instagram */
.instagram {
  padding: 20px 0;
  text-align: center;
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.instagram h3 {
  font-size: 22px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}
.insta-grid img {
  width: 100%;
  height: auto;
}
.insta-bana {
  margin-top: 10px;
  border: 1px solid #000;
  padding: 2px 20px;
}
.more-instagram {
  margin-top: 10px;
  padding: 10px 30px;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-weight: bold;
  border: 1px solid #000;
}
/* Contact */
.contact {
  padding: 20px 0 0 0;
  text-align: center;
}
.contact-buttons {
  padding: 20px 0 5px 0;
  display: block;
}
.contact-buttons img {
  display: block;
  width: 50%;
  height: auto;
  float: left;
}
.contact-info {
  padding: 0px 0 0 0;
}
/* Footer */
.footer {
  padding: 0px;
  text-align: center;
	background-color: #B3A26A;
	color: #fff;
}
/* 2カラム用のコンテナ */
.footer-contact-container {
  display: flex; /* 横並びにする */
  justify-content: space-between; /* 左右に配置 */
  align-items: center; /* 縦方向の中央揃え */
  text-align: left; /* テキスト左揃え */
  padding-bottom: 10px; /* 下部に余白を追加 */
  margin-bottom: 20px; /* 下部に余白を追加 */
  border-bottom: #fff 1px solid;
}
/* 個別のカラム */
.footer-contact {
  flex: 1; /* 各カラムが均等に幅を取る */
  padding: 0 20px; /* 内側に余白を追加 */
}
.footer-contact p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.footer-contact .tanto {
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.6;
}
.footer-contact strong {
  font-weight: 700;
}
/* タイトル部分 */
.footer-title h1 {
  text-align: left;
  padding-left: 20px;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  display: block;
  align-items: center;
  justify-content: center;
}
/* タイトル部分 */
.footer-title h1 img{
	padding-top: 20px;
  width: 220px;
	height: auto;
}
.footer-title .icon {
  position: absolute;
  font-size: 18px;
  margin-left: 5px;
  margin-top: 19px;
}
.footer-title .icon img {
  width: 30px;
  height: auto;
}
.footer-title p {
  font-size: 16px;
  font-weight: 700;
  color: #555;
}
/* リンクリスト */
.footer-links{
	padding-top: 20px;
	padding-left: 20px;
}
/* リンクリスト */
.footer-links ul {
  list-style: none;
  margin: 10px 0;
}
.footer-links li {
  width: 100%;
  font-size: 14px;
  margin: 5px 0;
  text-align: left;
  display: inline-block;
}
/* プライバシーポリシー */
.privacy-policy p {
  padding-bottom: 20px;
  text-align: center;
  font-size: 11px;
  color: #fff;
}
/* 店舗リスト */
.footer-stores ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-top: 10px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;

}
.footer-stores li {
  width: 33.333%;
  font-size: 14px;
  padding: 10px 0;
  font-weight: 700;
}
.footer-stores li {
  border-right: 1px solid #fff;
}
.footer-stores li:last-child {
  border-right: none;
}
.copy {
  font-size: 0.7rem;
  padding: 20px 0;
}
/* clearfixクラス */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.list2:first-child {
  display: block;
  width: 55%;
  height: auto;
  float: left;
}
.list2 {
  display: block;
  width: 45%;
  height: auto;
  float: left;
}
a img {
  transition: transform 0.3s ease, opacity 0.3s ease; /* トランジション効果 */
}
a img:hover {
  opacity: 0.7;
  transition: transform 0.3s ease, opacity 0.3s ease; /* トランジション効果 */
}
.footer-stores li {
  background-color: #B3A26A;
  color: #fff;
  transition: transform 0.5s ease, background 0.5s ease, color 0.5s ease; /* トランジション効果 */
}
.footer-stores li:hover {
  background: #fff;
  color: #B3A26A;
  transition: transform 0.5s ease, background 0.5s ease, color 0.5s ease; /* トランジション効果 */
}
/* Recruitment Section */
.content {
  padding: 20px;
  text-align: center;
}
.sub-3img {
  padding: 20px 10px;
}
.sub-3img ul {
  list-style: none;
}
.sub-3img ul li {
  position: relative;
  width: 33.33333%;
  box-sizing: border-box;
  padding: 5px 10px 5px 10px;
  float: left;
}
.sub-3img ul li:nth-child(4) {
  position: relative;
  width: 66.66666%;
  box-sizing: border-box;
  padding: 5px 10px 5px 10px;
  float: left;
}
.sub-3img ul li:nth-child(6) {
  clear: both;
  float: left;
}
.sub-3img ul li img {
  width: 100%;
  height: auto;
}
table {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th, td {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 15px 10px;
  text-align: left;
}
th {
  font-weight: bold;
  width: 30%;
  text-align: center;
}
td {
  background-color: #fff;
}
.highlight {
  font-weight: bold;
  color: #000;
}
.qa {
  padding-top: 20px;
  text-align: left;
}
.qa-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
}
.qa-item {
  display: block;
  align-items: center;
  padding: 10px 15px;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
}
.qa-item:last-child {
  border-bottom: 1px solid #ccc;
}
.qa-item .question {
  font-weight: bold;
  margin-right: 10px;
  color: #000;
  font-size: 1.1rem;
  cursor: pointer;
}
.qa-item .text {
  color: #333;
  cursor: pointer;
  flex: 1; /* テキスト部分を可変幅にする */
  width: 100px;
}
.answer {
  clear: both;
  display: none;
  padding: 5px 0px 5px 25px;
}
.questiont {
  width: 100%;
}
/*SPmenu:::::::::::::::::::::::::::::::::::::::::*/
/* sp-menu-------------------------------*/
.toggle2 {
  position: absolute; /* bodyに対しての絶対位置指定 */
  right: 5px;
  top: 10px;
  display: block;
  width: 45px;
  height: 40px;
  cursor: pointer;
  z-index: 2000;
  background-color: #fff;
}
.toggle2 span {
  display: block;
  position: absolute; /* .toggleに対して */
  width: 70%;
  border-bottom: solid 2px #333;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  padding-top: 5px;
  right: 7px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}
.toggle2 span:nth-child(1) {
  top: 3px;
}
.toggle2 span:nth-child(2) {
  top: 13px;
}
.toggle2 span:nth-child(3) {
  top: 23px;
}
.toggle2 span:nth-child(4) {
  border: none;
  top: 28px;
  left: 5px;
  font-size: 12px;
  font-weight: bold;
}
/* 最初のspanをマイナス45度に */
.toggle2.active span:nth-child(1) {
  top: 15px;
  left: 5px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-bottom: solid 2px #000;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0);
}
/* 2番目と3番目のspanを45度に */
.toggle2.active span:nth-child(2), .toggle2.active span:nth-child(3) {
  top: 15px;
  right: 4px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-bottom: solid 2px #000;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0);
}
/* .global_nav */
.global_nav {
  position: fixed;
  text-align: center;
  color: #000;
  opacity: 0;
  max-width: 480px;
  width: 100%;
  height: 100%;
  top: 0%;
  left: calc(50% - 240px);
  z-index: -2;
  background: url("images/spbak.jpg") no-repeat center;
  -webkit-transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  -ms-transition: all ease 0.6s;
  transition: all ease 0.6s;
  transform: translateY(-100%);
  padding: 30px 0px 0px 0px;
}
/* .global_navに.activeが追加 */
.global_nav.active {
  transform: translateY(0%);
  opacity: 1;
  width: 100%;
  height: 100%;
  top: 0%;
  left: calc(50% - 240px);
  z-index: 1000;
  background: url("images/spbak.jpg") no-repeat center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-transition: all ease 0.6s;
  -moz-transition: all ease 0.6s;
  -o-transition: all ease 0.6s;
  -ms-transition: all ease 0.6s;
  transition: all ease 0.6s;
  overflow: auto;
}
@media screen and (max-width: 480px) {
  .global_nav {
    left: 0%;
  }
  .global_nav.active {
    left: 0%;
  }
}
.global_nav .nav_li {
  width: 86%;
  padding: 10px 0 10px 0;
  margin: 0 7% 0 7%;
  list-style-type: none;
  text-align: center;
  position: relative;
  font-size: 20px;
}
.global_nav .nav2_li {
  position: relative;
}
.global_nav ul {
  margin: 0 0 30px 0;
}
.global_nav .logo {
  margin: 0px 0 20px 0;
}
.global_nav a {
  text-decoration: none;
  color: #000;
}
.global_nav .logo2 {
	text-align: center;
}
.global_nav .logo2 img{
	width: 250px !important;
	height: auto;
}
.global_nav .siryo {
  display: block;
  width: 90%;
	background-color: #B3A26A;
	margin: 5px 0 20px 5%;
  padding: 15px 2%;
  float: left;
}
.global_nav .siryo a {
  color: #fff;
}
.global_nav .siryo img {
  width: 30px;
  height: auto;
  padding-right: 10px;
}
.global_nav .mise {
  display: block;
  width: 90%;
  color: #000;
  border: 2px solid #000;
  margin: 5px 5% 20px 0;
  padding: 15px 2%;
  float: right;
}
.global_nav .mise a {
  color: #000;
}
.global_nav .mise img {
  width: 15px;
  height: auto;
  padding-right: 10px;
}
.global_nav .sns {
  clear: both;
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.global_nav .sns img {
  width: auto;
  height: 24px;
  padding: 30px 10px 30px 10px;
}
.global_nav .privacy {
  display: block;
  color: #000;
  font-size: 12px;
  margin-bottom: 40px;
}
/* 1階層 */
.global_nav .nav_li {
  display: block;
}
.global_nav .nav_li a {
  display: block;
  color: #000;
  padding: 2px 0 10px 0;
  margin: 0;
}
.global_nav .nav_li .list {
  border-bottom: 1px solid #000;
  display: block;
}
.global_nav .option {
  display: block;
  width: 93%;
  color: #000;
  border: 1px solid #999;
  margin: 20px auto 30px auto;
  padding: 3%;
  line-height: 35px;
}
.global_nav .option img {
  width: 100px;
  height: auto;
  padding-right: 10px;
}
.togglemenu {
  cursor: pointer;
}
.togglemenu_in {
  display: none;
}
.togglemenu_in2 {
  display: none;
}
.togglemenu a {
  position: relative;
  color: #fff;
}
/* sp-menu-------------------------------*/
.nagare {
  position: relative;
  width: 100%;
  height: 100%;
}
.nagare .bt1 {
  position: absolute;
  top: 13.5%;
  right: 3%;
  width: 32%;
}
.nagare .bt2 {
  position: absolute;
  top: 25.5%;
  right: 3%;
  width: 32%;
}
.nagare .bt3 {
  position: absolute;
  top: 35.5%;
  left: 3%;
  width: 32%;
}
.nagare .bt4 {
  position: absolute;
  top: 46.5%;
  left: 3%;
  width: 32%;
}
.nagare .bt5 {
  position: absolute;
  top: 65%;
  left: 3%;
  width: 32%;
}
.nagare .bt6 {
  position: absolute;
  top: 65%;
  right: 3%;
  width: 32%;
}
.nagare .bt7 {
  position: absolute;
  top: 93.5%;
  left: 13%;
  width: 32%;
}
.nagare .bt8 {
  position: absolute;
  top: 93.5%;
  right: 13%;
  width: 32%;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container, .modal-container2, .modal-container3, .modal-container4, .modal-container5, .modal-container6, .modal-container7, .modal-container8 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before, .modal-container2:before, .modal-container3:before, .modal-container4:before, .modal-container5:before, .modal-container6:before, .modal-container7:before, .modal-container7:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active, .modal-container2.active, .modal-container3.active, .modal-container4.active, .modal-container5.active, .modal-container6.active, .modal-container7.active, .modal-container8.active {
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  padding: 30px;
}
/*モーダル内のコンテンツの指定*/
.modal-content img {
  padding: 10px 0 0 0;
}
.pc-logo, .pc-contact, .pc-bana-left, .pc-bana-right, .pc-insta-right {
  display: none;
}
@media screen and (min-width:1300px) {
  .pc-logo {
    display: block;
    position: fixed;
    top: 40px;
    left: 3%;
  }
  .pc-logo h1 {
    font-size: 4rem;
    line-height: 1.5;
    color: #B3A26A;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 3px;
  }
  .pc-logo h3 {
    font-size: 1.4rem;
    line-height: 1;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1px;
	  text-align: center;
  }
  .pc-contact {
    display: block;
    position: fixed;
    bottom: 40px;
    left: 3%;
    text-align: center;
    max-width: 500px;
  }
  .pcread {
    font-size: 0.9rem;
  }
  .pc-contact h3 {
    padding-top: 20px;
    font-size: 2rem;
    line-height: 1.5;
  }
  .pc-bana-left {
    display: block;
    position: fixed;
    top: 200px;
    left: 3%;
    max-width: 500px;
  }
  .banner {
    width: 350px;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8); /* 背景色 */
    padding: 20px;
    border: 2px solid #B3A26A; /* 枠線 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* 少しの影を追加 */
    margin-bottom: 20px;
    transition: all 0.3s ease; /* アニメーションの設定 */
  }
  .banner:hover {
    background-color: #FAF7EB; /* ホバー時の背景色変更 */
    opacity: 0.8; /* 透明度を少し下げる */
    transform: scale(1.02); /* 少し拡大する */
  }
  .banner img {
    width: 70px;
    height: 70px;
    object-fit: cover; /* 画像の切り取り調整 */
    border-radius: 4px; /* 少し丸みをつける */
    margin-right: 20px;
  }
  .banner-text {
	    font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight:400;
  font-style: normal;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
  }
  .banner-text::before {
    content: '→'; /* 矢印を追加 */
    margin-right: 10px;
    color: #555;
  }
  .pc-bana-right {
    display: block;
    position: fixed;
    top: 50px;
    right: 0;
    max-width: 500px;
  }
  .pc-bana-right h3 {
    margin-bottom: 50px;
  }
  .banner2 {
    width: 400px;
    display: flex;
    background-color: #B3A26A; /* 初期の背景色（黒） */
    color: white !important; /* 初期の文字色（白） */
    padding: 15px 20px;
    font-size: 18px;
    text-decoration: none; /* リンクの下線を消す */
    transition: all 0.3s ease; /* ホバーエフェクトのアニメーション */
    margin-bottom: 20px;
	  border: 1px solid #B3A26A;
  }
  .banner2 .eigo {
    font-size: 2rem;
    line-height: 1;
    padding-right: 20px;
  }
  .banner2 .txt {
    padding-top: 5px;
  }
  .banner2:hover {
    background-color: white; /* ホバー時の背景色 */
    color: #333 !important; /* ホバー時の文字色 */
	  border: 1px solid #B3A26A;
  }
  .pc-insta-right {
    display: block;
    position: fixed;
    bottom: 100px;
    right: 4%;
    max-width: 300px;
  }
  .pc-insta-right h3 {
    margin-bottom: 50px;
  }
}


/* 背景 */
/* 背景（院内写真） */
.cta-section{
  background: url("images/bakf.png") center/cover no-repeat;
  padding: 40px; /* 上下余白は可変 */
}

/* 白い透過BOX（中央） */
.cta-panel{
  max-width: 880px;                /* スクショだと大きめの白BOX */
  margin: 0 auto;
  padding: clamp(30px, 3vw, 40px);
  background: rgba(255,255,255,0.82); /* 透過白 */
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  backdrop-filter: blur(2px);      /* サポート環境でほんのりぼかし */
}

/* ボタンスタック（白BOX内で中央寄せ・小さめに） */
.cta-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2.5vw, 22px);
}

/* 各ボタン（<img>を直接） */
.cta-btn{
  display: block;
  width: min(90%, 540px);   /* 白BOXより一回り小さく：ここが“小さめ”の肝 */
}

/* 画像の見た目とアニメ */
.cta-btn img{
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease;
}

.cta-btn:hover img,
.cta-btn:focus-visible img{
  opacity: .85;                     /* 透過アニメ */
  transform: translateY(-2px);      /* ふわっと */
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  outline: none;
}

/* 背景設定 */
/* 背景設定 */
.service-section {
  background: url("images/topbak.png") center top / cover no-repeat;
  padding: 50px 20px;
  color: #222;
}

/* 中央レイアウト */
.service-inner {
  max-width: 820px;
  margin: 0 auto;
}

/* 各ブロック */
.service-block {
  margin-bottom: 30px;
}

/* タイトル */
.service-title {
  font-family: "Noto Serif JP", "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
  text-align: center;
}

.service-title .gold {
  color: #b8ad7f; /* ゴールド */
}

/* テキスト（左揃え・小さめ） */
.service-text {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #444;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

/* 区切りの× */
.divider {
  position: relative;
  width: 60px;               /* × 全体の大きさ */
  height: 60px;
  margin: clamp(50px, 6vw, 50px) auto;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;                /* 線の太さ（細く調整可） */
  height: 100px;              /* 線の長さ */
  background-color: #7F7F7F;    /* 線の色 */
  transform-origin: center;
  border-radius: 1px;
}

/* 斜め交差させて「×」を作る */
.divider::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.divider::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


/* セクション余白（必要なら外側で調整可） */
.banner-section {
  padding: 50px 0;
}

/* コンテナ：中央寄せ＆幅制御 */
.banner-wrap {
  width: 100%; /* スクショの比率感から最大幅を控えめに */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;               /* バナー間の余白 */
}

/* 画像リンク全体をクリック可能に */
.banner-link {
  display: block;
	width: 80%;
	margin: auto;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* 画像そのものを100%表示 */
.banner-link img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
  transition: opacity .25s ease, filter .25s ease;
}

/* ホバー/フォーカス：透過＋ふわっと浮かせる */
.banner-link:hover img,
.banner-link:focus-visible img {
  opacity: .88;                    /* 透過アニメ */
  filter: saturate(1.02);          /* ほんの少しだけ発色UP（任意） */
}

.banner-link:hover,
.banner-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
  outline: none;
}

/* セクション背景（ベージュ系） *-----------------------------------*/
.price-section{
  background: #F4EDE6;              /* 好みで調整可 */
  padding: clamp(40px, 6vw, 72px) 5%;
}

/* 幅制御 */
.price-inner{
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

/* カード本体 */
.price-card{
  background: #fff;
  padding: clamp(20px, 3.5vw, 34px) clamp(16px, 4vw, 40px);
  box-shadow: 0 5px 10px rgba(0,0,0,.04);
}

/* タイトル（日本語） */
.price-title{
  margin: 0 0 14px;
  text-align: center;
  color: #b8ad7f;                    /* ゴールド風 */
  font-family: "Noto Serif JP","Hiragino Mincho ProN","Yu Mincho",serif;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  font-weight: 600;
  letter-spacing: .06em;
}

/* 細い区切り線 */
.price-divider{
  height: 1px;
  width: 88%;
  margin: 0 auto clamp(14px, 2.2vw, 20px);
  background: #cfc8be;
}

/* 価格行（Bodoni） */
.price-row{
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: .45em;
  margin-bottom: clamp(12px, 2.2vw, 18px);
  font-family: "Noto Serif JP", "Times New Roman", serif; /* ←Bodoni */
  font-feature-settings: "pnum" on, "lnum" on;
}

.price-row .time{
  font-weight: 700;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
}

.price-row .yen{
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
}

.price-row .amount{
  font-weight: 800;
  font-size: clamp(1.5rem, 5.2vw, 2rem); /* 数字を強調 */
  letter-spacing: 0.02em;
}

/* 説明文 */
.price-desc{
  text-align: center;                /* スクショ準拠（中央寄せ） */
  color: #444;
  font-size: .9rem;
  line-height: 1.9;
  margin: 0 auto;
  max-width: 620px;
}

/* メニューリスト追加スタイル */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed #ddd; /* 破線で区切る */
  padding: 10px 0;
  margin-bottom: 5px;
}

.menu-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.menu-list .name {
  font-weight: 500;
  color: #333;
  text-align: left;
  padding-right: 10px;
}

.menu-list .price {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
  white-space: nowrap; /* 価格が折り返されないように */
}

/* 余白調整（最下カードの下も余裕） */
.price-card:last-child{ margin-bottom: 2px; }

/* 動きが苦手な環境ではアニメ抑制（必要に応じて） */
@media (prefers-reduced-motion: reduce){
  * { transition: none !important; }
}

/* セクション余白と背景（必要なら外側で調整） */
.contact-section{
  padding: clamp(40px, 6vw, 80px) 20px;
}

/* 幅制御 */
.contact-inner{
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* 画像（プレースホルダー） */
.contact-figure{
  margin: 0 0 clamp(18px, 3vw, 28px);
}
.contact-figure img{
  display: block;
  width: 100%;
  height: auto;
  background: #e9e9e9; /* 念のための下地グレー */

  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

/* サロン名 */
.contact-name{
  margin: 0 0 14px;
  font-family: "Noto Serif JP","Hiragino Mincho ProN","Yu Mincho",serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 3.2vw, 1.6rem);
  color: #b8ad7f; /* ゴールド風 */
  letter-spacing: .06em;
}

/* 細い区切り線 */
.contact-divider{
  width: min(88%, 640px);
  height: 1px;
  background: #cfc8be;
  margin: 0 auto clamp(16px, 3vw, 22px);
}

/* 住所 */
.contact-address{
  margin: 0 0 clamp(8px, 2vw, 12px);
  font-size: 0.9rem;
  color: #333;
  letter-spacing: .02em;
}

/* TEL行：Bodoniで数字を強調 */
.contact-tel{
  margin: 0 0 clamp(22px, 4vw, 30px);
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: .6em;
  flex-wrap: wrap;
}

.contact-tel .label{
  font-family: "Noto Serif JP","Times New Roman",serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.3rem);
  color: #111;
  letter-spacing: .05em;
}

.contact-tel .phone{
  font-family: "Noto Serif JP","Times New Roman",serif; /* ←Bodoni */
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2rem);
  color: #000;
  text-decoration: none;
}
.contact-tel .phone:hover,
.contact-tel .phone:focus-visible{
  opacity: .85;
  outline: none;
}

/* Google Map：レスポンシブ（16:9） */
.contact-map{
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.contact-map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 余白の微調整（狭い画面） */
@media (max-width: 520px){
  .contact-divider{ width: 92%; }
  .contact-address{ font-size: 0.9rem; }
}