@charset "UTF-8";

/* =================================================== */
/*以下htmlの共通CSSです
・nomal-plan.html
・plan.html
・flower.html
・service.html*/
/* =================================================== */



/**----共通　--------------------**/
:root {
    --main-text-color: #2d2d2d;
    --base-color: rgba(78, 97, 87, 0.8);
    --contact-color: #ff8b68;
    --contact-color-ch: #dfc44e;
}

@media(max-width:767px) {
    body::before {
        background-size: cover;
        background-position: center;
    }

}

.small{
  font-size: 12px;
}


/**----共通終了　-----------------------------------------**/



/* ======================== 以下plan.htmlページCSS =========================== */
/*----プランバナー-----------------------------------------*/
.plan-list {
  padding: 40px 20px;
}

.grid-detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}


.plan-card {
  display: flex;
  align-items: center;
  border: 2px solid #726658;
  background: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.plan-card:hover {
  background: #fcfcfc;
  opacity: .5;
}

.plan-img {
  width: 20%;
}

.plan-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-text {
  width: 80%;
  text-align: center;
}

.plan-text h3 {
  font-size: 24px;
  margin-bottom: 4px;
  font-weight: 600;
}

.plan-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #555;
}

.icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  transform: translateY(1px);
}

.plan-banner {
  grid-column: 1 / -1;
  display: block;
}

.plan-banner img {
  width: 100%;
  height: auto;
  display: block;
  /* border: 2px solid #7a3b1a; */
  transition: 0.3s;
}

.plan-banner:hover img {
  opacity: 0.85;
}


/*----プラン一覧-----------------------------------------*/
.plan-detail{
  padding: 32px 0;
}

#family-plan,
#day-plan,
#kasou-plan,
#life-plan {
  margin: 48px auto;
  padding: 36px 24px;
  background: #fff;
  border: 2px solid #726658;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(122,59,26,0.12);
}

.plan-block {
  text-align: center;
  margin: 0 auto;
  padding-bottom: 16px;
}
.plan-title{
  color: #726658;
  font-size: 24px;
  font-weight: 600;
}

/* 中央の線 */
.plan-divider {
  position: relative;
  height: 10px;
}

.plan-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px; /* 中央の余白 */
  transform: translate(-50%, -50%);
}

.plan-divider span::before,
.plan-divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px; /* 線の長さ */
  height: 1px;
  background: #333;
  transform: translateY(-50%);
}

.plan-divider span::before {
  right: 100%;
  margin-right: 10px;
}

.plan-divider span::after {
  left: 100%;
  margin-left: 10px;
}

/* アイコン */
.plan-meta {
  font-size: 14px;
  margin-top: 8px;
}
.plan-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #555;
}

.plan-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  transform: translateY(1px);
}

/*----流れ-----------*/
.plan-set{
  max-width: 700px;
  margin: 0 auto;
  background-color: #f4f0ec;
  padding: 20px;
}

.plan-set img,
.plan-set p{
  width: 90%;
  display: block;
  margin: 0 auto;
}

.plan-photo{
  text-align: center;
  padding: 16px 0;
}


/*----価格-----------*/
.plan-price{
  max-width: 700px;
  margin: 0 auto;
}


.price-box {
  width: 100%;
  margin: 0 auto;
}

.price-row {
  display: flex;
  border: 2px solid #ccc;
  margin-bottom: 12px;
  font-weight: 700;
}

/* 左ラベル */
.label {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

/* 右価格 */
.price {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content:center;
  padding: 8px 48px;
  gap: 24px;
}

/* 数字 */
.main {
  font-size: 32px;
}
.price .main {
  letter-spacing: 0.05em;
}

/* 円〜 */
.yen span{
  font-size: 12px;
}
.yen {
  font-size: 20px;
  line-height: 1em;
}

/* 税込 */
.tax {
  margin-left: auto;
  font-size: 18px;
}

/* 色分け */
.member .label {
  background: #5a79a5; /* 青 */
}

.normal .label {
  background: #9e9e9e; /* グレー */
}



/*------以下レスポンシブ--------------------------------------------------------------*/
/* ===============================
   ▼ 1024px以下（タブレット）
================================ */
@media screen and (max-width: 1024px) {
.plan-text h4{
  font-size: 18px;
  padding-bottom:0px;
}
/* アイコン */
.plan-meta {
  font-size: 14px;
  margin-top: 0px;
}

/*一般葬・一般葬コース*/
  .plan-card {
    flex-direction: row;
  }

  .plan-text h3 {
    font-size: 20px;
  }

  .plan-set{
  max-width: 700px;
  }

  .price {
    padding: 8px 48px;
    gap: 16px;
  }
  .plan-divider span {
    width: 300px;
  }

  .tax {
    font-size: 14px;
  }


  /* ===== プラン詳細 ===== */
  .plan-set {
    padding: 16px 16px;
  }

}

/* ===============================
   ▼ 767px以下（スマホ）
================================ */
@media screen and (max-width: 767px) {
  /* ===== 共通 ===== */
.small{
  font-size: 10px;
}


/* ===== プラン一覧 ===== */
#family-plan,
#day-plan,
#kasou-plan,
#life-plan {
  margin: 24px auto;
  padding: 36px 24px;
  background: #fff;
  border: 2px solid #726658;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(122,59,26,0.12);
}
  .grid-detail {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plan-card {
    flex-direction: row;
  }

  .plan-img {
    width: 30%;
  }

  .plan-text {
    width: 70%;
  }

  .plan-text h3 {
    font-size: 18px;
  }

  .plan-meta {
    font-size: 14px;
  }

  .plan-text h4{
  font-size: 16px;
  padding-bottom:0px;
}

/*----流れ-----------*/

.plan-photo{
  text-align: center;
  padding: 10px 0;
}
  /* ===== プラン詳細 ===== */
  .plan-set {
    max-width: 100%;
    padding: 10px 16px;
  }

  .plan-set img,
  .plan-set p {
    width: 100%;
  }

  /* ===== 価格 ===== */
  .plan-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #555;
}
  .price-row {
    flex-direction: column;
    margin-bottom: 8px;
  }

  .label {
    width: 100%;
    padding: 8px 0;
    font-size: 16px;
  }

  .price {
    padding: 12px;
    gap: 12px;
  }

  .main {
    font-size: 24px;
  }

  .yen {
    font-size: 16px;
  }

  .tax {
    margin-left: 0;
    font-size: 14px;
  }

  /* ===== 中央線 ===== */
  .plan-divider span {
    width: 200px;
  }

  .plan-divider span::before,
  .plan-divider span::after {
    width: 32px;
  }

  /* ===== 下層FV ===== */
  .sub-mv-title {
    font-size: 24px;
    text-align: center;
  }

}



/* ======================== 以下nomal-plan.htmlページCSS =========================== */
.center{
  text-align: center;
}
.top-text-color{
  color: #7f3f80;
  text-align: center;
  font-weight: 600;
  padding-bottom: 16px;
}

/*----------------- 一般葬の主な特徴 -----------------*/
#nomal-plan-detail {
  position: relative;
  background-image: url("../image/nomal-plan/nomal-plan-back.webp");
  background-size: cover;       /* 全体に広げる */
  background-position: center;  /* 中央配置 */
  background-repeat: no-repeat; /* 繰り返しなし */
  padding: 60px 0px 180px 0px;           /* 上下余白（必要に応じて調整） */
  margin-top: 0px;
  margin-bottom: 0px;
  z-index: 1;
}

.feature__inner {
  padding: 0 0 32px;
  display: flex;
  gap: 40px;
}
/* 左画像 */
.feature__image {
  width: 50%;
}

.feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右テキスト */
.feature__content {
  width: 50%;
}

.feature__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* 各ブロック */
.feature__item {
  margin-bottom: 24px;
}

/* 紫ラベル */
.feature__label {
  display: inline-block;
  background: #8e5a7a;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 8px;
}

/* 本文 */
.feature__item p {
  line-height: 1.8;
  font-size: 15px;
  color: #333;
}

/*----------------- 一般葬はこのような方に選ばれてます -----------------*/
.feature__text__main{
  color: #8e5a7a;
  font-size: 24px;
  font-weight: 500;
  padding-bottom: 6px;
}
.feature__text__sub{
  font-size: 16px;
  padding-bottom: 12px;
}

/*----------------- CTA -----------------*/
.cta-btn {
  display: flex;
  align-items: center;
  width: 100%;
  align-items: stretch; /* ←これ重要 */
  margin: 24px auto;
  max-width: 600px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 10;
}

/* 左 */
.cta-left {
  flex: 1;
  border: solid 2px #726658;
}

.cta-left-inner {
  display: flex;
  align-items: center;
  justify-content:center;
  gap: 8px;
}

.cta-text {
  display: flex;
  flex-direction: column;
}

.cta-big {
  font-size: 24px;
  font-weight: bold;
  color: #8e5a7a;
}

.cta-small {
  font-size: 10px;
  color: #8e5a7a;
}

/* 電話番号（アイコンなし） */
.cta-tel {
  font-size: 30px;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 8px;
}

/* 中央 */
.cta-middle {
  background: #726658;
  color: #fff;
  padding: 8px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

/* 右 */
.cta-right {
  background: #8e5a7a;
  color: #fff;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}


/*----------------- 横3列画像 -----------------*/
.photo-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 常に3列 */
  gap: 24px;
  max-width: 80%;
  margin: 0 auto;
}

.photo-list img {
  width: 100%;
  height: auto;
  display: block;
}

/*----------------- 一般葬・一般葬コース プラン -----------------*/

#nomal-plan{
  background-image: url("../image/nomal-plan/nomal-plan-back2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 240px;
  position: relative;
  z-index: 2;
  margin-top: -180px; /* ←被せる量（調整ポイント） */
  margin-bottom: 0px;
}

/* 背景だけ動かす */
#nomal-plan::before {
  content: "";
  position: absolute;
  top: -180px; /* ←背景だけさらに上げる */
  left: 0;
  width: 100%;
  height: calc(100% + 180px);
  pointer-events: none;
  background-image: url("../image/nomal-plan/nomal-plan-back2.webp");
  background-size: cover;
  background-position: center;

  z-index: -1;
}

/* 念のため中身を固定 */
#nomal-plan .inner {
  position: relative;
}

#nomal-plan {
  text-align: center;
}

.nomal-plan-title{
  text-align: center;
  color: #726658;
  padding: 24px 0 16px;
}

/*-------------------------------
施行例
--------------------------------*/
.plan-main{
    padding-top: 40px;
    padding-bottom: 100px;
}

/* 共通 */
.photo_item img{
    width:100%;
    aspect-ratio:3 / 2;
    object-fit:cover;
    display:block;
}

.photo_item p{
    margin-top:6px;
    font-size:14px;
    text-align:center;
}

/* 3列 */
.photo_three{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-bottom:40px;
}

/* 4列 */
.photo_four{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}


/* レスポンシブ ---------------------------------------------------------*/
@media (max-width: 1024px) {
  /*----------------- 一般葬・一般葬コース プラン -----------------*/

#nomal-plan{
  background-image: url("../image/nomal-plan/nomal-plan-back2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 160px;
  position: relative;
  z-index: 2;
  margin-top: -160px; /* ←被せる量（調整ポイント） */
  margin-bottom: 0px;
}

/* 4列 */
.photo_four{
    gap:16px;
}

.plan-main{
    padding-bottom: 88px;
}

}



@media (max-width: 767px) {
  .feature__inner {
    padding: 0 0 8px;
    flex-direction: column;
    gap: 16px;
  }

  .feature__image,
  .feature__content {
    width: 100%;
  }
/*----------------- 一般葬はこのような方に選ばれてます -----------------*/
.feature__text__main{
  color: #8e5a7a;
  font-size: 18px;
  font-weight: 500;
}

/*----------------- 一般葬の主な特徴 -----------------*/
#nomal-plan-detail {
  padding: 0px 0px 180px 0px;
}

/*----------------- CTA -----------------*/
  .cta-btn {
    max-width: 500px;
    margin: 16px auto;
    position: relative;
    z-index: 10;
  }

  .cta-big {
    font-size: 18px;
  }

  .cta-small {
    font-size: 9px;
  }

  .cta-tel {
    font-size: 20px;
  }

  .cta-middle {
    font-size: 12px;
    padding: 6px 6px;
  }

  .cta-right {
    font-size: 12px;
    padding: 13px 6px;
  }


/*----------------- 一般葬・一般葬コース プラン -----------------*/

#nomal-plan{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 250px;
  position: relative;
  z-index: 2;
  margin-top: -280px; /* ←被せる量（調整ポイント） */
  margin-bottom: 0px;
}

/* 背景だけ動かす */
#nomal-plan::before {
  content: "";
  position: absolute;
  top: -280px; /* ←背景だけさらに上げる */
  left: 0;
  width: 100%;
  height: calc(100% + 280px);
  background-size: cover;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}

/* 念のため中身を固定 */
#nomal-plan .inner {
  position: relative;
}

.nomal-plan-title{
  text-align: center;
  color: #8a7b6b;
  padding: 16px 0 16px;
}

/*-------------------------------
施行例
--------------------------------*/
.photo_item p{
    margin-top:6px;
    font-size:12px;
    text-align:center;
}

/* 3列 */
.photo_three{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:32px;
}

/* 4列 */
.photo_four{
    display:grid;
    grid-template-columns:repeat(2,1fr);
}
.plan-main{
    padding-bottom: 48px;
}

}

/* ===== スマホ ===== */
@media screen and (max-width: 600px) {
  /*----------------- 一般葬・一般葬コース プラン -----------------*/

#nomal-plan{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 224px;
  position: relative;
  z-index: 2;
  margin-top: -250px; /* ←被せる量（調整ポイント） */
  margin-bottom: 0px;
}

/* 背景だけ動かす */
#nomal-plan::before {
  content: "";
  position: absolute;
  top: -250px; /* ←背景だけさらに上げる */
  left: 0;
  width: 100%;
  height: calc(100% + 250px);
  background-size: cover;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}

.photo-list {
  display: grid;
  gap: 16px;
  max-width: 100%;
  margin: 0 auto;
}
}



/* ===== スマホ ===== */
@media screen and (max-width: 480px) {
/*----------------- CTA -----------------*/
.cta-btn {
    align-items: stretch; /* 念のため再指定 */
  }

  .cta-left,
  .cta-middle,
  .cta-right {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-left-inner {
    width: 100%;
    justify-content: center;
    gap: 0px;
  }

  .cta-btn {
    max-width: 100%;
    position: relative;
    z-index: 10;
  }

  .cta-big {
    font-size: 12px;
  }

  .cta-small {
    font-size: 6px;
  }

  .cta-tel {
    font-size: 14px;
    padding: 0 0;
  }

  .cta-middle {
    font-size: 10px;
    padding: 4px 0px;
  }

  .cta-right {
    font-size: 10px;
    padding: 10px 0px;
  }


/*----------------- 一般葬・一般葬コース プラン -----------------*/

#nomal-plan{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 168px;
  position: relative;
  z-index: 2;
  margin-top: -220px; /* ←被せる量（調整ポイント） */
  margin-bottom: 0px;
}

/* 背景だけ動かす */
#nomal-plan::before {
  content: "";
  position: absolute;
  top: -220px; /* ←背景だけさらに上げる */
  left: 0;
  width: 100%;
  height: calc(100% + 220px);
  background-size: cover;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}

.photo-list {
  display: grid;
  gap: 16px;
  max-width: 100%;
  margin: 0 auto;
}

/*-------------------------------
施行例
--------------------------------*/
.plan-main{
    padding-top: 24px;
    padding-bottom: 48px;
}
}




/* ============================================================================== */
/* ======================== 以下flowers.htmlページCSS =========================== */
/* ============================================================================== */
#flower p{
  text-align: center;
}

.flower-flex{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 20px; /* 縦 横 */
  margin: 0 auto;
  align-items:flex-end;
}

.flower-detail{
  width: 300px;
  text-align: center;
}

/*御供花・供物のご注文はこちら<ボタン*/
.flower-fax{
  padding: 32px 0;
}
.pdf-btn {
  display: flex;
  align-items: center;
  justify-content:center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
  padding: 16px 20px;
  background: #f7f5f2;
  border: 1px solid #d8d2c8;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.pdf-btn img {
  width: 100px;
}

.pdf-btn strong {
  display: block;
  font-size: 18px;
}

.pdf-btn .flower-fax-detail {
  font-size: 12px;
  color: #777;
}

.pdf-btn:hover {
  background: #ece8e0;
}

.flower-fax-text{
  padding-left: 16px;
}

/*---------特定商取引法に基づく表示------------------------------------*/
.company_tokushoho {
  padding: 64px 0px 52px;
  background-color: rgb(63, 106, 156,0.1);
}

.company_tokushoho_title {
  color: #3f6a9c;
  margin-bottom: 12px;
  line-height: 1.4;
}

.company_tokushoho_block {
  margin-bottom: 16px;
}

.company_tokushoho_subtitle {
  font-size: 18px;
  color: #3f6a9c;
  margin-bottom: 6px;
}

.company_tokushoho_text {
  margin: 0;
  margin-bottom: 12px;
}


@media (max-width: 1024px) {
  /*---------特定商取引法に基づく表示------------------------------------*/
.company_tokushoho_block {
    margin-bottom: 16px;
  }
}


@media (max-width: 767px) {

.flower-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items:end;
  }

  .flower-detail {
    width: 100%;
  }

/*御供花・供物のご注文はこちら<ボタン*/
.flower-fax{
  padding: 24px 0;
}
.pdf-btn {
  display: flex;
  align-items: center;
  justify-content:center;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
  padding: 16px 16px;
  background: #f7f5f2;
  border: 1px solid #d8d2c8;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

  .pdf-btn strong {
  display: block;
  font-size: 16px;
}

/*---------特定商取引法に基づく表示------------------------------------*/
.company_tokushoho {
    padding: 32px 0px 20px;
  }

  .company_tokushoho_title {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .company_tokushoho_subtitle {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .company_tokushoho_text {
    font-size: 14px;
    line-height: 1.9;
  }

  .company_tokushoho_block {
    margin-bottom: 20px;
  }
}


/* =========================
  480px以下（スマホ）
========================= */
@media (max-width: 480px) {
  /*御供花・供物のご注文はこちら<ボタン*/
.flower-fax{
  padding: 24px 0;
}
.pdf-btn {
  display: flex;
  align-items: center;
  justify-content:center;
  gap:0px;
  max-width: 700px;
  margin: 0 auto;
  padding: 16px 10px;
  background: #f7f5f2;
  border: 1px solid #d8d2c8;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

  .pdf-btn strong {
  display: block;
  font-size: 14px;
}

.flower-fax-text{
  padding-left: 10px;
}

.pdf-btn img {
  width: 85px;
}


}






/* ============================================================================== */
/* ======================== 以下service.htmlページCSS =========================== */
/* ============================================================================== */
/*-------------　ページ内ボタン　-------------*/
.hall-all-menu.service-all-btn{
  background: #fff;
  gap: 100px;
  padding: 0px;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hall-all-item.service-btn{
  width: 300px;
  padding: 10px 16px;
}

/*-------------　お通夜料理〈お寿司・オードブル〉のご案内　-------------*/
#sushi h4,#gozen h4{
  text-align: center;
}

.flower-flex.service-flex{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items:center;
  }

/*-------------　仏壇のご案内　-------------*/
.service-butsudan-image{
  display: flex;
  padding-top: 30px;
  overflow:hidden;
  gap: 24px;
}

.service-butsudan-image img{
  aspect-ratio:4 / 3;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}


/* レスポンシブ ---------------------------------------------------------*/
@media(max-width:1024px){
/*-------------　ページ内ボタン　-------------*/
.hall-all-menu.service-all-btn{
  background: #fff;
  gap: 100px;
  padding: 0px;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hall-all-item.service-btn{
  width: 220px;
  padding: 10px 0px 10px 10px;
}

}

@media(max-width:767px){
/*-------------　ページ内ボタン　-------------*/
.hall-all-menu.service-all-btn{
  background: #fff;
  gap: 40px;
  padding: 0px;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hall-all-item.service-btn{
  width: 180px;
  padding: 10px 0px 10px 10px;
  font-size: 12px;
}
.hall-all-icon.service-icon {
    font-size: 8px;
    margin-right: 4px;
  }

}



/* =========================
   480px以下（スマホ）
========================= */
@media (max-width: 480px) {
/*-------------　ページ内ボタン　-------------*/
.hall-all-menu.service-all-btn{
  background: #fff;
  gap: 10px;
  padding: 0px;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hall-all-item.service-btn{
  width: 150px;
  padding: 10px 0px 10px 8px;
  font-size: 12px;
}
.hall-all-icon.service-icon {
    font-size: 8px;
    margin-right: 4px;
  }



}


/* 追尾CTAをindex.html・hall-all.htmlと統一 */
.cta-header .cta-text {
  display: block;
  font-size: 10px;
  flex-direction: initial;
}

.cta-header .cta-tel {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  white-space: normal;
}

@media (max-width: 1024px) {
  .cta-header .cta-tell-btn {
    padding: 12px 68px;
  }
}

@media (max-width: 767px) {
  .cta-header .cta-text {
    display: none;
  }

  .cta-header .cta-tel {
    font-size: 18px;
    gap: 4px;
    padding: 0;
  }

  .cta-header .cta-tell-btn {
    font-size: 14px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .cta-header .cta-tel {
    font-size: 14px;
    gap: 0;
    padding: 0;
  }

  .cta-header .cta-tell-btn {
    font-size: 14px;
    padding: 10px 6px;
    gap: 3px;
  }
}