html {
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}


body {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

body {
  opacity: 1;
  transition: opacity 0.45s ease;
}

body.page-leave {
  opacity: 0;
}
a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}


/* =========================
   Header
========================= */
.site-header {
  position: relative;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #ececec;
}

/* PCだけ：上スクロールで表示／下スクロールで隠れる追尾ヘッダー
   stickyではなくfixed＋JSで高さ調整にして、各ページでも安定させる */
@media (min-width: 769px) {
  body.has-pc-follow-header {
    padding-top: var(--pc-site-header-height, 0px);
  }

  body.has-pc-follow-header .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
    transform: translate3d(0, 0, 0);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    will-change: transform;
  }

  body.has-pc-follow-header .site-header.is-pc-hidden {
    transform: translate3d(0, -100%, 0);
    box-shadow: none;
  }

  body.has-pc-follow-header .site-header.is-pc-shown {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  }
}

.header-inner {
  max-width: 90%;
  margin: 0 auto;
  padding: 18px 24px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.js-pop-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-pop-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.site-logo a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-main {
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #5a4a42;
  white-space: nowrap;
}

.logo-main img{
  width:100%;
  min-width: 500px;
  height:auto;
}

.logo-sub {
  font-size: 10px;
  color: #5a4a42;
  white-space: nowrap;
}

.sebun{
   position: relative;
   display:block;
   margin-bottom: -10px;
}
.sebun-sp{
   position: relative;
   display:none;
}
.sebun6{
    top:20%;
    left:50%;
    transform: translate(-50%, -50%);
   position: absolute;
   width:40%;
}
.sp-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 480px);
  height: 100vh;
  background: #4a556e;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1200;
  overflow-y: auto;
}

.sp-drawer-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

.sp-drawer-close span {
  position: absolute;
  width: 28px;
  height: 2px;
  background: #ffffff;
}

.sp-drawer-close span:first-child {
  transform: rotate(45deg);
}

.sp-drawer-close span:last-child {
  transform: rotate(-45deg);
}

.f-haikei{
      height: 0;
    /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
    padding-top: 29.580401355%;
    background: url('../img/f-haikie.png') 0 0 no-repeat;
    background-size: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-btn {
  min-width: 104px;
  height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.btn-map,
.btn-outline {
  background: #8a7151;
}

.btn-request {
  background: #6c1631;
}


.btn-map:hover,
.btn-outline:hover {
  background: #3f301d;
}

.btn-request:hover {
  background: #27020e;
}

/* =========================
   PC Nav
========================= */
.global-nav {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 24px 18px;
}

.global-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-nav li {
  position: relative;
  padding: 0 18px;
  min-width: 9%;
  text-align: center;
}

.global-nav li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 20px;
  background: #d6d6d6;
  transform: translateY(-50%);
}

.global-nav li a:hover{
  color: #000;
  font-weight: 700;
}


.global-nav a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #494949;
  padding: 10px 0 8px;
  white-space: nowrap;
}

.global-nav a:hover {
  border-bottom: solid 1px #ccc;
}

.global-nav span {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: #dfdfdf;
  padding: 10px 0 8px;
  white-space: nowrap;
}

.global-nav a.is-current {
  color: #333;
}

.global-nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #3f536d;
}

/* =========================
   Mobile Header
========================= */
.sp-header {
  display: none;
  height: 74px;
  border-bottom: 3px solid #8a7151;
  background: #fff;
}

.sp-action,
.sp-menu-btn,
.sp-request-btn {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-action,
.sp-menu-btn {
  width: 25%;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid #d7d7d7;
  color: #2f2f2f;
}

.sp-request-btn {
  width: 25%;
  background: #8a7151;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.sp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.sp-icon svg {
  width: 24px;
  height: 24px;
  fill: #4b4b4b;
}

.sp-label {
  font-size: 12px;
  letter-spacing: 0.02em;
}

.sp-icon-menu {
  flex-direction: column;
  gap: 5px;
}

.sp-icon-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: #5e554f;
}


/* =========================
   Drawer
========================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  z-index: 1100;
}

.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.sp-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 480px);
  height: 100vh;
  background: #4a556e;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1200;
  overflow-y: auto;
}

.sp-drawer.is-open {
  transform: translateX(0);
}

.sp-drawer-inner {
  padding: 90px 52px 40px;
}

.sp-drawer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.sp-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.4;
}
.gurei {
  color: #b3b3b3 !important;
}
.sp-drawer-nav a::before {
  content: "";
  width: rgb(194, 194, 194);
  height: 2px;
  background: #bfc5d1;
  flex: 0 0 36px;
}

.sp-drawer-nav a.is-current {
  color: #ffffff;
}

.sp-drawer-nav a.is-current::before {
  background: #ffffff;
}

.sp-drawer-map {
  margin-top: 30px;
}

.sp-drawer-map a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  background: #e8e8e5;
  color: #334257;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
}



.roon2{
 margin:50px auto 50px auto;
 max-width: 880px;
}

.roon{
 margin:50px auto 50px auto;
 max-width: 580px;
}

.jyuunan10{
  width:100%;
  height:1vw;
}
.jyuunan20{
  width:100%;
  height:2vw;
}
.jyuunan30{
  width:100%;
  height:3vw;
}

/* =========================
   Utility
========================= */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}
.pc99 {
  display: block !important;
}

.sp99 {
  display: none !important;
}

.site-footer {
  background: #b8ada1;
  color: #ffffff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px 56px;
}

.footer-topline {
  position: relative;
  min-height: 50px;
}

.footer-note {
  position: absolute;
  top: -12px;
  right: 0;
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
  color: #ffffff;
  white-space: nowrap;
}

.footer-nav ul {
    font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-nav li {
  position: relative;
  padding: 0 28px;
  margin:50px 0;
}

.footer-nav li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-50%);
}

.footer-nav a {
  position: relative;
  display: inline-block;
  padding: 12px 0 18px;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
  opacity: 0.72;
}

.footer-nav span {
  position: relative;
  display: inline-block;
  padding: 12px 0 18px;
  font-size: 12px;
  line-height: 1;
  color: #ffffff;
  opacity: 0.72;
}

.footer-nav a.is-current {
  opacity: 1;
}

.footer-nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
}

.footer-contact {
  padding-top: 18px;
}

.footer-contact-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.footer-lead {
  flex: 0 0 auto;
}

.footer-lead p {
  margin: 0;
}

.footer-lead-pc {
  display: block;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

.footer-lead-sp {
  display: none;
}

.footer-phone-area {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-phone-main {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.footer-phone-icon {
  width: 60px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
}


.footer-phone-icon img {
    max-width: 85px;
    max-height: 60px;
    display: block;
}
.footer-phone-number {
  display: inline-block;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.footer-hours {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: 12px;
  line-height: 1.75;
  font-weight: 700;
  white-space: nowrap;
}

.footer-hours span {
font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  display: block;
  font-size: 10px;
  font-weight: 700;
}

.footer-brand {
  margin-top: 32px;
  text-align: center;
}

.footer-brand img {
  width: min(100%, 430px);
  height: auto;
  display: inline-block;
}

.fbotano{
  max-width: 100%;
  margin:0 15px;
  display:none;
}
@media (hover: hover) and (pointer: fine) {
  .tel-link {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}

/* =========================
   タブレット
========================= */
@media (max-width: 1024px) {
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-nav li {
    padding: 0 16px;
  }

  .footer-nav a {
    font-size: 11px;
  }

  .footer-phone-number {
    font-size: 58px;
  }

  .footer-hours {
    font-size: 11px;
  }

  .footer-hours span {
    font-size: 9px;
  }
}

/* =========================
   スマホ
========================= */
@media (max-width: 768px) {

.fbotano{
  max-width: 100%;
  margin:0 15px;
  display:block;
}

.f-haikei{
      height: 0;
    /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
    padding-top: 0%;
    background: url('../img/f-haikie.png') 0 0 no-repeat;
    background-size: contain;
}
.pc99 {
  display: none !important;
}

.sp99 {
  display: block !important;
}
  .site-footer {
    padding-top: 0;
  }

  .footer-inner {
    padding: 28px 18px 42px;
  }

  .footer-topline {
    display: none;
  }

  .footer-contact {
    padding-top: 0;
  }

  .footer-contact-row {
    display: block;
    text-align: center;
  }

  .footer-lead-pc {
    display: none;
  }

  .footer-lead-sp {
    display: block;
    font-size: 12px;
    line-height: 1.65;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .footer-phone-area {
    display: block;
    margin-top: 1px;
  }

  .footer-phone-main {
    justify-content: center;
    gap: 10px;
  }

  .footer-phone-icon {
    width: 92px;
    height: 58px;
    flex-basis: 50px;
  }

  .footer-phone-icon img {
    max-width: 45px;
    max-height: 26px;
  }

  .footer-phone-number {
    font-size: clamp(22px, 11vw, 35px);
    line-height: 1;
    letter-spacing: 0;
  }

  .footer-hours {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.65;
    font-weight: 500;
    white-space: normal;
  }

  .footer-hours span {
    display: inline;
    font-size: 10px;
    font-weight: 400;
  }

  .footer-brand {
    margin-top: 28px;
  }

  .footer-brand img {
    width: min(100%, 520px);
  }
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px) {
  .header-inner,
  .global-nav {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo-main {
    font-size: 16px;
    letter-spacing: 0.14em;
  }

  .global-nav li {
    padding: 0 12px;
  }

  .global-nav a {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
.sebun-sp{
   position: relative;
   display:block;
   margin-bottom: -10px;
}
.sebun6-sp{
    top:30%;
    left:50%;
    transform: translate(-50%, -50%);
   position: absolute;
   width:80%;
}
.sebun{
   display:none;
}
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: flex !important;
  }

  .site-header {
    border-bottom: none;
  }

  .header-inner {
    display: none;
  }

  .sp-drawer-inner {
    padding: 96px 24px 32px;
  }

  .sp-drawer-nav a {
    font-size: 16px;
    gap: 18px;
  }

  .sp-drawer-nav a::before {
    width: 30px;
    flex-basis: 30px;
  }
.sp-header {
  position: relative;
  width: 100%;
  z-index: 1005;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sp-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1005;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
}

.site-header.sp-header-fixed {
  padding-bottom: 74px;
}
.roon2{
 margin:50px 15px 50px 15px;
 max-width: 100%;
}
}