@charset "UTF-8";

  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
}

  html:root {
    --text-S2: 0.8rem;
    --text-S: 0.9rem;
    --text-base: 16px;
    --text-L: 1.1rem;
    --text-L2: 1.2rem;
    --text-L3: 1.3rem;
    --font-main: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-accent: 'Nunito', serif;
    --color-white: #ffffff;
    --color-gray: #918989;
    --color-lightgray: #dbd3d3;
    --color-bggray:#f5f1f1;
    --color-dark: #3a2a2a;
    --color-mid: #7a5a5a;
    --color-light: #ae9090;
    --color-accent: #eb5858;
    --color-pale: #ffa69d;
    --color-pink: #e8889a;
  }

  html { 
    scroll-behavior: smooth;
    scroll-padding-top:120px;
  }

  body {
    font-family: var(--font-main);
    font-size: var(--text-base);
    color: var(--color-dark);
    background: linear-gradient(135deg, #faede8 0%, #ffcac4 50%, #ffd4dd 100%);
    background-attachment: fixed;
    min-height: 100vh;
    line-height: 1.6;
    letter-spacing: 0.02rem;
    overflow-x: hidden;
  }



img {
	max-width:100%;
	height: auto;
}


/* material-icons-round */
.material-icons-round{
display: inline-flex;
vertical-align:sub;
font-size: 1.2em;
}

/*font-size*/
  .sizeS2{font-size:  var(--text-S2);line-height: 1.5;}
  .sizeS{font-size:  var(--text-S);line-height: 1.5;}
  .sizeL{font-size:  var(--text-L);line-height: 1.5;}
  .sizeL2{font-size:  var(--text-L2);line-height: 1.4;}
  .sizeL3{font-size:  var(--text-L3);line-height: 1.3;}

/*font-color*/
  .cWhite{color:  var(--color-white);}
  .cLGray{color:  var(--color-lightgray);}
  .cGray{color:  var(--color-gray);}
  .cDark{color:  var(--color-dark);}
  .cMid{color:  var(--color-mid);}
  .cAccent{color:  var(--color-accent);}
  .cPale{color:  var(--color-pale);}
  .cPink{color:  var(--color-pink);}

/*text-align*/
.tCenter{text-align: center;}
.tRight{text-align: right;}

/* text-marker*/
.marker {
    background: linear-gradient(transparent 80%, var(--color-pale) 20%);
}
.marker-s {
    background: linear-gradient(transparent 90%, var(--color-pale) 10%);
}
.marker-light {
    background: linear-gradient(transparent 50%, #faff9b 50%);
}
.underR{
  color: var(--color-accent);
  text-decoration: underline;
}

/* padding */
.pdT5 {padding-top:5px;}
.pdT10 {padding-top:10px;}
.pdT15 {padding-top:15px;}
.pdT20 {padding-top:20px;}
.pdL10 {padding-left:10px;}
.pdL15 {padding-left:15px;}
.pdL20 {padding-left:20px;}
.pdR10 {padding-right:10px;}
.pdR15 {padding-right:15px;}
.pdR20 {padding-right:20px;}
.pdB5 {padding-bottom:5px;}
.pdB10 {padding-bottom:10px;}
.pdB15 {padding-bottom:15px;}
.pdB20 {padding-bottom:20px;}

/* margin */
.mgT5 {margin-top:5px;}
.mgT10 {margin-top:10px;}
.mgT15 {margin-top:15px;}
.mgT20 {margin-top:20px;}
.mgT30 {margin-top:30px;}
.mgT40 {margin-top:40px;}
.mgL10 {margin-left:10px;}
.mgL15 {margin-left:15px;}
.mgL20 {margin-left:20px;}
.mgR10 {margin-right:10px;}
.mgR15 {margin-right:15px;}
.mgR20 {margin-right:20px;}
.mgB5 {margin-bottom:5px;}
.mgB10 {margin-bottom:10px;}
.mgB15 {margin-bottom:15px;}
.mgB20 {margin-bottom:20px;}
.mgB30 {margin-bottom:30px;}
.mgB40 {margin-bottom:40px;}



  @keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(10px); }
  }

  /* ─── フェードイン ─── */
  .fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1);
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }



/* ─── セクション　共通 ─── */
  .section-box{
    padding: 20px 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
    width: calc(100% - 30px);
    background: var(--color-white);
    border-radius: 10px;
    scroll-margin-top: 100px;
}
  .section-box-nobg{  /*背景色なし*/
    padding: 20px 5px 50px;
    max-width: 1000px;
    margin: 0 auto 40px;
    width: calc(100% - 30px);
    border-radius: 10px;
}
.section-title-box{
  display:flex;
  align-items: center;
  gap:30px;
}
@media (max-width: 480px) {
  .section-title-box{
    display:flex;
    flex-direction: column;
    gap:5px;
    align-items: flex-start;
  }
}

  .section-title {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 1.591rem + 2.05vw, 3.125rem); /*32-50*/
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.08em;
    line-height: 1.2;
    background: linear-gradient(90deg, #ed776c 0%, #7a5a5a 20%, #7a5a5a 0%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: rgba(0,0,0,0);
}

  .section-title-ja {
    font-size: var(--text-base);
    letter-spacing: 0.1rem;
    color: var(--color-mid);
    padding: 8px 0 0 3px;
    font-weight: 500;
    line-height: 1.3;
}

/* セクションタイトルの下の区切り線 */
  .divider {
    width: 100%;
    height: 1px;
    margin: 10px 0 30px;
    background-image: linear-gradient(90deg, rgba(237, 119, 108, 1), rgba(255, 255, 255, 1) 20%, rgba(237, 119, 108, 1) 35%, rgba(122, 90, 90, 1));
  }
  
/* 通常の区切り線 */
  .hr-gray {
    width: 100%;
    height: 1px;
    margin: 30px 0;
    background: var(--color-lightgray);
  }
  .hr-mid {
    width: 100%;
    height: 1px;
    margin: 30px 0;
    background: var(--color-mid);
  }
  .hr-pale {
    width: 100%;
    height: 1px;
    margin: 30px 0;
    background: var(--color-pale);
  }


/* ─── box-callout コールアウト-アイコン付 ─── */
.box-callout-icon{
display: flex;
flex-direction: row;
gap:10px;
align-items: flex-start;
padding: 10px 15px;
border:solid 1px  var(--color-accent);
border-radius: 10px;
}
.box-callout-icon > div{
  padding-top: 2px;
}
.box-callout-icon .material-icons-round{
font-size: 2.2rem;
color:  var(--color-accent);
}

/* ─── box-callout 一行コールアウト ─── */
.box-callout{
display: flex;
flex-direction: row;
gap:10px;
align-items: center;
padding: 10px 15px;
border:solid 1px  var(--color-accent);
border-radius: 10px;
}
.box-callout .material-icons-round{
font-size: 2rem;
color:  var(--color-accent);
}


/*左にボーダーライン*/
.borderL-mid{
  padding-left: 10px;
  margin-left: 10px;
  border-left: solid 1px rgba(200,150,140,0.8);
}
.borderL-pale{
  padding-left: 10px;
  margin-left: 10px;
  border-left: solid 1px var(--color-pale);
}

/*注意文*/
.note{
  font-size: var(--text-S);
}

/* ─── リスト ─── */

/*通常のリスト*/
.list-nomal{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px 0;
    line-height: 1.5;
}
.list-nomal li{
    position: relative;
    padding-left: 1em;
}
.list-nomal li::before {
    content: '・';
    position: absolute;
    left: 0;
}
.list-nomal li:has(.sizeL)::before{
  padding-top: 0.2em;
}
.list-nomal li:has(.sizeL2)::before{
  padding-top: 0.4em;
}

/*注意事項リスト*/
.list-notes{
    display: flex;
    flex-direction: column;
    gap:5px;
    border:none;
    padding: 5px 0;
    line-height: 1.5;
    font-size: var(--text-S);
}
.list-notes li{
    position: relative;
    padding-left: 1em;
}
.list-notes li::before{
    content: '※';
    position: absolute;
    left: 0;
}

/*定義リスト*/
.list-dl{
    display: flex;
    flex-direction: column;
    gap:5px;
    border:none;
    padding: 5px 0;
    line-height: 1.5;
}
.list-dl dt{
  font-weight: 600;
}
.list-dl dd{
  padding-left: 1em;
}

/*定義リスト（dtにアイコン付き）*/
.list-dl-icon{
    display: flex;
    flex-direction: column;
    gap:5px;
    border:none;
    padding: 5px 0;
    line-height: 1.5;
}
.list-dl-icon .material-icons-round{
  display: inline-flex;
  align-items: flex-start;
  padding: 5px 5px 0 0;
}

.list-dl-icon dt{
  font-weight: 600;
}
.list-dl-icon dd{
  padding-left: calc(1em + 7px);
}

/*横並びリスト*/
.list-row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 5px 0;
}
.list-row li{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px 5px;
}
.list-row li::after{
  content: '';
  width: 1px;
  height: 1em;
  background: rgba(200,150,140,0.75);
  margin-left: 5px;
}
.list-row li:last-child::after{
  content: '';
  width: 0;
}



/* ─── 見出し ─── */

/*通常の見出し*/
.heading-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--text-L2);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-mid);
}
.heading-sub::before {
  content: '';
  width: 12px;
  height: 1em;
  background: var(--color-pale);
  flex-shrink: 0;
  margin-top: 2px;
}
.heading-sub::after {
  content: '';
  display: block;
  height: 1px;
  flex: 1;
  background: var(--color-lightgray);
}

/*アイコン入り*/
.heading-sub-icon {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  font-size: var(--text-L);
  font-weight: 600;
  line-height: 1.4;
}
.heading-sub-icon .material-icons-round {
padding-top: 0.15em;
}

/*左にボーダーライン*/
.heading-sub2 {
  font-size: var(--text-base);
  font-weight: 600;
  padding-left: 8px;
  margin-left: 5px;
  line-height: 1.4;
  border-left:solid 4px rgba(200,150,140,0.75);
}

/*タグ風*/
.heading-tag {
  position: relative;
  display: inline-block;
  padding: 10px 10px 10px 24px;
  border-radius: 4px;
  background-color: var(--color-mid);
  color: var(--color-white);
}
.heading-tag::before {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 4px;
  height: 70%;
  border-radius: 4px;
  background-color: var(--color-pale);
}
/*タグ風2*/
.heading-tag2 {
  position: relative;
  display: inline-block;
  padding: 2px 10px 2px 24px;
  border-radius: 4px;
  background-color: var(--color-mid);
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: 500;
}
.heading-tag2::before {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 4px;
  height: 70%;
  border-radius: 4px;
  background-color: var(--color-pale);
}


/* ───────── 

  LINK

───────── */


/* ─── テキストリンク ─── */

a.tlink{
    padding: 0;
    margin: 0 3px 0 0;
    color: #f8608c;
    background: #ffebef;
    text-decoration: underline;
    border-image: linear-gradient(to right, transparent 0%, transparent 1.2em, var(--color-pale) 1.2em, var(--color-pale) 100%) 1;
    line-height: 1.5;
    transition: transform 0.3s ease;
}
a.tlink:hover {
  transform: translateY(2px);
  color: var(--color-pale);
  }

a.tlink::before{
  content:'';
  font-family: "Material Icons";
  display: inline-block;
  padding: 0 3px 0 0;
  vertical-align: sub;
  font-size: 1.1em;
}

/* 矢印 */
a.arrow::before{
  content:'\e315';
}
/* ジャンプ */
a.jump::before{
  content:'\e89e';
}


/* ─── ボタン ─── */

  .btn-pale a  {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #f0a0a8, #e8889a);
    color: var(--color-white);
    text-decoration: none;
    padding: 14px 40px 14px 35px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.3;
    box-shadow: 0 6px 14px rgba(220,130,150,0.45);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease;
  }
  .btn-pale a:hover {
  transform: translateY(2px);
    background: var(--color-pale);
  }

  .btn-white a  {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #f7f0f0, #ebdddd);
    color: var(--color-mid);
    text-decoration: none;
    padding: 14px 40px 14px 35px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.3;
    box-shadow: 0 6px 14px rgba(220,130,150,0.45);
    opacity: 1;
    visibility: visible;
    transition: transform 0.3s ease;
    border:solid 1px rgba(255,255,255,0.45);
  }
  .btn-white a:hover {
  transform: translateY(2px);
    background: #f7f0f0;
    color: var(--color-accent);
  }





/* ───────── 

  TABLE

───────── */


/* ─── 料金表 ─── */

.table-price{
font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

@media (max-width: 767px) {  /*SP*/
  .table-price {
		width: 100%;
		display: flex;
	}
	.table-price thead {
		display: block;
    width: 30%;
	}
	.table-price thead tr{
		display: inline-block;
    width: 100%;
  }
  .table-price tbody {
		display: block;
    width: 70%;
	}
	.table-price th {
    position: relative;
		display: flex;
    justify-content: center;
    align-items: center;
		width: auto;
    height:3em;
		border-width: 1px 0px 0px 1px;
		border-color: var(--color-lightgray);
		border-style: solid;
    color: var(--color-mid);
    font-weight: 500;
	}
	.table-price th {
		display: flex;
    justify-content: center;
    align-items: center;
		width: auto;
    height:3em;
		border-width: 1px 0px 0px 1px;
		border-color: var(--color-lightgray);
		border-style: solid;
    color: var(--color-mid);
    font-weight: 500;
    background: #f5f1f1;
	}
	.table-price th:last-child {
		border-bottom: 1px solid var(--color-lightgray);
	}
	.table-price tbody tr {
		display: inline-block;
		margin: 0;
    width: 100%;
	}
	.table-price td {
		display: flex;
    justify-content: center;
    align-items: center;
    height:3em;
		border-width: 1px 1px 0px 1px;
		border-color: var(--color-lightgray);
		border-style: solid;
    background: var(--color-white);
	}
	.table-price td:last-child {
		border-bottom: 1px solid var(--color-lightgray);
	}
  .extax{
    display: inline-block;
    padding-left: 1em;
    font-size:var(--text-S2);
    color: var(--color-gray);
  }
}

@media (min-width: 768px) {  /*PC*/
  .table-price {
		width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
}

  .table-price th {
  position: relative;
    padding: 10px;
    border: 1px solid var(--color-lightgray);
    text-align: center;
    background-clip: padding-box;
    color: var(--color-mid);
    font-weight: 500;
    background: #f5f1f1;
  }
  .table-price td {
    vertical-align: top;
    padding: 10px 5px;
    border: 1px solid var(--color-lightgray);
    text-align: center;
    background: var(--color-white);
  }
  .extax{
    display: block;
    padding-left: 0;
    font-size:var(--text-S2);
    color: var(--color-gray);
  }
}


/* ─── スケジュール ─── */

.tableSchedule{
font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}

@media (max-width: 767px) {  /*SP*/
.tableSchedule{
margin:0 auto 10px auto;
width: 100%;
display:block;
border-top:solid 1px var(--color-lightgray);
border-left:solid 1px var(--color-lightgray);
border-right:solid 1px var(--color-lightgray);
}
.table-week{
display:flex;
flex-wrap:wrap;
justify-content: center;
}
.table-week dt{
width:50%;
background: #f5f1f1;
padding: 10px;
text-align: center;
font-weight: 500;
border-right:solid 1px var(--color-lightgray);
border-bottom:solid 1px var(--color-lightgray);
color: var(--color-mid);
}
.table-week dd{
width:50%;
background: var(--color-white);
padding: 10px;
text-align: center;
border-bottom:solid 1px var(--color-lightgray);
}
.table-week .daySat{
background-color: #d8eaf9;
color:#70ade3;
}
.table-week .daySun,
.table-week .holiday{
background-color: #ffe3e8;
color:#e97f9a;
}

}

@media (min-width: 768px) {  /*PC*/
.tableSchedule{
width: 100%;
margin:0 auto;
padding:0;
}
.table-week{
display:flex;
flex-wrap:wrap;
justify-content: center;
}
.table-week:first-child dt{
border-top:solid 1px var(--color-lightgray);
}
.table-week .dayMon,
.table-week .timeMon{
border-left:solid 1px var(--color-lightgray);
}

.table-week dt{
width: calc(100% / 7);
background: #f5f1f1;
padding: 10px 0;
text-align: center;
font-weight: 500;
border-right:solid 1px var(--color-lightgray);
border-bottom:solid 1px var(--color-lightgray);
color: var(--color-mid);
}
.table-week dd{
width: calc(100% / 7);
background: var(--color-white);
padding: 10px 0;
text-align: center;
border-right:solid 1px var(--color-lightgray);
border-bottom:solid 1px var(--color-lightgray);
}
.table-week .daySat{
background-color: #d8eaf9;
color:#4f93cf;
}
.table-week .daySun,
.table-week .holiday{
background-color: #ffe3e8;
color:#f06488;
}
.table-week .dayMon{order:1;}
.table-week .dayTue{order:2;}
.table-week .dayWed{order:3;}
.table-week .dayThu{order:4;}
.table-week .dayFri{order:5;}
.table-week .daySat{order:6;}
.table-week .daySun{order:7;}

.table-week .timeMon{order:8;}
.table-week .timeTue{order:9;}
.table-week .timeWed{order:10;}
.table-week .timeThu{order:11;}
.table-week .timeFri{order:12;}
.table-week .timeSat{order:13;}
.table-week .timeSun{order:14;}

}


/* ─── dl（枠付き） ─── */

  .table-listframe {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: var(--text-S);
  }

  .table-listframe div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:6px;
    background: var(--color-white);
    border: solid 1px var(--color-lightgray);
    border-radius: 5px;
    padding: 3px 7px;
    width: 100%;
}
  .table-listframe dt {
  font-weight: 600;
  color: var(--color-mid);
  line-height: 1.4;
  }
  .table-listframe dd {
  border-left:solid 1px var(--color-lightgray);
  padding: 0 0 0 15px;
  line-height: 1.5;
  max-width: 10em;
  }
  .table-listframe dd > span {
  padding-right: 10px;
  }
  
/*オプション可否*/
/*OK*/
.table-listframe div:has(dd.ok) {
border:solid 1px var(--color-accent);
background: #ffeded;
}
.table-listframe dd.ok > span {
font-weight: 600;
color: var(--color-accent);
}
/*NG*/
.table-listframe div:has(dd.ng) {
  border:none;
  background: #e7e2e2;
}
.table-listframe div:has(dd.ng) dt,
.table-listframe dd.ng > span{
  font-weight: 400;
  color: var(--color-gray);
}

/*注意事項*/
.table-listframe dd span.notes {
  display: inline-block;
  padding-right: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--color-dark);
}

@media (min-width: 481px) {
  .table-listframe div {
    width: calc((100% - 10px) / 2);
  }
}





#wrap{
background:url(../images/bg_wave.png) no-repeat 50% top;
background-size:100%;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
  .spno{display:none;}
}
@media (min-width: 481px) {
  .pcno{display:none;}
}









/* ───────── 

  HEADER

───────── */

  #header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 24px 50px;
    position: relative;
  }

  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 560px;
  }
  .header-label {
    font-family: var(--font-serif);
    font-size: var(--text-L);
    letter-spacing: 0.25rem;
    color: var(--color-white);
    font-weight: 700;
    text-shadow: 0px 0px 14px var(--color-accent), 0px 0px 8px var(--color-accent), 0px 0px 8px var(--color-accent);
    line-height: 1.5;
  }

  .logo-placeholder {
    filter: drop-shadow(0px 0px 5px rgba(237,119,108,0.8)) drop-shadow(0px 0px 13px rgba(237,119,108,0.8));
    width:84%;
}
  .logo-placeholder img{
    width:100%;
    max-width:350px;
  }
  .logo-placeholder a {
    text-decoration: none;
}

  .tagline {
    font-family: var(--font-serif);
    font-size: var(--text-L);
    letter-spacing: 0.2rem;
    color: var(--color-white);
    font-weight: 700;
    text-shadow: 0px 0px 14px var(--color-accent), 0px 0px 8px var(--color-accent), 0px 0px 8px var(--color-accent);
    line-height: 1.5;
  }

.header-info{
    display: flex;
    flex-direction: column;
    gap:5px;
    margin: 10px 0;
    font-family: var(--font-serif);
    font-size: var(--text-L);
    color: var(--color-accent);
    text-shadow: 0px 0px 14px var(--color-white), 0px 0px 8px var(--color-white), 0px 0px 8px var(--color-white), 0px 0px 8px var(--color-white);
    line-height: 1;
}
.header-info .phone{
  font-size: 2.2rem;
  font-weight:700;
  letter-spacing: 0.2rem;
}
.header-info .phone .material-icons-round{
  padding-right: 5px;
}
.header-info .time{
  font-weight:500;
}

@media (min-width: 481px) {
  #header {
    padding: 50px 0;
  }
}



/* ───────── 

  HAMBURGER BUTTON

───────── */

  .nav-toggle {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1000;
    width: 58px;
    height: 58px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-mid);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background 0.3s;
  }
  .nav-toggle:hover { background: rgba(255,255,255,0.85); }

  .nav-toggle-label {
    font-style: normal;
    font-size: 0.7rem;
    color: #8a5a5a;
    font-family: var(--font-main);
    font-weight: 500;
    margin-top: 0;
    transition: opacity 0.3s;
    line-height: 1;
  }

  .nav-toggle.open .nav-toggle-label {
    opacity: 1;
  }
  .nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: #8a5a5a;
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(.22,.61,.36,1), opacity 0.3s;
    transform-origin: center;
  }
  /* open時：その場で×回転 */
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


@media (min-width: 481px) {
    .nav-toggle {
      width: 80px !important;
      height: 80px !important;
    }

}


/* ───────── 

  MENU OVERLAY

───────── */

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    pointer-events: none;
    overflow: hidden;
  }
  .nav-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(250,237,232,0.92);
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(.22,.61,.36,1);
  }
  .nav-overlay.open { pointer-events: auto; }
  .nav-overlay.open::before { opacity: 1; }

  .nav-menu {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 110px 0 40px;
    margin: 0;
    overflow-y: auto;
  }

  /* メインメニュー項目 */
  .nav-menu > li {
    list-style: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(.22,.61,.36,1), transform 0.5s cubic-bezier(.22,.61,.36,1);
    width: 100%;
    max-width: 320px;
  }

  .nav-overlay.open .nav-menu > li { opacity:1; transform:translateY(0); transition-delay:0.06s; }

  /* メインリンク */
  .nav-menu > li > span,
  .nav-menu > li > span a {
    display: inline-block;
    padding: 8px 0 0 0;
    color: #7a4a4a;
    text-decoration: none;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: var(--text-L3);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.2;
    transition: color 0.2s;
  }
  .nav-menu > li > span a:hover { color: var(--color-accent); }

  /* 仕切り線 */
  .nav-menu > li:not(:last-child) {
    border-bottom: 1px solid rgba(192,144,144,0.2);
    padding-bottom: 6px;
    margin-bottom: 6px;
  }

  /* サブメニュー */
  .nav-submenu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0 4px;
    padding: 2px 0 8px;
    margin: 0;
  }

  .nav-submenu li a {
    display: inline-block;
    text-decoration: none;
    font-size: var(--text-base);
    color: var(--mid);
    font-weight: 300;
    padding: 3px 10px;
    transition: color 0.2s;
    position: relative;
  }
  .nav-submenu li a:hover { color: var(--color-accent); }
  .nav-submenu li:not(:last-child) a::after {
    content: '/';
    position: absolute;
    right: -4px;
    color: rgba(192,144,144,0.4);
    font-size: 1rem;
  }





/* ───────── 

  FOOTER

───────── */

footer {
  text-align: center;
  padding: 28px 16px;
  margin-top: 50px;
  font-size: var(--text-S2);
  color: var(--color-white);
  opacity: 0.8;
  background-color: var(--color-mid);
}
footer .spno{
width: 1em;
}
.footer-infolist{
  padding: 10px 0;
}
footer .txt-notes{
  padding: 10px 0;
  font-size: var(--text-S3);
  line-height: 1.2;
  color: var(--color-lightgray);
  letter-spacing: 1;
}


/* ───────── 

  TEL BANNER

───────── */

  .tel-banner,
  .home-banner{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f9b4ad 0%, #ffa69d 50%, #f9b4ad 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.85);
    border-top: 0;
    border-left: 0;
    border-radius: 0 0 10px 0;
    padding: 15px 20px 15px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    line-height: 1;
  }
  
  /*SP 電話リンク*/
  .tel-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .tel-banner .tel-info{
    display: flex;
    flex-direction: column;
    gap:5px;
  }
  .tel-banner .material-icons-round{
    display: inline-block;
    background: var(--color-white);
    font-size: var(--text-L2);
    color: var(--color-mid);
    border-radius: 100%;
    padding: 8px;
  }
  .tel-banner .tel-logo img{
    width:104px;
  }

  .tel-banner .tel-text {
    font-size: var(--text-S);
    font-weight: 400;
    color: var(--color-mid);
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  /*PC ホームリンク*/
  .home-banner{
    align-items: flex-start;
  }
  .home-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .home-banner .home-info{
    display: flex;
    flex-direction: column;
    gap:5px;
  }
  .home-banner > .material-icons-round{
    display: inline-block;
    background: var(--color-white);
    font-size: var(--text-L2);
    color: var(--color-mid);
    border-radius: 100%;
    padding: 8px;
    margin-top: 2px;
  }
  .home-banner .home-logo img{
    width:160px;
  }

  .home-banner .home-phone {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-mid);
    letter-spacing: 0.08em;
    white-space: nowrap;
    font-family: var(--font-serif);
  }
  .home-banner .home-text {
    font-size: var(--text-S2);
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--color-mid);
    white-space: nowrap;
  }






/* ───────── 

  BACK TO TOP

───────── */

  .back-to-top {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 800;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--color-pale);
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background 0.2s;
    text-decoration: none;
  }

  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }


  .back-to-top svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .back-to-top span {
    font-size: 0.7rem;
    font-family: var(--font-main);
    font-weight: 500;
    letter-spacing: 0.15em;
    padding-left: 0.15em;
    color: var(--color-white);
    line-height: 1;
  }

  @media (min-width: 769px) {
    .back-to-top {
      width: 80px;
      height: 80px;
      bottom: 28px;
    }
    .back-to-top svg { width: 18px; height: 18px; }
    .back-to-top span { font-size: var(--text-S); }
  .back-to-top:hover {
    background: var(--color-accent);
  }
  }




/* ───────── 

  ERROR

───────── */
