@charset "UTF-8";
/* ================================================================
  CSS カスタムプロパティ（ブランドカラー・共通値の一元管理）
================================================================ */
:root {
  --color-main:        #473b24;
  --color-base:        #FEEFC5;
  --color-accent:      #ff1493;
  --color-bg-section:  #f8f6f2;
  --color-border:      #E4E4E4;
  --color-menu-border: #7e7565;
  --color-muted:       #9a9a9a;
  
 
  --font-serif:        'Lustria', serif;
  --font-nav:          'Volkhov', serif;
 
  --max-width:         950px;
  --transition-fast:   .2s ease-in-out;
  --transition-mid:    .3s ease-in-out;
}
 
/* ================================================================
  全体の基本設定
================================================================ */
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 
    "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Noto Sans JP",
    sans-serif;
  letter-spacing: 0.03em;
  color: var(--color-main);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* ================================================================
  PC レイアウト
================================================================ */
 
/* ────────────────────────────────────────
  ヘッダー
──────────────────────────────────────── */
header {
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;/* ←要素の上下中央を揃える */
  height: 90px;
  background: var(--color-base);
}

.logo {
  width: 250px;
  margin-top: 20px;/* ←デザイン上、topの余白を調整 */
}
    
.reserve {
  margin-top: 10px;/* ←デザイン上、topの余白を調整 */
}

.reserve .tel {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 4px;
  font-family: var(--font-serif);
}

.reserve .tel span {
  font-size: 0.833rem;
}

.reserve .hd-web-btn {
  font-size: 0.833rem;
  text-align: center;
  background: var(--color-main);
}

.reserve .hd-web-btn a {
  display: block;
  padding: 4px;
  color: #fff;
  border: solid 1px var(--color-main);
  transition: var(--transition-fast);
}

.reserve .hd-web-btn a:hover {
  color: var(--color-main);
  background: var(--color-base);
  border:solid 1px var(--color-main);
}

.reserve .hd-web-btn a i {
  font-size: 0.833rem;
  margin-right: 6px;
}


/* ────────────────────────────────────────
  グローバルナビゲーション
──────────────────────────────────────── */
.global-nav {
  background: var(--color-base);
}

.global-nav ul {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto; 
  padding: 14px 2rem;
  font-family: var(--font-nav);
  font-size: 0.833rem;
}

.global-nav ul li a {
  color: var(--color-main);
  padding-bottom: 2px; /* ←テキストと下線の間隔 */
  background-image: linear-gradient(var(--color-main), var(--color-main));
  background-repeat: no-repeat;
  background-position: bottom right; /* ←下線の初期位置 */
  background-size: 0 2px; /* ←下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}

.global-nav ul li a:hover {
  background-position: bottom left; /* ←下線のホバー時位置 */
  background-size: 100% 2px;
}

/* スクロール追従 */
.fixed {
  position:fixed;
  top:0;
  width:100%;
  z-index:10000;
}

.fixed ul {
  padding: 10px 2rem;/* ←追従時は上下の余白をやや狭く */
}


/* ────────────────────────────────────────
  メインビジュアル　スライダー
──────────────────────────────────────── */
.slider {
  width: 100%;
  height: 80vh;
}

.slider img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.slider div:first-child img {
  object-position: center 15%;/* ←1番目の画像のみ表示の位置を調整 */
}


/* ────────────────────────────────────────
  メイン共通（max-width 950px で統一）
──────────────────────────────────────── */ 
main {
  background: #fff;
}

section {
  scroll-margin-top: 37.5px;
}

.section-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem 4.5rem 2rem;
}

h2 {
  text-align: left;
  font-size: 1.728rem;
  font-family: var(--font-serif);
  font-weight: bold;
  letter-spacing: 0.10rem;
}

/* h2の装飾下線 */ 
h2::after {
  display: block;
  content: "";
  width: 3rem;/* ←線の長さ */
  height: 1px;/* ←太さ */
  background: var(--color-main);
  margin: 1.5rem 0 1.8rem 0;
}

/* ────────────────────────────────────────
  CONCEPT セクション
──────────────────────────────────────── */
.concept .section-wrap p {
  line-height: 1.9;
  font-size: 0.833rem;
}

/* ────────────────────────────────────────
  NEW DESIGNS セクション
──────────────────────────────────────── */
.new-designs {
  background: var(--color-bg-section);
}

/* NEW DESIGNSのみh2を中央揃えに */
.new-designs .section-wrap h2 {
  text-align: center;
}

/* NEW DESIGNSのみh2の装飾下線を中央揃えに */
.new-designs .section-wrap h2::after {
  margin: 1.5rem auto 1.8rem auto;
}

.new-designs figure {
  display: flex;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
}

.new-designs figure a img {
  display: block;
  padding: 0.8rem;
  background: #fff;
  transition: var(--transition-mid);
}

.new-designs figure img:hover {
  opacity: 0.6;
}

/* 8月限定定額 ¥5,670〜 */
.new-designs .limited {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.8rem auto 2rem auto;
  font-size: 1.2rem;
}

/* 8月限定 */
.new-designs .limited .month {
  padding: 0.1rem 0.3rem;
  color: var(--color-accent);
  font-size: 0.694rem;
  border: solid 1px var(--color-accent);
}

/* 定額コース */
.new-designs .limited .course {
  margin-right: -0.3rem;
}

/* 金額 */
.new-designs .limited .price {
  display: flex;
  gap: 0.1rem; /* ←ここで「¥」と数字の距離を微調整 */
  align-items: baseline;
}

/* ￥マーク */
.new-designs .limited .yen {
  font-size: 0.833rem;
}

.new-designs .view-more-btn a {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.8rem 3rem;
  color: var(--color-main);
  font-size: 1rem;
  border: solid 1px var(--color-main);
  transition: var(--transition-mid);
}

.new-designs .view-more-btn a i {
  font-size: 1rem;
  margin-right: 0.5rem;
}

.new-designs .view-more-btn a:hover {
  background: var(--color-main);
  color: #fff;
}
  
/* ────────────────────────────────────────
  STAFF セクション
──────────────────────────────────────── */
.staff .section-wrap {
  display: flex;
}

.staff .section-wrap .left-col {
  width: 50%;
}

.staff .section-wrap .left-col .nailist {
  margin-bottom: 1rem;
  font-weight: normal;
  font-size: 1.2rem;
}

.staff .section-wrap .left-col .nailist span {
  margin-left: 1rem;
  font-size: 0.694rem;
  vertical-align: middle;
  color: var(--color-muted);
}

.staff .section-wrap .left-col .coment {
  margin-bottom: 1.4rem;
  font-size: 0.833rem;
  font-family: 'Lustria', serif;
  line-height: 1.4rem;
}

.staff .section-wrap .left-col .coment p {
  margin-bottom: 0.8rem;
}

.staff .section-wrap .left-col .profile {
  margin-bottom: 0.3rem;
}

.staff .section-wrap .left-col .profile i {
  font-size: 0.694rem;
  margin-right: 0.3rem;
}

.staff .section-wrap .left-col table tr td {
  font-size: 0.694rem;
  padding: 0 1rem 0 0;
}

.staff .section-wrap .right-col {
  width: 50%;
  overflow: hidden;
  position: relative;
}

.staff .section-wrap .right-col img {
  display: block; 
  position: absolute;
  top: 0;
  left: 0;  
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ────────────────────────────────────────
  NEWS セクション
──────────────────────────────────────── */
.news {
  background: var(--color-bg-section);
}

.news .section-wrap h2 {
  text-align: center;
}

.news .section-wrap h2::after {
  margin: 1.5rem auto 1.8rem auto;
}

.news i {
  margin-right: 0.8rem;
}
      
.news-list {
  width: 70%;
  margin: 0 auto;
  font-size: 0.833rem;
}

.news-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.news-list li:last-child {
  margin-bottom: 0;/* ←余白の相殺 */
}

.news-list .date {
  display: block;
  width: 100px;
  line-height: 1.4;/* ←テキストの位置を更新内容と合わせる */
}

.news-list .content {
  flex: 1;/* ←右カラムだけ可変する */
}

.news-list .title {
  line-height: 1.4;/* ←テキストの位置を日付と合わせる */
}

.news-list .txt {
  margin: 0.3rem 0 0;
  font-size: 0.833rem;
}

/* ────────────────────────────────────────
  ACCESS セクション
──────────────────────────────────────── */
.access .section-wrap {
  display: flex;
}

.access .section-wrap .left-col {
  width: 50%;
}

.access .section-wrap .right-col {
  width: 50%;
  overflow: hidden;
  position: relative;
}

.access .section-wrap .right-col img {
  display: block; 
  position: absolute;
  top: 0;
  left: 0;  
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access .section-wrap p {
  margin-bottom: 1rem;
  font-size: 0.833rem;
}

.access .section-wrap p .status {
  margin-right: 0.4rem;
  font-size: 0.694rem;
  color: var(--color-muted);
}

.access p .symbol {
  margin-right: 0.2rem;
  vertical-align: 0.08em;
}

.access p:nth-child(8) {
  margin-bottom: 0.1rem;
}

.access p:last-child {
  margin-bottom: 0;
}

.access .phone {
  display:none;
}

#map {
  width:100%;
  height:400px;
}
  
/* ────────────────────────────────────────
  MENU ページ
──────────────────────────────────────── */
.menu .section-wrap {
  max-width: 1100px;
}

.menu .section-wrap h2 {
  text-align: center;
}

.menu .section-wrap h2::after {
  margin: 1.5rem auto 1.8rem auto;
}

.menu .section-wrap .section-inner {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 0 auto;
} 

.menu .section-wrap .section-inner .left-col {
  flex: 1;
}

.menu .section-wrap .section-inner .left-col .menu-table:first-child {
  margin-top: 0;
}

.menu .section-wrap .section-inner .right-col {
  flex: 1;
}

.menu .section-wrap .section-inner .right-col .menu-table:first-child {
  margin-top: 0;
}

.menu .section-wrap .section-inner .menu-table {
  margin-top: 2rem;
}

.menu .section-wrap .section-inner .menu-table h3 {
  padding-bottom: 1rem;
  font-size: 1.44rem;
  font-family: 'Lustria', serif;
  text-align: center;
  border-bottom: solid 2px var(--color-menu-border);
}

.menu .section-wrap .section-inner .menu-table table {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
}

.menu .section-wrap .section-inner .menu-table table tr th {
  padding: 1.5rem 0 1rem 0;
  font-size: 1rem;
  font-weight: normal;
  border-bottom: dotted 2px var(--color-menu-border);
}

.menu .section-wrap .section-inner .menu-table table tr td {
  padding: 1rem 0;
  font-size: 0.833rem;
  border-bottom: solid 1px var(--color-border);
}

.menu .section-wrap .section-inner .menu-table table tr td:last-child {
  text-align: right;
}

.menu .section-wrap .section-inner .menu-table table tr td .txt {
  font-size: 0.694rem;
}

.menu .section-wrap .section-inner .menu-table table tr td .txt .symbol {
  margin-right: 0.1rem;
  vertical-align: 0.08em;
  font-size: 0.694rem;
}

.menu .section-wrap .section-inner .menu-table table .group-title td {
  border-bottom: none;
  padding-bottom: 0.2rem;
}

.menu .section-wrap .section-inner .menu-table table .group-item td {
  border-bottom: none;
  padding: 0.2rem 0;
}

.menu .section-wrap .section-inner .menu-table table .group-last td {
  border-bottom: solid 1px rgb(228, 228, 228);
  padding: 0.2rem 0 1rem 0;
}

.menu .section-wrap .right-col .menu-table p {
  padding: 1rem  0.5rem 0 0.5rem;
  font-size: 0.694rem;
  text-align: right;
} 

/* ────────────────────────────────────────
  GALLERY ページ
──────────────────────────────────────── */
.gallery .section-wrap {
  max-width: 1100px;
}

.gallery .section-wrap h2 {
  text-align: center;
}

.gallery .section-wrap h2::after {
  margin: 1.5rem auto 1.8rem auto;
}

.gallery .section-wrap h3 {
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.44rem;
  font-family: 'Lustria', serif;
  text-align: left;
  border-bottom: solid 2px var(--color-menu-border);
}
.gallery .section-wrap .foot-nail {
  margin-top: 3rem;
}

.nail-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-section);
}

.nail-list img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: solid 0.8rem #fff;
  transition: var(--transition-fast);
}

.nail-list img:hover {
  opacity:0.6;
}

/* ────────────────────────────────────────
  FORM ページ
──────────────────────────────────────── */
.form .section-wrap h2 {
  text-align: center;
}

.form .section-wrap h2::after {
  margin: 1.5rem auto 1.8rem auto;
}

.form .section-wrap .txt {
  width: 60%;
  font-size: 0.833rem;
  margin: 0 auto 2rem auto;
}

.form .section-wrap .txt p {
  margin-bottom: 0.3rem;
}

.form .section-wrap form {
  max-width: 950px;
  width: 100%;
  padding: 2.5rem;
  margin: 0 auto;
  background-color: var(--color-bg-section);
}

.form .section-wrap form #form {
  padding: 0 2rem;
  background-color: #fff;
}

.form .section-wrap form #form dl {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px var(--color-border);
}

.form .section-wrap form #form dl:last-child {
  border-bottom: 0;
}

.form .section-wrap form #form dl dt {
  width: 40%;
  font-size: 0.833rem;
  vertical-align: middle;
}

.form .section-wrap form #form dl dt span {
  font-size: 0.833rem;
  color: var(--color-accent);
}

.form .section-wrap form #form dl dd {
  width: 70%;
  padding: 2rem 0;
  font-size: 0.833rem;
}

.form .section-wrap form #form dl dd input {
  width: 10rem;
  height: 1.5rem;
  padding: 0.2rem 0.3rem;
  font-size: 0.833rem;
  border: solid 1px var(--color-border);
}

.form .section-wrap form #form dl dd input[name="Mail"] {
  width: 15rem;
}

input[name="phoneNum"]::placeholder {
  color: var(--color-border);
}

input[name="reservation"]::-webkit-datetime-edit {
  color: var(--color-border);
}

.form .section-wrap form #form dl dd textarea {
  width: 100%;
  height: 10rem;
  padding: 0.2rem 0.3rem;
  border: solid 1px var(--color-border);
  resize: none;
}

.form .section-wrap form #form dl dd input[name="contactMethod"] {
  width: 0.8rem;
  font-size: 0.833rem;
  vertical-align: -0.4rem;
  margin-right: 0.4rem;
  margin-left: 1rem;
}

.form .section-wrap form #form dl dd input[name="contactMethod"].first {
  margin-left: 0;
}

.form .section-wrap form #form dl dd input[name="contactMethod"]:not(.first) {
  margin-left: 1rem;
}

.form .section-wrap form #submit {
  text-align: center;
}

.form .section-wrap form #submit button {
  width: 12rem;
  padding: 0.8rem 1rem;
  margin: 2rem 0 0 0;
  background: var(--color-main);
  color: #fff;
  transition: var(--transition-fast);
  letter-spacing: 1em;
  text-indent: 1em;  
}

.form .section-wrap form #submit button:hover {
  opacity: 0.8;
}

/* ────────────────────────────────────────
  フッター
──────────────────────────────────────── */
footer {
  background: var(--color-base);
}

footer .footer-wrap {
  max-width: 1100px;
  padding: 3rem 2rem;
  margin: 0 auto;
}

footer .footer-wrap img {
  width: 220px;
  margin-bottom: 2rem;
}

footer .footer-wrap .ft-nav {
  display: flex;
  justify-content: space-between;
  font-size: 0.833rem;
  gap: 2rem;
}

footer .footer-wrap .ft-nav h3 {
  font-family: var(--font-nav);
  font-size: 1rem;
  padding-bottom: 0.6rem;
  margin-bottom: 1.5rem;
  border-bottom: dotted 2px var(--color-main);
}

footer .footer-wrap .ft-nav .symbol {
  margin-right: 0.1rem;
  vertical-align: 0.08em;
}

footer .footer-wrap .ft-nav .left-col, .right-col, .center-col {
  flex: 1;
}

footer .footer-wrap .ft-nav .left-col p {
  margin-bottom: 1rem;
}

footer .footer-wrap .ft-nav .left-col .g-map {
  font-size: 0.694rem;
  color: var(--color-main);
  cursor: pointer;
}

footer .footer-wrap .ft-nav .left-col .g-map i {
  margin-left: 0.2rem;
}

footer .footer-wrap .ft-nav .left-col p:nth-child(3) {
  margin-bottom: 0.2rem;
}

footer .footer-wrap .ft-nav .left-col p:nth-child(5) {
  margin-bottom: 0.2rem;
}

footer .footer-wrap .ft-nav .left-col p:last-of-type {
  margin-bottom: 0;
}

footer .footer-wrap .ft-nav .center-col p:first-of-type {
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
  font-weight: bold;
}

footer .footer-wrap .ft-nav .center-col p span {
  font-size: 0.833rem;
  font-weight: normal;
  vertical-align: 0.10rem;
}

footer .footer-wrap .ft-nav .right-col .tel {
  margin-top: 0.8rem;
  font-size: 1.44rem;
  font-weight: bold;
  font-family: var(--font-serif);
}

footer .footer-wrap .ft-nav .right-col .tel span {
  font-size: 0.833rem;
}

footer .footer-wrap .ft-nav .right-col .ft-web-btn a {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.8rem 1rem;
  text-align: center;
  font-size: 0.833rem;
  color: #fff;
  background: var(--color-main);
  border: solid 1px var(--color-main);
  transition: var(--transition-fast);
}

footer .footer-wrap .ft-nav .right-col .ft-web-btn a i {
  font-size: 1rem;
  margin-right: 0.4rem;
}

footer .footer-wrap .ft-nav .right-col .ft-web-btn a:hover {
  color: var(--color-main);
  background: var(--color-base);
  border: solid 1px var(--color-main);
}

.copyright {
  font-size: 0.694rem;
  margin: 3rem auto 0 auto;
  text-align: center;
}

.page-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}

.page-top a {
  display:block;
  width: 3.5rem;
  height: 3.5rem;
  z-index: 999;
  color: #fff;
  background: var(--color-main);
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition-mid);
  transform: translateY(0);
  opacity: 0;
}

.page-top a i {
  font-size: 1.44rem;
  line-height: 3.3rem;
}
  
.page-top a:hover {
  transition: var(--transition-mid);
  transform: translateY(-10px);
} 

/* ================================================================
  SP レイアウト
================================================================ */
@media (max-width: 750px) {
/* ────────────────────────────────────────
  ヘッダー
──────────────────────────────────────── */
header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  height: auto;
  padding: 3.2rem 1.5rem 2rem 1.5rem;
  background: var(--color-base);
}

.logo {
  width: 100%;
}
    
.reserve {
  margin-top: 0.4rem;
}

.reserve .tel {
  font-size: 1.728rem;
  font-weight: 900;
  margin-bottom: 0.8rem;
  font-family: var(--font-serif);
  text-align: center;
}

.reserve .tel span {
  font-size: 1.2rem;
}

.reserve .hd-web-btn {
  font-size: 1.2rem;
  text-align: center;
  background: var(--color-main);
}

.reserve .hd-web-btn a {
  display: block;
  padding: 0.4rem;
  color: #fff;
  border: solid 1px var(--color-main);
  transition: var(--transition-fast);
}

.reserve .hd-web-btn a:hover {
  color: var(--color-main);
  background: var(--color-base);
  border:solid 1px var(--color-main);
}

.reserve .hd-web-btn a i {
  font-size: 1.2rem;
  margin-right: 10px;
  vertical-align: 0.01rem;
}  

/* ────────────────────────────────────────
  メインビジュアル　スライダー
──────────────────────────────────────── */
.slider {
  width: 100%;
  height: 65vh;
}

.slider img {
  width: 100%;
  height: 65vh;
  object-fit: cover;
}

.slider div:first-child img {
  object-position: 20% 30%;/* ←1番目の画像のみ表示の位置を調整 */
}

.slider div:nth-child(2) img {
  object-position: 43% 30%;/* ←2番目の画像のみ表示の位置を調整 */
}

.slider div:nth-child(3) img {
  object-position: 50% 60%;/* ←3番目の画像のみ表示の位置を調整 */
}

/* ────────────────────────────────────────
  メイン共通（max-width 950px で統一）
──────────────────────────────────────── */ 
.section-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

h2 {
  text-align: left;
  font-size: 1.728rem;
  font-family: var(--font-serif);
  font-weight: bold;
  letter-spacing: 0.10rem;
}

/* h2の装飾下線 */ 
h2::after {
  display: block;
  content: "";
  width: 3rem;/* ←線の長さ */
  height: 1px;/* ←太さ */
  background: var(--color-main);
  margin: 1rem 0 1.2rem 0;
}

/* ────────────────────────────────────────
  CONCEPT セクション
──────────────────────────────────────── */
.concept .section-wrap p {
  line-height: 1.9;
  font-size: 1rem;
}

/* ────────────────────────────────────────
  NEW DESIGNS セクション
──────────────────────────────────────── */
.new-designs {
  background: var(--color-bg-section);
}

/* NEW DESIGNSのみh2を中央揃えに */
.new-designs .section-wrap h2 {
  text-align: center;
}

/* NEW DESIGNSのみh2の装飾下線を中央揃えに */
.new-designs .section-wrap h2::after {
  margin: 1rem auto 1.2rem auto;
}

.new-designs figure {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  margin: 0 auto;
}

.new-designs figure a img {
  display: block;
  padding: 0.4rem;
  background: #fff;
  transition: var(--transition-mid);
}

.new-designs figure img:hover {
  opacity: 0.6;
}

/* 8月限定定額 ¥5,670〜 */
.new-designs .limited {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem auto;
  font-size: 1.2rem;
}

/* 8月限定 */
.new-designs .limited .month {
  padding: 0.1rem 0.3rem;
  color: var(--color-accent);
  font-size: 0.833rem;
  border: solid 1px var(--color-accent);
}

/* 定額コース */
.new-designs .limited .course {
  margin-right: -0.3rem;
}

/* 金額 */
.new-designs .limited .price {
  display: flex;
  gap: 0.1rem; /* ←ここで「¥」と数字の距離を微調整 */
  align-items: baseline;
}

/* ￥マーク */
.new-designs .limited .yen {
  font-size: 0.833rem;
}

.new-designs .view-more-btn a {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.8rem 3rem;
  color: var(--color-main);
  font-size: 1rem;
  border: solid 1px var(--color-main);
  transition: var(--transition-mid);
}

.new-designs .view-more-btn a i {
  font-size: 1rem;
  margin-right: 0.5rem;
}

.new-designs .view-more-btn a:hover {
  background: var(--color-main);
  color: #fff;
}

/* ────────────────────────────────────────
  STAFF セクション
──────────────────────────────────────── */
.staff .section-wrap {
  display: flex;
  flex-direction: column;
}

.staff .section-wrap .left-col {
  width: 100%;
  margin-bottom: 1.2rem;
}

.staff .section-wrap .left-col .nailist {
  margin-bottom: 0.7rem;
  font-weight: normal;
  font-size: 1.2rem;
}

.staff .section-wrap .left-col .nailist span {
  margin-left: 1rem;
  font-size: 0.833rem;
  vertical-align: 0.2rem;
  color: var(--color-muted);
}

.staff .section-wrap .left-col .coment {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-family: 'Lustria', serif;
  line-height: 1.8rem;
}

.staff .section-wrap .left-col .coment p {
  margin-bottom: 0.1rem;
}

.staff .section-wrap .left-col .profile {
  margin-bottom: 0.3rem;
}

.staff .section-wrap .left-col .profile i {
  font-size: 0.833rem;
  margin-right: 0.5rem;
}

.staff .section-wrap .left-col table tr td {
  font-size: 0.833rem;
  padding: 0;
}

.staff .section-wrap .left-col table tr td:first-child {
  min-width: 110px;
  vertical-align: top;
}

.staff .section-wrap .left-col table tr td:last-child {
  vertical-align: top;
}

.staff .section-wrap .right-col {
  width: 100%;
  height: 30vh;
  max-height: 30vh;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.staff .section-wrap .right-col img {
  display: block; 
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(-10%);
}

/* ────────────────────────────────────────
  NEWS セクション
──────────────────────────────────────── */
.news {
  background: var(--color-bg-section);
}

.news .section-wrap h2 {
  text-align: center;
}

.news .section-wrap h2::after {
  margin: 1rem auto 1.2rem auto;
}

.news i {
  margin-right: 0.5rem;
}
      
.news-list {
  width: 100%;
  font-size: 1rem;
}

.news-list li {
  display: flex;
  
  margin-bottom: 1rem;
}

.news-list li:last-child {
  margin-bottom: 0;/* ←余白の相殺 */
}

.news-list .date {
  display: block;
  width: 110px;
  line-height: 1.4;/* ←テキストの位置を更新内容と合わせる */
}

.news-list .content {
  flex: 1;/* ←右カラムだけ可変する */
}

.news-list .title {
  line-height: 1.4;/* ←テキストの位置を日付と合わせる */
}

.news-list .txt {
  margin: 0.3rem 0 0;
  font-size: 1rem;
}

/* ────────────────────────────────────────
  ACCESS セクション
──────────────────────────────────────── */
.access .section-wrap {
  display: flex;
  flex-direction: column;
}

.access .section-wrap .left-col {
  width: 100%;
}

.access .section-wrap .right-col {
  display: none;
  width: 100%;
  height: 30vh;
  max-height: 30vh;
  margin-top: 1.2rem;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.access .section-wrap .right-col img {
  display: block; 
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(-10%);
}

.access .section-wrap p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.access .section-wrap p .status {
  margin-right: 0.8rem;
  font-size: 0.833rem;
  color: var(--color-muted);
}

.access p .symbol {
  margin-right: 0.3rem;
  vertical-align: 0.08em;
}

.access p:nth-child(8) {
  margin-bottom: 0.1rem;
}

.access p:last-child {
  margin-bottom: 0;
}

/*
.access .phone {
  display: block;
  width: 4rem;
  height: 4rem;
  background: var(--color-main);
  border-radius: 50%;
}

.access .phone a {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 4rem;
  text-align: center;
}
*/

#map {
  width:100%;
  height:400px;
}

/* ────────────────────────────────────────
  MENU ページ
──────────────────────────────────────── */
.menu .section-wrap {
  max-width: 1100px;
}

.menu .section-wrap h2 {
  text-align: center;
}

.menu .section-wrap h2::after {
  margin: 1.5rem auto 1.8rem auto;
}

.menu .section-wrap .section-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
} 

.menu .section-wrap .section-inner .left-col {
  flex: 1;
}

.menu .section-wrap .section-inner .left-col .menu-table:first-child {
  margin-top: 0;
}

.menu .section-wrap .section-inner .right-col {
  flex: 1;
}

.menu .section-wrap .section-inner .right-col .menu-table:first-child {
  margin-top: 0;
}

.menu .section-wrap .section-inner .menu-table {
  margin-top: 2rem;
}

.menu .section-wrap .section-inner .menu-table h3 {
  padding-bottom: 0.5rem;
  font-size: 1.44rem;
  font-family: 'Lustria', serif;
  text-align: center;
  border-bottom: solid 2px var(--color-menu-border);
}

.menu .section-wrap .section-inner .menu-table table {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
}

.menu .section-wrap .section-inner .menu-table table tr th {
  padding: 1.5rem 0 0.5rem 0;
  font-size: 1rem;
  font-weight: normal;
  border-bottom: dotted 2px var(--color-menu-border);
}

.menu .section-wrap .section-inner .menu-table table tr td {
  padding: 1rem 0;
  font-size: 0.833rem;
  border-bottom: solid 1px var(--color-border);
}

.menu .section-wrap .section-inner .menu-table table tr td:last-child {
  text-align: right;
}

.menu .section-wrap .section-inner .menu-table table tr td .txt {
  font-size: 0.694rem;
}

.menu .section-wrap .section-inner .menu-table table tr td .txt .symbol {
  margin-right: 0.1rem;
  vertical-align: 0.08em;
  font-size: 0.694rem;
}

.menu .section-wrap .section-inner .menu-table table .group-title td {
  border-bottom: none;
  padding-bottom: 0.2rem;
}

.menu .section-wrap .section-inner .menu-table table .group-item td {
  border-bottom: none;
  padding: 0.2rem 0;
}

.menu .section-wrap .section-inner .menu-table table .group-last td {
  border-bottom: solid 1px rgb(228, 228, 228);
  padding: 0.2rem 0 1rem 0;
}

.menu .section-wrap .right-col .menu-table p {
  padding: 1rem 0 0 0;
  font-size: 0.833rem;
  text-align: right;
} 

.menu .section-wrap .right-col .menu-table p .symbol {
  font-size: 0.833rem;
  vertical-align: 0.05em;
  margin-right: 0.2rem;
} 

/* ────────────────────────────────────────
  GALLERY ページ
──────────────────────────────────────── */
.gallery .section-wrap {
  max-width: 1100px;
}

.gallery .section-wrap h2 {
  text-align: center;
}

.gallery .section-wrap h2::after {
  margin: 1.5rem auto 1.8rem auto;
}

.gallery .section-wrap h3 {
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.44rem;
  font-family: 'Lustria', serif;
  text-align: left;
  border-bottom: solid 2px var(--color-menu-border);
}
.gallery .section-wrap .foot-nail {
  margin-top: 2rem;
}

.nail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-section);
}

.nail-list img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: solid 0.8rem #fff;
  transition: var(--transition-fast);
}

.nail-list img:hover {
  opacity:0.6;
}

/* ────────────────────────────────────────
  FORM ページ
──────────────────────────────────────── */
.form .section-wrap h2 {
  text-align: center;
}

.form .section-wrap h2::after {
  margin: 1.5rem auto 1.8rem auto;
}

.form .section-wrap .txt {
  width: 100%;
  font-size: 1rem;
  margin: 0 auto 2rem auto;
}

.form .section-wrap .txt p {
  margin-bottom: 0.3rem;
}

.form .section-wrap form {
  max-width: 950px;
  width: 100%;
  padding: 1rem 1rem 1.5rem 1rem;
  margin: 0 auto;
  background-color: var(--color-bg-section);
}

.form .section-wrap form #form {
  padding: 0 1rem;
  background-color: #fff;
}

.form .section-wrap form #form dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: solid 1px var(--color-border);
}

.form .section-wrap form #form dl:last-child {
  border-bottom: 0;
}

.form .section-wrap form #form dl dt {
  width: 100%;
  font-size: 1rem;
  margin-top: 1.3rem;
}

.form .section-wrap form #form dl dt span {
  font-size: 0.833rem;
  vertical-align: 0.06rem;
  color: var(--color-accent);
}

.form .section-wrap form #form dl dd {
  width: 100%;
  padding: 0.4rem 0 1.5rem 0;
  font-size: 1rem;
}

.form .section-wrap form #form dl dd input {
  width: 10rem;
  height: 2rem;
  padding: 0.2rem 0.3rem;
  font-size: 1rem;
  border: solid 1px var(--color-border);
}

.form .section-wrap form #form dl dd input[name="Mail"] {
  width: 15rem;
}

input[name="phoneNum"]::placeholder {
  color: var(--color-border);
}

input[name="reservation"]::-webkit-datetime-edit {
  color: var(--color-main);
}

.form .section-wrap form #form dl dd textarea {
  width: 100%;
  height: 10rem;
  padding: 0.2rem 0.3rem;
  border: solid 1px var(--color-border);
  resize: none;
}

.form .section-wrap form #form dl dd input[name="contactMethod"] {
  width: 0.8rem;
  font-size: 1rem;
  vertical-align: -0.6rem;
  margin-right: 0.4rem;
  margin-left: 1rem;
}

.form .section-wrap form #form dl dd input[name="contactMethod"].first {
  margin-left: 0;
  
}

.form .section-wrap form #form dl dd input[name="contactMethod"]:not(.first) {
  margin-left: 1rem;
}

.form .section-wrap form #form dl .radio-dd {
  margin-top: -0.5rem;
}

.form .section-wrap form #submit {
  text-align: center;
}

.form .section-wrap form #submit button {
  width: 15rem;
  padding: 0.8rem 1rem;
  margin: 1.5rem 0 0 0;
  background: var(--color-main);
  color: #fff;
  font-size: 1.2rem;
  transition: var(--transition-fast);
  letter-spacing: 1em;
  text-indent: 1em;  
}

.form .section-wrap form #submit button:hover {
  opacity: 0.8;
}

/* ────────────────────────────────────────
  フッター
──────────────────────────────────────── */
footer {
  background: var(--color-base);
}

footer .footer-wrap {
  max-width: 1100px;
  padding: 2rem 1.5rem;
  margin: 0 auto;
}

footer .footer-wrap img {
  width: 100%;
  margin-bottom: 1.6rem;
}

footer .footer-wrap .ft-nav {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  font-size: 1rem;
  gap: 1.5rem;
}

footer .footer-wrap .ft-nav h3 {
  font-family: var(--font-nav);
  font-size: 1.2rem;
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
  border-bottom: dotted 2px var(--color-main);
}

footer .footer-wrap .ft-nav .symbol {
  margin-right: 0.3rem;
  vertical-align: 0.08em;
}

footer .footer-wrap .ft-nav .left-col, .right-col, .center-col {
  flex: 1;
}

footer .footer-wrap .ft-nav .left-col p {
  margin-bottom: 0.5rem;
}

footer .footer-wrap .ft-nav .left-col .g-map {
  font-size: 0.833rem;
  color: var(--color-main);
  cursor: pointer;
}

footer .footer-wrap .ft-nav .left-col .g-map i {
  margin-left: 0.4rem;
}

footer .footer-wrap .ft-nav .left-col p:nth-child(3) {
  margin-bottom: 0.2rem;
}

footer .footer-wrap .ft-nav .left-col p:nth-child(5) {
  margin-bottom: 0.2rem;
}

footer .footer-wrap .ft-nav .left-col p:last-of-type {
  margin-bottom: 0;
}

footer .footer-wrap .ft-nav .center-col p:first-of-type {
  margin-bottom: 0.2rem;
  font-size: 1.2rem;
  font-weight: bold;
}

footer .footer-wrap .ft-nav .center-col p span {
  font-size: 1rem;
  font-weight: normal;
  vertical-align: 0.10rem;
}

footer .footer-wrap .ft-nav .right-col .tel {
  margin-top: 0.5rem;
  font-size: 1.728rem;
  font-weight: bold;
  font-family: var(--font-serif);
}

footer .footer-wrap .ft-nav .right-col .tel span {
  font-size: 1.2rem;
}

footer .footer-wrap .ft-nav .right-col .ft-web-btn a {
  display: block;
  width: 100%;
  margin-top: 0.8rem;
  padding: 0.8rem;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  background: var(--color-main);
  border: solid 1px var(--color-main);
  transition: var(--transition-fast);
}

footer .footer-wrap .ft-nav .right-col .ft-web-btn a i {
  font-size: 1.2rem;
  margin-right: 0.4rem;
}

footer .footer-wrap .ft-nav .right-col .ft-web-btn a:hover {
  color: var(--color-main);
  background: var(--color-base);
  border: solid 1px var(--color-main);
}

.copyright {
  font-size: 0.833rem;
  margin: 3rem auto 0 auto;
  text-align: center;
}

.page-top {
  position: fixed;
  bottom: 1.5rem;
  right: 2rem;
  opacity: 0.8;
}

.page-top a {
  display:block;
  width: 3.5rem;
  height: 3.5rem;
  z-index: 999;
  color: #fff;
  background: var(--color-main);
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  transition: var(--transition-mid);
  transform: translateY(0);
  
}

.page-top a i {
  font-size: 1.44rem;
  line-height: 3.3rem;
}
  
.page-top a:hover {
  transition: var(--transition-mid);
  transform: translateY(-10px);
} 

}