/* ------------------------------
   Reset
------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック体", sans-serif;
  color: #595757;
  line-height: 1.6;
  font-size: 15px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
    width: 80%;
    max-width: 1440px;
    margin: 0 auto;
}
.tel-box .tel {
  font-weight: 700;
}
.mail-box .btn-mail {
  font-weight: 500;
}

/* ------------------------------
   Scroll Lock
------------------------------ */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* ------------------------------
   Header
------------------------------ */
.site-header {
  background: #F7F4EA;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}
.header-inner {
  max-width: 1920px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 111px;
}
.logo a {
  transition: 0.3s;
}
.logo a:hover {
  opacity: 0.6;
}
.logo-area {
  display: flex;
  align-items: center;
}
.logo-area a {
  transition: 0.3s;
}
.logo-area a:hover {
  opacity: 0.6;
}

/* ------------------------------
   Navigation Layout
------------------------------ */
.site-nav {
  align-items: center;
  position: relative;
  padding-right: 50px;
}
.site-subcopy {
  font-size: 0.75rem;
  color: #595757;
  text-align: right;
  margin-bottom: 10px;
}
.nav-inner {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links.open {
  right: 0;
}

.nav-links a {
  color: #595757;
  font-weight: 500;
  font-size: .9rem;
  transition: color 0.3s;
  font-weight: 800;
}

.nav-links a:hover {
  color: #EB9C8D;
}

.nav-links li::after {
  content: "/";
  margin-left: 20px; /* リンクとの間に余白 */
  color: #595757;    /* 色はナビと同じ感じに */
}

.nav-links li:last-child::after {
  content: ""; /* 最後の項目だけスラッシュ非表示 */
  margin: 0;
}

/* ------------------------------
   Tel & Mail
------------------------------ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.tel-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.tel-box a {
  transition: 0.3s;
}
.tel-box a:hover {
  color: #EB9C8D;
}
.tel-box .icon {
  width: 20px;
  height: 20px;
}
.tel-box .tel {
  color: #8AC65A;
  font-weight: bold;
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tel-box .time {
  font-size: 0.8rem;
  color: #595757;
}
.mail-box .btn-mail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EB9C8D;
  color: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  transition: 0.3s;
}
.mail-box .btn-mail:hover {
  color: #fff;
  background-color: #8AC65A;
}
.mail-box .icon {
  width: 18px;
  height: 18px;
}
.time-bold {
  font-weight: 800;
}
.time-come {
  font-size: 0.75rem;
}

/* ------------------------------
   Hamburger
------------------------------ */
.hamburger {
  display: none; /* PCでは非表示 */
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2000; /* 最前面に配置 */
  position: relative; /* z-indexを効かせるため */
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #595757;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* active状態のアニメーション */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ------------------------------
   Overlay
------------------------------ */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 900;
}

.nav-overlay.show {
  display: block;
}

/* ------------------------------
   Nav Menu (for SP)
------------------------------ */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact {
  display: none;
}

/* ------------------------------
   Hero
------------------------------ */
/* Hero Slider */
.hero {
  position: relative;
  height: 80vh; /* 画面の8割 */
  min-height: 500px; /* 小さい画面でも潰れないように */
  max-height: 775px; /* 大きすぎないように */
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
.hero-slide.active {
  opacity: 1;
}

.hero-slide:nth-child(1) img {
  object-position: center center; /* 1枚目 → 中央 */
}

.hero-slide:nth-child(2) img {
  object-position: right center;  /* 2枚目 → 右 */
}


/* Hero inner (テキスト) */
.hero-inner {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: flex-start; 
  padding-left: 20%;
}

.hero-content {
  background: rgba(255, 255, 255, 0.8);
    padding: 40px 50px;
  text-align: center;
  display: inline-block;
}

.hero-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 30px;
  color: #333;
  margin-bottom: 20px;
}

.hero-logo {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 300px;
}

.hero-illust {
    display: block;
    margin: 0 auto 20px auto;
    width: 42px;
}

.hero-content .btn {
  display: inline-block;
  padding: 14px 28px;
  background: #004393;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
  transition: background 0.3s;
}

.hero-content .btn:hover {
  background: #003270;
}

.hero-inner h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.hero-inner p {
  font-size: 1.4rem;
}
.hero-inner .btn {
  display: inline-block;
  padding: 14px 28px;
  background: #A8D370;
  color: #595757;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: background 0.3s;
  box-shadow: 0 5px 10px #989D92;
}

.hero-inner .btn:hover {
  background: #EB9C8D;
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.hero-dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: #A5A5A5;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #A5A5A5;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.hero-dots .dot.active {
  background: #A8D370;
}

.hero-dots button.active {
  background: #A8D370;
}

/* ------------------------------
   Service
------------------------------ */

.title-image-logo {
    width: 52px;
    height: auto;
    margin-bottom: 20px;
}

.service {
    background: #F7F4EA;
    padding: 120px 0 60px 0;
    text-align: center;
    font-weight: 800;
}

/* タイトル */
.service-en .first-letter {
  color: #A8D370; /* 頭文字だけグリーン */
}

.service-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.service-heading .title-deco {
  height: 15px;
  width: auto;
}
.service-heading .title-center {
  text-align: center;
}

.service-heading .service-en,
.attention-en {
  display: block;
  color: #EB9C8D;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-weight: 800;
}

.first-letter {
  color: #A8D370;
}
.first-letter-p {
  color: #EB9C8D;
}

.service-heading h2 {
  font-size: 1.5rem;
}

/* メインコンテンツ */
.service-content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.service-images {
  flex: 1;
}
.service-images img {
  width: 100%;
}
.service-text {
  flex: 1;
  text-align: left;
}
.service-text h3 {
  color: #8AC65A;
  font-size: 1.4rem;
  margin-bottom: 60px;
}
.service-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.service-highlight {
    display: inline-block;
    background: #A8D370;
    color: #595757;
    padding: 10px 20px;
    border-radius: 30px;
    margin-top: 20px;
    font-weight: bold;
   box-shadow: 0 5px 10px #989D92;
   transition: .3s;
}

.service-highlight:hover {
    background: #EB9C8D;
}

/* 下段 */
.service-bottom h4 {
  color: #8AC65A;
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.service-bottom p {
  margin-bottom: 30px;
  color: #333;
}
.service-qualification img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.t-c-g {
    color: #8AC65A;
}

.service-text.service-text-left {
    padding-left: 90px;
}

/* ------------------------------
   Menu & Price
------------------------------ */
.menu-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.menu-tab {
    flex: 1;
    padding: 20px;
    font-size: 1.5rem;
    color: #B7B7B7;
    background: #f2f2f2;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.menu-tab.active {
    color: #595757;
    background: #fff;
    font-weight: bold;
    border-left: 3px solid #A8D370;
    border-top: 3px solid #A8D370;
    border-right: 3px solid #A8D370;
}

.menu-card img {
    height: 60px;
    margin: 0 auto 20px auto;
}

.mein-p {
    font-size: 1.8rem;
}

section#menu-price {
    padding: 120px 0;
}

.menu-content {
  display: none;
}
.menu-content.active {
  display: block;
}

.menu-cards {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}
.menu-card {
  flex: 1;
  background: #F7F4EA;
  padding: 30px 20px;
  text-align: center;
  margin-bottom: 30px;
}
.menu-card h3 {
    margin: 15px 0;
    font-size: 1.2rem;
    padding: 10px 10px;
    background: #FFF;
}
.menu-card .price {
  color: #EB9C8D;
  font-size: 1rem;
  font-weight: bold;
}
.menu-card .time {
    margin: 10px 0;
    font-size: 1.2rem;
}
.menu-card .note {
  font-size: 0.8rem;
  color: #555;
}

/* Accordion */
.accordion {
    padding-bottom: 40px;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    background: #F2F2F2;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 800;
    color: #595757;
}
.accordion-header .bar {
  width: 3px;
  height: 100%;
  background: #A8D370;
  margin-right: 20px;
}

.accordion-header .toggle {
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: auto;
  margin-right: 40px;
}

/* 横棒（常に表示） */
.accordion-header .toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 3px;
  background: #C2C2C2;
  transform: translateY(-50%);
  transition: background 0.3s;
}

/* 縦棒（閉じてるときだけ表示） */
.accordion-header .toggle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 20px;
  background: #C2C2C2;
  transform: translateX(-50%) rotate(0deg);
  transition: transform 0.3s, opacity 0.3s;
}

/* 開いたら縦棒を回転させながら消す → − になる */
.accordion-item.open .toggle::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.accordion-body {
  display: none;
  padding: 20px;
  background: #fff;
}
.accordion-item.open .accordion-body {
  display: block;
}

.accordion-body dl {
  margin: 0;
  padding: 0;
}

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-row dt {
  font-weight: 600;
  color: #333;
}

.menu-row dd {
  font-weight: bold;
  color: #595757;
  margin: 0;
  white-space: nowrap;
}

.accordion-body p {
    margin: 0px auto;
    font-size: 0.95rem;
    color: #333;
}

/* Accordion list layout */
.menu-list{
  list-style:none;
  margin:0;
  padding:0;
}
.menu-line{
  display:flex;
  align-items:flex-start;
  gap:40px;
  padding:30px 0;
  border-bottom:2px solid #A8D370;
  flex-wrap: wrap;
}
.menu-left{
    width:400px;
    font-weight:600;
    margin: auto 0 auto 30px;
    word-break: break-word;
}
.menu-right{
  flex:1;
  min-width:0;
}
.menu-price{
  font-weight:800;
  color:#595757;
  white-space:nowrap;
}
.menu-desc{
    margin:0;
    line-height:2;
    color:#595757;
    font-weight: normal;
    word-break: break-word;
}

/* レスポンシブ：スマホは縦並びに */
@media (max-width:768px){
  .menu-line{
    display:block;
    padding:20px 0;
  }
  .menu-left{
    width:auto;
    margin-bottom:8px;
  }
  .menu-price{
    margin-bottom:4px;
  }
}

/* ------------------------------
   Attention Section
------------------------------ */
.attention {
  position: relative;
  background: #F7F4EA;
  padding: 80px 0 0 0;
  text-align: left;
  overflow: visible;
}

.attention-heading {
  text-align: center;
  margin-bottom: 40px;
}

.attention-en {
  display: block;
  color: #EB9C8D;
  font-size: 0.9rem;
  letter-spacing: 3px;
  margin-bottom: 5px;
  font-weight: 800;
}

.attention-heading h2 {
  font-size: 1.8rem;
  color: #595757;
}

.attention-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #595757;
}

.attention-text h3 {
  margin-top: 30px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #8AC65A;
}

/* 花のイラスト配置 */
.attention-illust {
  position: absolute;
  z-index: 2;
}
.illust-top-right {
    top: -90px;
    right: 140px;
    width: 160px;
}

.illust-bottom-left {
    top: 540px;
    left: 220px;
    width: 160px;
    z-index: 3;
}

/* スライドショー */
.attention-slider {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}
.attention-slider .slider-track {
  display: flex;
  animation: slide-left 40s linear infinite;
}
.attention-slider img {
  width: 384px;
  height: 350px;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes slide-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .attention-text {
    font-size: 0.85rem;
    padding: 0 20px;
  }
  .illust-top-right,
  .illust-bottom-left {
    width: 80px;
  }
}

/* ------------------------------
   Flow Section
------------------------------ */
.flow {
  background: #fff;
  padding: 100px 0;
}

.flow-box {
  border: 3px solid #A8D370;
  border-radius: 5px;
  padding: 30px;
  margin-bottom: 30px;
}

.flow-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #707070;
}

.flow-number {
  width: 50px;
  height: 50px;
  background: #A8D370;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.flow-header h3 {
  font-weight: 800;
  font-size: 1.2rem;
  color: #595757;
}

.flow-body p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
}

.flow-body ol {
  padding-left: 0;
  margin: 10px 0;
  color: #595757;
  list-style: none;
}
.flow-body li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.flow-arrow {
  width: 0;
  height: 0;
  margin: 30px auto; /* 中央寄せ */
  border-left: 22.5px solid transparent; /* 左半分 */
  border-right: 22.5px solid transparent; /* 右半分 */
  border-top: 20px solid #A8D370; /* 下向き三角の本体 */
}

.flow-body strong {
    color: #EB9C8D;
}

/* ------------------------------
   Contact Section
------------------------------ */
.contact {
  background: url("../img/contact-back.jpg") no-repeat center/cover;
  padding: 80px 20px;
  color: #595757;
  text-align: center;
  position: relative;
}

.contact-heading-box {
  background: #A8D370;
  width: 252px;
  height: 208px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-en {
  display: block;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-weight: 800;
}

.contact-heading-box h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.contact-info a {
  display: inline-block;
  background: #fff;
  width: 500px;
  height: 100px;
  line-height: 100px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #595757;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info a:hover {
  background: #A8D370;
  color: #fff;
}

.contact-time {
  font-weight: bold;
  color: #A8D370;
  margin-bottom: 20px;
  font-size: 30px;
}

.contact-time span {
  font-size: 20px;
  color: #A8D370;
}

.contact-desc {
  max-width: 900px;
      margin: 0 auto 80px auto;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #FFF;
  text-align: left;
}

a.contact-tel {
    color: #A8D370;
    font-size: 2rem;
}

a.contact-mail {
    color: #EB9C8D;
}

.contact-heading {
  position: relative;
      top: -123px;
  margin-bottom: -40px; /* 下の余白を調整 */
}

/* アイコン付きボタン */
.contact-info a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  width: 500px;
  height: 100px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #595757;
  text-decoration: none;
  transition: 0.3s;
}

.contact-info a:hover {
  background: #A8D370;
  color: #fff;
}

.contact-icon {
  display: inline-block;
  width: 26px;
  height: auto;
}
.contact-mail .contact-icon {
  width: 25px;
}

/* プライバシーポリシー */
.privacy-box {
  background: #fff;
  padding: 0 70px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: left;
  height: 310px;
  overflow-y: auto;
}

.privacy-box h3 {
  color: #8AC65A;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
  padding: 40px 0 30px 0;
}

.privacy-text p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

/* 花イラスト */
.contact-illust {
  position: absolute;
    bottom: -58px;
    left: 50%;
  transform: translateX(-50%);
  width: 96px;
  z-index: 10; /* フッターより上に表示 */
}

/* ------------------------------
   Footer
------------------------------ */
.footer {
  background: #A8D370;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 30px;
  flex-wrap: wrap;
}

.footer-left {
  text-align: left;
    padding-right: 60px;
}

.footer-logo {
  width: 319px;
  height: auto;
  margin-bottom: 10px;
}

.footer-hours {
  font-size: 0.9rem;
  margin: 0;
  color: #595757;
}

.footer-right {
  text-align: left;
  font-size: 0.9rem;
  color: #595757;
}

.footer-right p {
  margin: 5px 0;
}

.time-footer {
    font-weight: 800;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0 60px 0;
  padding: 0;
  list-style: none;
}

.footer-nav li::after {
  content: "/";
  margin-left: 20px;
  color: #595757;
}

.footer-nav li:last-child::after {
  content: "";
  margin: 0;
}

.footer-nav a {
  color: #595757;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-copy {
    text-align: center;
    font-size: 0.8rem;
    margin: 20px;
}

.footer-r-c {
    color: #FFF;
}

.to-top {
  position: fixed;       /* ずっとfixed。切り替えない */
  z-index: 4000;         /* 何が来ても上に出す */
  width: 80px;
  height: 80px;
  right: 40px;           /* 初期：画面右下 */
  top: calc(100vh - 40px - 80px); /* = bottom:40px と同等（topのみで制御） */
  background: #EB9C8D;   /* ボタン色 */
  border: 2px solid #FFFFFF;    /* 線2px #FFFFFF */
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease; /* 位置にtransitionは付けない=落下防止 */
}
.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* ▲（w20 h11） */
.to-top .arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 11px solid #FFFFFF; /* 白い▲ */
  margin-bottom: 6px;
}
.to-top .label {
  font-size: 14px;
  line-height: 1;
  letter-spacing: .5px;
}

/* 追加：モバイルで少し内側に寄せる */
@media (max-width: 768px) {
  .to-top {
    right: 20px;
    top: calc(100vh - 20px - 80px);
  }
}

/* ------------------------------
   1506px以下 (タブレット)
------------------------------ */
@media (max-width: 1430px) {

    .logo img {
        height: 80px;
    }

    .header-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        margin-top: 0px;
        width: 100%;
    }

    .header-contact .tel-box {
        flex-direction: row;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .header-contact .tel {
        font-size: 1.5rem;
        font-weight: bold;
        color: #8AC65A;
        justify-content: center;
    }

    .header-contact .btn-mail {
        max-width: 300px;
        margin: 0 auto;
    }

    .header-contact .mail-box {
        width: 100%;
        text-align: center;
    }

    .header-contact .time {
        font-size: 0.75rem;
        color: #595757;
    }
  
    .site-subcopy {
        display: none;
    }

    .logo-area {
        justify-content: space-between;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #F7F4EA;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 40px 20px;
        transition: right 0.3s ease-in-out;
        z-index: 1500;
    }
    
    .nav-menu.open {
        right: 0;
    }

    .nav-links {
        gap: 20px;
    }


    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .nav-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        position: static;
    }

    .tel-box {
        gap: 0;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }


    .tel-box .time {
        margin-top: 5px;
        font-size: 0.75rem;
    }
    .mail-box {
        width: 100%;
        text-align: center;
    }

    .mail-box .btn-mail {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .service-items {
        gap: 20px;
    }
    .service-item {
        width: 48%;
    }
}

/* ------------------------------
   768px以下 (スマホ)
------------------------------ */

@media (max-width: 768px) {

    a.contact-mail {
    color: #EB9C8D;
    font-size: 1rem;
}

    .header-contact {
        display: none;
    }

    .nav-links,
    .nav-contact,
    .site-subcopy {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
        margin-right: 0px; 
    }

    .logo-area img {
        max-width: 80%;
        height: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #F7F4EA;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 80px 20px;
        transition: right 0.3s ease-in-out;
        z-index: 1500;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu .nav-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-menu .nav-links a {
        font-size: 1.2rem;
        color: #595757;
    }

    .nav-menu .nav-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
        width: 100%;
    }
    .nav-menu .tel-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .nav-menu .tel-box .tel {
        justify-content: center;
    }

    .nav-menu .time {
        margin-top: 5px;
        font-size: 0.75rem;
    }

    .nav-menu .mail-box {
        width: 100%;
        text-align: center;
    }

    .nav-menu .btn-mail {
        max-width: 280px;
        margin: 0 auto;
    }
    .hero {
        padding: 100px 20px;
    }

      .hero-inner {
        justify-content: center;  /* 中央に */
        padding-left: 0;
    }

    .hero-content {
        width: 100%;
    }

    .hero-text {
        font-size: 22px; /* 少し小さめ */
    }

    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .service {
        padding: 60px 0;
    }
    .service-item {
        width: 100%;
    }
    .flow li {
        flex: 1 1 100%;
    }
    .contact h2 {
        font-size: 1.6rem;
    }
    .contact .tel {
        font-size: 1.5rem;
    }

    .container {
        width: 90%;
    }

    .service-heading .title-deco {
        display: none;
    }

    .service-content {
        display: block;
    }

    .service-text h3 {
        text-align: center;
        font-size: 1.3rem;
    }


    .nav-links li::after {
        display: none;
    }

    .service-highlight {
        margin: 0px;
    }

    .service-qualification img {
        padding-bottom: 30px;
    }

    .site-nav {
        padding-right: 20px;
    }

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 3000;
    }

    body {
        padding-top: 80px; /* ヘッダーの高さに応じて調整（ロゴ高さで変える） */
    }

    .service-text.service-text-left {
        padding-left: 0px;
    }

    .menu-cards {
        display: block;
    }

    .menu-left {
        margin: 0;
    }

    .menu-line{
        display:block;
        padding:20px 0;
    }

    .menu-left{
        width:100%;
        margin:0 0 8px 0;
    }

    .menu-right{
        width:100%;
    }

    .menu-price{
        margin-bottom:4px;
        white-space: normal;
    }

    /* 花のイラスト配置 */
    .attention-illust {
        display: none;
    }

    .attention-slider img {
        width: 150px;
        height: auto;
    }

    .footer-nav {
        display: none;
    }

    .footer-left {
    text-align: center;
    padding-right: 0px;
    }

    .footer-right {
        text-align: center;
    }
}
