/* reset CSS */
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, address, em, strong, img, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, dd {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}
figure {
  margin: 0;
}
html {
    margin-top: 0
}
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
#wpadminbar {
    display: none !important;
}
/* リンクのリセット */
a {
  text-decoration: none; /* 下線を削除 */
  color: inherit; /* 親要素のテキストカラーを継承 */
  background: transparent; /* 背景を透明に */
  outline: none; /* フォーカス時の枠線を削除 */
}

/* フォーカスやホバー時のデフォルト装飾をなくす */
a:focus,
a:hover,
a:active {
  text-decoration: none;
  color: inherit;
  outline: none;
}

/* ボタンやナビゲーション用のリセット */
button,
a.button,
.nav a {
  display: inline-block;
  cursor: pointer;
}

/* 画像リンクのリセット */
a img {
  border: none;
  vertical-align: middle;
}


/* -------------------レスポンシブ------------------- */
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/* -------------------パンくず------------------- */
.breadcrumb {
  font-size: 0.9rem;
    margin: 45px auto;
    padding: 0 15px;
    color: #666;
    width: 90%;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: ">";
  color: #999;
  margin: 0 8px;
}

.breadcrumb a {
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
	text-decoration: underline;
}
.breadcrumb li:last-child {
	color: #C0A146;
}
.breadcrumb li:last-child span {
	color: #C0A146;
}

.breadcrumb li:last-child a {
	color: #d4af37;
	pointer-events: none;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
	.breadcrumb{
		margin:20px 0;
	}
	
  .breadcrumb ol {
    font-size: 12px;
  }
}
/* ================　固定CV　============== */
.fixed-cv {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cv-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 5px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 225px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    background-color: #C0A146;
    border: 1px solid #D9C690;
    color: #ffffff;
}

.cv-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background-color: #453919;
    border-color: #A68A3A;
    color: #fff;
}

.cv-btn.web {
    background-color: #8A7433;
}

.cv-btn.web:hover {
    background-color: #453919;
    border-color: #A68A3A;
    color: #fff;
}

.cv-btn.consult {
    display: none; /* PCでは非表示 */
    background-color: #6E5B28;
}

.cv-btn.consult:hover {
    background-color: #453919;
    border-color: #A68A3A;
    color: #fff;
}

/* アイコンとテキスト */
.cv-icon {
    font-size: 18px;
    margin-right: 30px;
    width: 20px;
    text-align: center;
    color: #ffffff;
}

.cv-text {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.15em;
    font-family: "Times New Roman", "Yu Mincho", serif;
    color: #ffffff;
}

.cv-text small {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
}

/* --- スマホ表示 --- */
@media screen and (max-width: 767px) {
    .fixed-cv {
        right: 0;
        bottom: 0;
        left: 0;
        flex-direction: row;
        gap: 0;
    }

    .cv-btn {
        flex: 1;
        width: 33.3333%;
        min-height: 68px;
        border-radius: 0;
        padding: 8px 6px;
        box-shadow: none;
        border: none;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        justify-content: center;
        flex-direction: column;
    }

    .cv-btn:last-child {
        border-right: none;
    }

    .cv-btn.web {
        background-color: #8A7433;
    }

    .cv-btn.consult {
        display: flex;
        background-color: #6E5B28;
    }

    .cv-icon {
        font-size: 22px;
        margin-right: 0;
        margin-bottom: 4px;
        width: auto;
    }

    .cv-text {
        font-size: 18px;
        letter-spacing: 0.03em;
        text-align: center;
        line-height: 1.4;
    }

    .cv-text small {
        display: block;
        font-size: 9px;
        letter-spacing: 0.02em;
        line-height: 1.3;
    }

    /* 電話予約も他ボタンと同じ余白にする */
    .cv-btn.tel {
        padding: 8px 6px;
    }

    .cv-btn.tel .cv-icon {
        font-size: 22px;
        margin-bottom: 4px;
    }

    /* 電話予約だけsmallがない分の高さを擬似要素で確保 */
    .cv-btn.tel .cv-text::after {
        content: "（ダミー）";
        display: block;
        font-size: 9px;
        line-height: 1.3;
        visibility: hidden;
    }
	.cv-btn.tel .cv-text {
    position: relative;
    top: 6px;
}
}